-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathw32taskbar.c
272 lines (222 loc) · 7.24 KB
/
w32taskbar.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
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/w32taskbar.c,v $
*
* Purpose : Functions for creating, setting and destroying the
* workspace tray icon
*
* Copyright : Written by and Copyright (C) 2001-2002 members of
* the Privoxy team. http://www.privoxy.org/
*
* Written by and Copyright (C) 1999 Adam Lock
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will
* be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A
* PARTICULAR PURPOSE. See the GNU General Public
* License for more details.
*
* The GNU General Public License should be included with
* this file. If not, you can view it at
* http://www.gnu.org/copyleft/gpl.html
* or write to the Free Software Foundation, Inc., 59
* Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
*********************************************************************/
#include "config.h"
#include <stdio.h>
#ifndef STRICT
#define STRICT
#endif
#include <windows.h>
#include "w32taskbar.h"
#include "w32res.h"
#include "w32log.h"
#ifndef _WIN_CONSOLE /* entire file */
#define WM_TRAYMSG WM_USER+1
static HMENU g_hmenuTray;
static HWND g_hwndTrayX;
static UINT g_traycreatedmsg;
static LRESULT CALLBACK TrayProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
/*********************************************************************
*
* Function : CreateTrayWindow
*
* Description : Creates and returns the invisible window responsible
* for processing tray messages.
*
* Parameters :
* 1 : hInstance = instance handle of this application
*
* Returns : Handle of the systray window.
*
*********************************************************************/
HWND CreateTrayWindow(HINSTANCE hInstance)
{
WNDCLASS wc;
static const char *szWndName = "PrivoxyTrayWindow";
wc.style = 0;
wc.lpfnWndProc = TrayProc;
wc.cbClsExtra = 0;
wc.cbWndExtra = 0;
wc.hInstance = hInstance;
wc.hIcon = 0;
wc.hCursor = 0;
wc.hbrBackground = 0;
wc.lpszMenuName = 0;
wc.lpszClassName = szWndName;
RegisterClass(&wc);
/* TaskbarCreated is sent to a window when it should re-add its tray icons */
g_traycreatedmsg = RegisterWindowMessage("TaskbarCreated");
g_hwndTrayX = CreateWindow(szWndName, szWndName,
WS_OVERLAPPEDWINDOW, CW_USEDEFAULT, CW_USEDEFAULT, CW_USEDEFAULT,
CW_USEDEFAULT, NULL, NULL, hInstance, NULL);
ShowWindow(g_hwndTrayX, SW_HIDE);
UpdateWindow(g_hwndTrayX);
g_hmenuTray = LoadMenu(hInstance, MAKEINTRESOURCE(IDR_TRAYMENU));
return g_hwndTrayX;
}
/*********************************************************************
*
* Function : TraySetIcon
*
* Description : Sets the tray icon to the specified shape.
*
* Parameters :
* 1 : hwnd = handle of the systray window
* 2 : uID = user message number to notify systray window
* 3 : hicon = set the current icon to this handle
*
* Returns : Same value as `Shell_NotifyIcon'.
*
*********************************************************************/
BOOL TraySetIcon(HWND hwnd, UINT uID, HICON hicon)
{
NOTIFYICONDATA nid;
memset(&nid, 0, sizeof(nid));
nid.cbSize = sizeof(nid);
nid.hWnd = hwnd;
nid.uID = uID;
nid.uFlags = NIF_ICON;
nid.uCallbackMessage = 0;
nid.hIcon = hicon;
return(Shell_NotifyIcon(NIM_MODIFY, &nid));
}
/*********************************************************************
*
* Function : TrayAddIcon
*
* Description : Adds a tray icon.
*
* Parameters :
* 1 : hwnd = handle of the systray window
* 2 : uID = user message number to notify systray window
* 3 : hicon = handle of icon to add to systray window
* 4 : pszToolTip = tool tip when mouse hovers over systray window
*
* Returns : Same as `Shell_NotifyIcon'.
*
*********************************************************************/
BOOL TrayAddIcon(HWND hwnd, UINT uID, HICON hicon, const char *pszToolTip)
{
NOTIFYICONDATA nid;
memset(&nid, 0, sizeof(nid));
nid.cbSize = sizeof(nid);
nid.hWnd = hwnd;
nid.uID = uID;
nid.uFlags = NIF_MESSAGE | NIF_ICON | NIF_TIP;
nid.uCallbackMessage = WM_TRAYMSG;
nid.hIcon = hicon;
if (pszToolTip)
{
strcpy(nid.szTip, pszToolTip);
}
return(Shell_NotifyIcon(NIM_ADD, &nid));
}
/*********************************************************************
*
* Function : TrayDeleteIcon
*
* Description : Deletes a tray icon.
*
* Parameters :
* 1 : hwnd = handle of the systray window
* 2 : uID = user message number to notify systray window
*
* Returns : Same as `Shell_NotifyIcon'.
*
*********************************************************************/
BOOL TrayDeleteIcon(HWND hwnd, UINT uID)
{
NOTIFYICONDATA nid;
memset(&nid, 0, sizeof(nid));
nid.cbSize = sizeof(nid);
nid.hWnd = hwnd;
nid.uID = uID;
return(Shell_NotifyIcon(NIM_DELETE, &nid));
}
/*********************************************************************
*
* Function : TrayProc
*
* Description : Call back procedure processes tray messages.
*
* Parameters :
* 1 : hwnd = handle of the systray window
* 2 : msg = message number
* 3 : wParam = first param for this message
* 4 : lParam = next param for this message
*
* Returns : Appropriate M$ window message handler codes.
*
*********************************************************************/
LRESULT CALLBACK TrayProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch (msg)
{
case WM_CREATE:
return 0;
case WM_CLOSE:
PostQuitMessage(0);
return 0;
case WM_TRAYMSG:
{
/* UINT uID = (UINT) wParam; */
UINT uMouseMsg = (UINT) lParam;
if (uMouseMsg == WM_RBUTTONDOWN)
{
POINT pt;
HMENU hmenu = GetSubMenu(g_hmenuTray,0);
GetCursorPos(&pt);
SetForegroundWindow(g_hwndLogFrame);
TrackPopupMenu(hmenu, TPM_LEFTALIGN | TPM_TOPALIGN, pt.x, pt.y, 0, g_hwndLogFrame, NULL);
PostMessage(g_hwndLogFrame, WM_NULL, 0, 0);
}
else if (uMouseMsg == WM_LBUTTONDBLCLK)
{
ShowLogWindow(TRUE);
}
}
return 0;
default:
if (msg == g_traycreatedmsg)
{
TrayAddIcon(g_hwndTrayX, 1, g_hiconApp, "Privoxy");
}
break;
}
return DefWindowProc(hwnd, msg, wParam, lParam);
}
#endif /* ndef _WIN_CONSOLE - entire file */
/*
Local Variables:
tab-width: 3
end:
*/