-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.xaml.cs
139 lines (117 loc) · 4.29 KB
/
App.xaml.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
using Hardcodet.Wpf.TaskbarNotification;
using SteamChatLogger.WinApi;
using System;
using System.Collections.Generic;
using System.Configuration;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
namespace SteamChatLogger
{
/// <summary>
/// Interaction logic for App.xaml
/// </summary>
public partial class App : Application
{
public Logger Logger { get; } = new Logger();
private TaskbarIcon TrayIcon = null;
public App()
{
AppDomain.CurrentDomain.UnhandledException += this.AddDomain_UnhandledException;
this.Logger.EnabledChanged += this.Logger_EnabledChanged;
this.Logger.ConnectedChanged += this.Logger_ConnectedChanged;
this.Logger.Committed += this.Logger_Committed;
}
protected override void OnStartup(StartupEventArgs e)
{
base.OnStartup(e);
this.TrayIcon = new TaskbarIcon();
this.TrayIcon.TrayMouseDoubleClick += this.TrayIcon_TrayMouseDoubleClick;
ContextMenu contextMenu = new ContextMenu();
MenuItem exitMenuItem = new MenuItem();
contextMenu.Items.Add(exitMenuItem);
exitMenuItem.Header = "E_xit";
exitMenuItem.Click += this.ExitMenuItem_Click;
this.TrayIcon.ContextMenu = contextMenu;
this.UpdateTrayIcon();
this.Logger.Enable();
}
protected override void OnExit(ExitEventArgs e)
{
this.Logger.Disable();
base.OnExit(e);
}
private void AddDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
MessageBox.Show(e.ExceptionObject.ToString(), "Steam Chat Logger");
}
private void Logger_EnabledChanged(bool enabled)
{
this.UpdateTrayIcon();
}
private void Logger_ConnectedChanged(bool connected)
{
this.UpdateTrayIcon();
}
private Stopwatch Stopwatch = new Stopwatch();
private void Logger_Committed()
{
this.Stopwatch.Reset();
this.Stopwatch.Start();
this.UpdateTrayIcon();
Task.Delay(500).ContinueWith(_ => this.UpdateTrayIcon());
}
private void TrayIcon_TrayMouseDoubleClick(object sender, RoutedEventArgs e)
{
string directory = this.Logger.LogDirectories.FirstOrDefault();
if(directory == null) { return; }
Process.Start(directory);
}
private void ExitMenuItem_Click(object sender, RoutedEventArgs e)
{
this.Shutdown();
}
private void UpdateTrayIcon()
{
if (this.TrayIcon == null) { return; }
this.TrayIcon.Dispatcher.Invoke(() =>
{
Bitmap icon = null;
string status = "";
if (!this.Logger.Enabled)
{
status = "Disabled";
icon = SteamChatLogger.Properties.Resources.database_error;
}
else if (!this.Logger.Connected)
{
status = "Disconnected";
icon = SteamChatLogger.Properties.Resources.database_error;
}
else
{
int chatCount = this.Logger.ChatCount;
status = "Active (" + chatCount.ToString() + " chat" + (chatCount == 1 ? "" : "s") + ")";
if (this.Stopwatch.IsRunning &&
this.Stopwatch.ElapsedMilliseconds < 500)
{
icon = SteamChatLogger.Properties.Resources.database_save;
}
else
{
icon = SteamChatLogger.Properties.Resources.database;
}
}
this.TrayIcon.ToolTipText = "Steam Chat Logger\n" + status;
IntPtr hIcon = icon.GetHicon();
this.TrayIcon.Icon = Icon.FromHandle(hIcon);
User.DestroyIcon(hIcon);
});
}
}
}