forked from thomasf/systray
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsystray_windows.c
217 lines (190 loc) · 5.95 KB
/
systray_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
#define _UNICODE
#define UNICODE
#include <stdio.h>
#include "systray.h"
#include <windows.h>
#include <shellapi.h>
// Message posted into message loop when Notification Icon is clicked
#define WM_SYSTRAY_MESSAGE (WM_USER + 1)
static NOTIFYICONDATA nid;
static HWND hWnd;
static HMENU hTrayMenu;
void _systray_menu_item_selected(int *id) {
systray_menu_item_selected(*id);
}
void reportWindowsError(const char* action) {
LPTSTR pErrMsg = NULL;
DWORD errCode = GetLastError();
DWORD result = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER|
FORMAT_MESSAGE_FROM_SYSTEM|
FORMAT_MESSAGE_ARGUMENT_ARRAY,
NULL,
errCode,
LANG_NEUTRAL,
pErrMsg,
0,
NULL);
printf("Systray error %s: %d %s\n", action, errCode, pErrMsg);
}
void ShowMenu(HWND hWnd) {
POINT p;
if (0 == GetCursorPos(&p)) {
reportWindowsError("get tray menu position");
return;
};
SetForegroundWindow(hWnd); // Win32 bug work-around
TrackPopupMenu(hTrayMenu, TPM_BOTTOMALIGN | TPM_LEFTALIGN, p.x, p.y, 0, hWnd, NULL);
}
int GetMenuItemId(int index) {
MENUITEMINFO menuItemInfo;
menuItemInfo.cbSize = sizeof(MENUITEMINFO);
menuItemInfo.fMask = MIIM_DATA;
if (0 == GetMenuItemInfo(hTrayMenu, index, TRUE, &menuItemInfo)) {
reportWindowsError("get menu item id");
return -1;
}
return menuItemInfo.dwItemData;
}
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) {
switch (message) {
case WM_MENUCOMMAND:
{
int menuId = GetMenuItemId(wParam);
if (menuId != -1) {
systray_menu_item_selected(menuId);
}
}
break;
case WM_DESTROY:
PostQuitMessage(0);
break;
case WM_SYSTRAY_MESSAGE:
switch(lParam) {
case WM_RBUTTONUP:
ShowMenu(hWnd);
break;
case WM_LBUTTONUP:
ShowMenu(hWnd);
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
};
break;
default:
return DefWindowProc(hWnd, message, wParam, lParam);
}
return 0;
}
void MyRegisterClass(HINSTANCE hInstance, TCHAR* szWindowClass) {
WNDCLASSEX wcex;
wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = CS_HREDRAW | CS_VREDRAW;
wcex.lpfnWndProc = WndProc;
wcex.cbClsExtra = 0;
wcex.cbWndExtra = 0;
wcex.hInstance = hInstance;
wcex.hIcon = LoadIcon(NULL, IDI_APPLICATION);
wcex.hCursor = LoadCursor(NULL, IDC_ARROW);
wcex.hbrBackground = (HBRUSH)(COLOR_WINDOW+1);
wcex.lpszMenuName = 0;
wcex.lpszClassName = szWindowClass;
wcex.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
RegisterClassEx(&wcex);
}
HWND InitInstance(HINSTANCE hInstance, int nCmdShow, TCHAR* szWindowClass) {
HWND hWnd = CreateWindow(szWindowClass, TEXT(""), WS_OVERLAPPEDWINDOW,
CW_USEDEFAULT, 0, CW_USEDEFAULT, 0, NULL, NULL, hInstance, NULL);
if (!hWnd) {
return 0;
}
ShowWindow(hWnd, nCmdShow);
UpdateWindow(hWnd);
return hWnd;
}
BOOL createMenu() {
hTrayMenu = CreatePopupMenu();
MENUINFO menuInfo;
menuInfo.cbSize = sizeof(MENUINFO);
menuInfo.fMask = MIM_APPLYTOSUBMENUS | MIM_STYLE;
menuInfo.dwStyle = MNS_NOTIFYBYPOS;
return SetMenuInfo(hTrayMenu, &menuInfo);
}
BOOL addNotifyIcon() {
nid.cbSize = sizeof(NOTIFYICONDATA);
nid.hWnd = hWnd;
nid.uID = 100;
nid.uCallbackMessage = WM_SYSTRAY_MESSAGE;
nid.uFlags = NIF_MESSAGE;
return Shell_NotifyIcon(NIM_ADD, &nid);
}
int nativeLoop(void) {
HINSTANCE hInstance = GetModuleHandle(NULL);
TCHAR* szWindowClass = TEXT("SystrayClass");
MyRegisterClass(hInstance, szWindowClass);
hWnd = InitInstance(hInstance, FALSE, szWindowClass); // Don't show window
if (!hWnd) {
return EXIT_FAILURE;
}
if (!createMenu() || !addNotifyIcon()) {
return EXIT_FAILURE;
}
systray_ready(0);
MSG msg;
while (GetMessage(&msg, NULL, 0, 0)) {
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return EXIT_SUCCESS;
}
void setIcon(const wchar_t* iconFile, int lenth) {
HICON hIcon = (HICON) LoadImageW(NULL, iconFile, IMAGE_ICON, 64, 64, LR_LOADFROMFILE);
if (hIcon == NULL) {
reportWindowsError("load icon image");
} else {
nid.hIcon = hIcon;
nid.uFlags = NIF_ICON;
Shell_NotifyIcon(NIM_MODIFY, &nid);
}
}
void setTooltip(const wchar_t* tooltip) {
wcsncpy(nid.szTip, tooltip, sizeof(nid.szTip)/sizeof(wchar_t));
nid.uFlags = NIF_TIP;
Shell_NotifyIcon(NIM_MODIFY, &nid);
}
void add_or_update_menu_item(int menuId, wchar_t* title, wchar_t* tooltip, short disabled, short checked) {
// todo(thomasf),, should title and tooltip be freeed?
MENUITEMINFO menuItemInfo;
menuItemInfo.cbSize = sizeof(MENUITEMINFO);
menuItemInfo.fMask = MIIM_FTYPE | MIIM_STRING | MIIM_DATA | MIIM_STATE;
menuItemInfo.fType = MFT_STRING;
menuItemInfo.dwTypeData = title;
menuItemInfo.cch = wcslen(title) + 1;
menuItemInfo.dwItemData = (ULONG_PTR)menuId;
menuItemInfo.fState = 0;
if (disabled == 1) {
menuItemInfo.fState |= MFS_DISABLED;
}
if (checked == 1) {
menuItemInfo.fState |= MFS_CHECKED;
}
int itemCount = GetMenuItemCount(hTrayMenu);
int i;
for (i = 0; i < itemCount; i++) {
int id = GetMenuItemId(i);
if (-1 == id) {
continue;
}
if (menuId == id) {
SetMenuItemInfo(hTrayMenu, i, TRUE, &menuItemInfo);
break;
}
}
if (i == itemCount) {
InsertMenuItem(hTrayMenu, -1, TRUE, &menuItemInfo);
}
}
void quit() {
Shell_NotifyIcon(NIM_DELETE, &nid);
}
void setTitle(const wchar_t* ctitle) {
}