-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathTrayIcon.cpp
54 lines (43 loc) · 1.12 KB
/
TrayIcon.cpp
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
#include "kbSizer.h"
#include <shlwapi.h>
TrayIcon::TrayIcon() : IsInstalled(false) {
}
TrayIcon::~TrayIcon() {
RemoveIcon();
}
void TrayIcon::Init(HWND hwnd, int uid, HICON hIcon, UINT msg, LPCTSTR tooltip) {
ZeroMemory(&tnd, sizeof(NOTIFYICONDATA));
tnd.cbSize = sizeof(NOTIFYICONDATA);
tnd.hWnd = hwnd;
tnd.uID = uid;
tnd.hIcon = hIcon;
tnd.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP;
tnd.uVersion = NOTIFYICON_VERSION;
tnd.uCallbackMessage = msg;
StrCpy(tnd.szTip, tooltip);
}
void TrayIcon::InstallIcon() {
if(!IsInstalled) {
Shell_NotifyIcon(NIM_ADD, &tnd);
Shell_NotifyIcon(NIM_SETVERSION, &tnd);
IsInstalled = true;
}
}
void TrayIcon::ChangeIcon(HICON hIcon) {
tnd.hIcon = hIcon;
if(IsInstalled) {
Shell_NotifyIcon(NIM_MODIFY, &tnd);
} else {
InstallIcon();
}
}
void TrayIcon::RemoveIcon() {
if(IsInstalled) {
Shell_NotifyIcon(NIM_DELETE, &tnd);
IsInstalled = false;
}
}
void TrayIcon::RefreshIcon() {
RemoveIcon();
InstallIcon();
}