forked from LizardByte/tray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtray_windows.c
277 lines (241 loc) · 7.42 KB
/
tray_windows.c
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
#include <windows.h>
#include <shellapi.h>
#include "tray.h"
#define WM_TRAY_CALLBACK_MESSAGE (WM_USER + 1)
#define WC_TRAY_CLASS_NAME "TRAY"
#define ID_TRAY_FIRST 1000
struct icon_info {
const char *path;
HICON icon;
HICON large_icon;
HICON notification_icon;
};
enum IconType {
REGULAR = 1,
LARGE,
NOTIFICATION
};
static WNDCLASSEX wc;
static NOTIFYICONDATA nid;
static HWND hwnd;
static HMENU hmenu = NULL;
static void (*notification_cb)() = 0;
static UINT wm_taskbarcreated;
static struct icon_info *icon_infos;
static int icon_info_count;
static LRESULT CALLBACK _tray_wnd_proc(HWND hwnd, UINT msg, WPARAM wparam,
LPARAM lparam) {
switch (msg) {
case WM_CLOSE:
DestroyWindow(hwnd);
return 0;
case WM_DESTROY:
PostQuitMessage(0);
return 0;
case WM_TRAY_CALLBACK_MESSAGE:
if (lparam == WM_LBUTTONUP || lparam == WM_RBUTTONUP) {
POINT p;
GetCursorPos(&p);
SetForegroundWindow(hwnd);
WORD cmd = TrackPopupMenu(hmenu, TPM_LEFTALIGN | TPM_RIGHTBUTTON |
TPM_RETURNCMD | TPM_NONOTIFY,
p.x, p.y, 0, hwnd, NULL);
SendMessage(hwnd, WM_COMMAND, cmd, 0);
return 0;
} else if(lparam == NIN_BALLOONUSERCLICK && notification_cb != NULL){
notification_cb();
}
break;
case WM_COMMAND:
if (wparam >= ID_TRAY_FIRST) {
MENUITEMINFO item = {
.cbSize = sizeof(MENUITEMINFO), .fMask = MIIM_ID | MIIM_DATA,
};
if (GetMenuItemInfo(hmenu, wparam, FALSE, &item)) {
struct tray_menu *menu = (struct tray_menu *)item.dwItemData;
if (menu != NULL && menu->cb != NULL) {
menu->cb(menu);
}
}
return 0;
}
break;
}
if (msg == wm_taskbarcreated) {
Shell_NotifyIcon(NIM_ADD, &nid);
return 0;
}
return DefWindowProc(hwnd, msg, wparam, lparam);
}
static HMENU _tray_menu(struct tray_menu *m, UINT *id) {
HMENU hmenu = CreatePopupMenu();
for (; m != NULL && m->text != NULL; m++, (*id)++) {
if (strcmp(m->text, "-") == 0) {
InsertMenu(hmenu, *id, MF_SEPARATOR, TRUE, "");
} else {
MENUITEMINFO item;
memset(&item, 0, sizeof(item));
item.cbSize = sizeof(MENUITEMINFO);
item.fMask = MIIM_ID | MIIM_TYPE | MIIM_STATE | MIIM_DATA;
item.fType = 0;
item.fState = 0;
if (m->submenu != NULL) {
item.fMask = item.fMask | MIIM_SUBMENU;
item.hSubMenu = _tray_menu(m->submenu, id);
}
if (m->disabled) {
item.fState |= MFS_DISABLED;
}
if (m->checked) {
item.fState |= MFS_CHECKED;
}
item.wID = *id;
item.dwTypeData = (LPSTR)m->text;
item.dwItemData = (ULONG_PTR)m;
InsertMenuItem(hmenu, *id, TRUE, &item);
}
}
return hmenu;
}
struct icon_info _create_icon_info(const char * path) {
struct icon_info info;
info.path = path;
ExtractIconEx(path, 0, &info.large_icon, &info.icon, 1);
info.notification_icon = LoadImageA(NULL, path, IMAGE_ICON, GetSystemMetrics(SM_CXICON) * 2, GetSystemMetrics(SM_CYICON) * 2, LR_LOADFROMFILE);
return info;
}
void _init_icon_cache(const char ** paths, int count) {
icon_info_count = count;
icon_infos = malloc(sizeof(struct icon_info) * icon_info_count);
for (int i = 0; i < count; ++i) {
icon_infos[i] = _create_icon_info(paths[i]);
}
}
void _destroy_icon_cache() {
for (int i = 0; i < icon_info_count; ++i) {
DestroyIcon(icon_infos[i].icon);
DestroyIcon(icon_infos[i].large_icon);
DestroyIcon(icon_infos[i].notification_icon);
}
free(icon_infos);
icon_infos = NULL;
icon_info_count = 0;
}
HICON _fetch_cached_icon(const char * path, enum IconType icon_type) {
for (int i = 0; i < icon_info_count; ++i) {
if (strcmp(icon_infos[i].path, path) == 0) {
switch (icon_type) {
case REGULAR:
return icon_infos[i].icon;
case LARGE:
return icon_infos[i].large_icon;
case NOTIFICATION:
return icon_infos[i].notification_icon;
}
}
}
return NULL;
}
HICON _fetch_icon(const char * path, enum IconType icon_type) {
HICON value = _fetch_cached_icon(path, icon_type);
if (value != NULL) {
return value;
}
// Expand cache, fetch, and retry
icon_info_count += 1;
icon_infos = realloc(icon_infos, sizeof(struct icon_info) * icon_info_count);
int index = icon_info_count - 1;
icon_infos[icon_info_count - 1] = _create_icon_info(path);
return _fetch_icon(path, icon_type);
}
int tray_init(struct tray *tray) {
wm_taskbarcreated = RegisterWindowMessage("TaskbarCreated");
_init_icon_cache(tray->allIconPaths, tray->iconPathCount);
memset(&wc, 0, sizeof(wc));
wc.cbSize = sizeof(WNDCLASSEX);
wc.lpfnWndProc = _tray_wnd_proc;
wc.hInstance = GetModuleHandle(NULL);
wc.lpszClassName = WC_TRAY_CLASS_NAME;
if (!RegisterClassEx(&wc)) {
return -1;
}
hwnd = CreateWindowEx(0, WC_TRAY_CLASS_NAME, NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0);
if (hwnd == NULL) {
return -1;
}
UpdateWindow(hwnd);
memset(&nid, 0, sizeof(nid));
nid.cbSize = sizeof(NOTIFYICONDATA);
nid.hWnd = hwnd;
nid.uID = 0;
nid.uFlags = NIF_ICON | NIF_MESSAGE;
nid.uCallbackMessage = WM_TRAY_CALLBACK_MESSAGE;
Shell_NotifyIcon(NIM_ADD, &nid);
tray_update(tray);
return 0;
}
int tray_loop(int blocking) {
MSG msg;
if (blocking) {
GetMessage(&msg, hwnd, 0, 0);
} else {
PeekMessage(&msg, hwnd, 0, 0, PM_REMOVE);
}
if (msg.message == WM_QUIT) {
return -1;
}
TranslateMessage(&msg);
DispatchMessage(&msg);
return 0;
}
void tray_update(struct tray *tray) {
UINT id = ID_TRAY_FIRST;
HMENU prevmenu = hmenu;
hmenu = _tray_menu(tray->menu, &id);
SendMessage(hwnd, WM_INITMENUPOPUP, (WPARAM)hmenu, 0);
HICON icon = _fetch_icon(tray->icon, REGULAR);
HICON largeIcon = tray->notification_icon != 0
? _fetch_icon(tray->notification_icon, NOTIFICATION)
: _fetch_icon(tray->icon, LARGE);
if (icon != NULL) {
nid.hIcon = icon;
}
if(largeIcon != 0){
nid.hBalloonIcon = largeIcon;
nid.dwInfoFlags = NIIF_USER | NIIF_LARGE_ICON;
}
if(tray->tooltip != 0 && strlen(tray->tooltip) > 0) {
strncpy(nid.szTip, tray->tooltip, sizeof(nid.szTip));
nid.uFlags |= NIF_TIP;
}
QUERY_USER_NOTIFICATION_STATE notification_state;
HRESULT ns = SHQueryUserNotificationState(¬ification_state);
int can_show_notifications = ns == S_OK && notification_state == QUNS_ACCEPTS_NOTIFICATIONS;
if(can_show_notifications == 1 && tray->notification_title != 0 && strlen(tray->notification_title) > 0){
strncpy(nid.szInfoTitle, tray->notification_title, sizeof(nid.szInfoTitle));
nid.uFlags |= NIF_INFO;
} else if((nid.uFlags & NIF_INFO) == NIF_INFO) {
strncpy(nid.szInfoTitle, "", sizeof(nid.szInfoTitle));
}
if(can_show_notifications == 1 && tray->notification_text != 0 && strlen(tray->notification_text) > 0){
strncpy(nid.szInfo, tray->notification_text, sizeof(nid.szInfo));
} else if((nid.uFlags & NIF_INFO) == NIF_INFO) {
strncpy(nid.szInfo, "", sizeof(nid.szInfo));
}
if(can_show_notifications == 1 && tray->notification_cb != NULL){
notification_cb = tray->notification_cb;
}
Shell_NotifyIcon(NIM_MODIFY, &nid);
if (prevmenu != NULL) {
DestroyMenu(prevmenu);
}
}
void tray_exit(void) {
Shell_NotifyIcon(NIM_DELETE, &nid);
_destroy_icon_cache();
if (hmenu != 0) {
DestroyMenu(hmenu);
}
PostQuitMessage(0);
UnregisterClass(WC_TRAY_CLASS_NAME, GetModuleHandle(NULL));
}