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
|
/*
Copyright (C) 2012-19 Miranda NG team (https://miranda-ng.org)
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 version 2
of the License.
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "stdafx.h"
void ShowThePreview()
{
if (WumfOptions.AlertFolders) {
ShowThePopup(nullptr, L"Guest", L"C:\\My Share");
Sleep(300);
ShowThePopup(nullptr, L"Guest", L"C:\\My Share\\Photos");
Sleep(300);
}
ShowThePopup(nullptr, L"Guest", L"C:\\Share\\My Photos\\photo.jpg");
Sleep(300);
if (WumfOptions.AlertFolders) {
ShowThePopup(nullptr, L"User", L"C:\\My Share");
Sleep(300);
ShowThePopup(nullptr, L"User", L"C:\\My Share\\Movies");
Sleep(300);
}
ShowThePopup(nullptr, L"User", L"C:\\My Share\\Movies\\The Two Towers.avi");
Sleep(300);
if (WumfOptions.AlertFolders) {
ShowThePopup(nullptr, L"Administrator", L"C:\\Distributives");
Sleep(300);
ShowThePopup(nullptr, L"Administrator", L"C:\\Distributives\\Win2k");
Sleep(300);
}
ShowThePopup(nullptr, L"Administrator", L"C:\\Distributives\\Win2k\\setup.exe");
}
void DisableDelayOptions(HWND hwndDlg)
{
CheckDlgButton(hwndDlg, IDC_DELAY_INF,BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_DELAY_SET,BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_DELAY_DEF,BST_CHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_DELAY_INF), FALSE);
EnableWindow(GetDlgItem(hwndDlg, IDC_DELAY_SET), FALSE);
EnableWindow(GetDlgItem(hwndDlg, IDC_DELAY_DEF), FALSE);
EnableWindow(GetDlgItem(hwndDlg, IDC_DELAY_SEC), FALSE);
EnableWindow(GetDlgItem(hwndDlg, IDC_TX_DELAY_SEC), FALSE);
}
void ChooseFile(HWND hwndDlg)
{
wchar_t szFile[MAX_PATH]; szFile[0]=0;
// Initialize OPENFILENAME
OPENFILENAME ofn = {0}; // common dialog box structure
ofn.lStructSize = sizeof(OPENFILENAME);
ofn.hwndOwner = hwndDlg;
ofn.lpstrFile = szFile;
ofn.nMaxFile = _countof(szFile);
ofn.lpstrFilter = L"All files (*.*)\0*.*\0Text files (*.txt)\0*.txt\0Log files (*.log)\0*.log\0\0";
ofn.nFilterIndex = 2;
ofn.Flags = OFN_CREATEPROMPT;
// Display the Open dialog box.
if (GetSaveFileName(&ofn)) {
HANDLE hf = CreateFile(szFile,GENERIC_WRITE,0,nullptr,OPEN_ALWAYS,FILE_ATTRIBUTE_NORMAL, nullptr);
if (hf != INVALID_HANDLE_VALUE) {
SetDlgItemText(hwndDlg,IDC_FILE,szFile);
mir_wstrncpy(WumfOptions.LogFile, szFile, MAX_PATH);
CloseHandle(hf);
}
}
else if (CommDlgExtendedError() != 0) {
wchar_t str[256];
mir_snwprintf(str, TranslateT("Common Dialog Error 0x%lx"), CommDlgExtendedError());
MessageBox(hwndDlg, str, TranslateT("Error"), MB_OK | MB_ICONSTOP);
}
}
INT_PTR CALLBACK OptionsDlgProc(HWND hwndDlg,UINT msg,WPARAM wparam,LPARAM lparam)
{
WORD wControlId = LOWORD(wparam);
WORD wNotifyCode = HIWORD(wparam);
int seconds;
switch(msg) {
case WM_INITDIALOG:
TranslateDialogDefault(hwndDlg);
CheckDlgButton(hwndDlg, IDC_COLOR_WIN, WumfOptions.UseWinColor ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_COLOR_DEF, WumfOptions.UseDefColor ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_COLOR_SET, WumfOptions.SelectColor ? BST_CHECKED : BST_UNCHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_COLOR_BACK), WumfOptions.SelectColor);
EnableWindow(GetDlgItem(hwndDlg, IDC_COLOR_TEXT), WumfOptions.SelectColor);
if (WumfOptions.SelectColor) {
SendDlgItemMessage(hwndDlg,IDC_COLOR_BACK,CPM_SETCOLOUR,0,WumfOptions.ColorBack);
SendDlgItemMessage(hwndDlg,IDC_COLOR_TEXT,CPM_SETCOLOUR,0,WumfOptions.ColorText);
}
CheckDlgButton(hwndDlg, IDC_DELAY_INF, WumfOptions.DelayInf ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_DELAY_DEF, WumfOptions.DelayDef ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_DELAY_SET, WumfOptions.DelaySet ? BST_CHECKED : BST_UNCHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_DELAY_SEC), WumfOptions.DelaySet);
SetDlgItemInt(hwndDlg, IDC_DELAY_SEC, WumfOptions.DelaySec, FALSE);
//Logging & alerts
CheckDlgButton(hwndDlg, IDC_LOG_FOLDER, WumfOptions.LogFolders ? BST_CHECKED : BST_UNCHECKED);
CheckDlgButton(hwndDlg, IDC_ALERT_FOLDER, WumfOptions.AlertFolders ? BST_CHECKED : BST_UNCHECKED);
if (WumfOptions.LogToFile) {
CheckDlgButton(hwndDlg,IDC_LOG_INTO_FILE,BST_CHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_FILE), TRUE);
EnableWindow(GetDlgItem(hwndDlg, IDC_SEL_FILE), TRUE);
SetDlgItemText(hwndDlg,IDC_FILE,WumfOptions.LogFile);
}
else {
CheckDlgButton(hwndDlg,IDC_LOG_INTO_FILE,BST_UNCHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_FILE), FALSE);
EnableWindow(GetDlgItem(hwndDlg, IDC_SEL_FILE), FALSE);
SetDlgItemText(hwndDlg, IDC_FILE, L"");
}
break;
case WM_COMMAND:
switch(wNotifyCode) {
case BN_CLICKED :
switch(wControlId) {
case IDC_DELAY_SET:
case IDC_DELAY_DEF:
case IDC_DELAY_INF:
WumfOptions.DelaySet = (IsDlgButtonChecked(hwndDlg, IDC_DELAY_SET) == BST_CHECKED);
WumfOptions.DelayDef = (IsDlgButtonChecked(hwndDlg, IDC_DELAY_DEF) == BST_CHECKED);
WumfOptions.DelayInf = (IsDlgButtonChecked(hwndDlg, IDC_DELAY_INF) == BST_CHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_DELAY_SEC), WumfOptions.DelaySet);
SetDlgItemInt(hwndDlg, IDC_DELAY_SEC, WumfOptions.DelaySec, TRUE);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case IDC_COLOR_SET:
case IDC_COLOR_DEF:
case IDC_COLOR_WIN:
WumfOptions.SelectColor = (IsDlgButtonChecked(hwndDlg, IDC_COLOR_SET) == BST_CHECKED);
WumfOptions.UseDefColor = (IsDlgButtonChecked(hwndDlg, IDC_COLOR_DEF) == BST_CHECKED);
WumfOptions.UseWinColor = (IsDlgButtonChecked(hwndDlg, IDC_COLOR_WIN) == BST_CHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_COLOR_BACK),WumfOptions.SelectColor);
EnableWindow(GetDlgItem(hwndDlg, IDC_COLOR_TEXT), WumfOptions.SelectColor);
SendDlgItemMessage(hwndDlg,IDC_COLOR_BACK,CPM_SETCOLOUR,0,WumfOptions.ColorBack);
SendDlgItemMessage(hwndDlg,IDC_COLOR_TEXT,CPM_SETCOLOUR,0,WumfOptions.ColorText);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
/* end */
case IDC_LOG_INTO_FILE:
WumfOptions.LogToFile = (IsDlgButtonChecked(hwndDlg, IDC_LOG_INTO_FILE) == BST_CHECKED);
EnableWindow(GetDlgItem(hwndDlg, IDC_FILE), WumfOptions.LogToFile);
EnableWindow(GetDlgItem(hwndDlg, IDC_SEL_FILE), WumfOptions.LogToFile);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case IDC_SEL_FILE:
ChooseFile(hwndDlg);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case IDC_LOG_FOLDER:
WumfOptions.LogFolders = (IsDlgButtonChecked(hwndDlg, IDC_LOG_FOLDER) == BST_CHECKED);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case IDC_ALERT_FOLDER:
WumfOptions.AlertFolders = (IsDlgButtonChecked(hwndDlg, IDC_ALERT_FOLDER) == BST_CHECKED);
break;
case IDC_PREVIEW:
ShowThePreview();
break;
case IDC_CONN:
CallService(MS_WUMF_CONNECTIONSSHOW, 0, 0);
break;
}
break;
case CPN_COLOURCHANGED:
WumfOptions.ColorText = SendDlgItemMessage(hwndDlg,IDC_COLOR_TEXT,CPM_GETCOLOUR,0,0);
WumfOptions.ColorBack = SendDlgItemMessage(hwndDlg,IDC_COLOR_BACK,CPM_GETCOLOUR,0,0);
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case EN_CHANGE:
switch(wControlId) {
case IDC_DELAY_SEC:
seconds = GetDlgItemInt(hwndDlg, IDC_DELAY_SEC, nullptr, FALSE);
if (seconds > LIFETIME_MAX)
WumfOptions.DelaySec = LIFETIME_MAX;
else if (seconds < LIFETIME_MIN)
WumfOptions.DelaySec = LIFETIME_MIN;
else if (seconds <= LIFETIME_MAX || seconds >= LIFETIME_MIN)
WumfOptions.DelaySec = seconds;
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
case IDC_FILE:
GetDlgItemText(hwndDlg,IDC_FILE,WumfOptions.LogFile, _countof(WumfOptions.LogFile));
SendMessage(GetParent(hwndDlg), PSM_CHANGED, 0, 0);
break;
}
break;
case EN_KILLFOCUS:
switch(wControlId) {
case IDC_DELAY_SEC:
SetDlgItemInt(hwndDlg, IDC_DELAY_SEC, WumfOptions.DelaySec, FALSE);
break;
}
break;
}
break;
case WM_NOTIFY:
switch(((LPNMHDR)lparam)->idFrom) {
case 0:
switch (((LPNMHDR)lparam)->code) {
case PSN_RESET:
LoadOptions();
return TRUE;
case PSN_APPLY:
g_plugin.setDword(COLOR_TEXT, (DWORD)WumfOptions.ColorText);
g_plugin.setDword(COLOR_BACK, (DWORD)WumfOptions.ColorBack);
g_plugin.setByte(COLOR_DEF, (BYTE)WumfOptions.UseDefColor);
g_plugin.setByte(COLOR_WIN, (BYTE)WumfOptions.UseWinColor);
g_plugin.setByte(COLOR_SET, (BYTE)WumfOptions.SelectColor );
g_plugin.setByte(DELAY_DEF, (BYTE)WumfOptions.DelayDef);
g_plugin.setByte(DELAY_INF, (BYTE)WumfOptions.DelayInf);
g_plugin.setByte(DELAY_SET, (BYTE)WumfOptions.DelaySet);
g_plugin.setByte(DELAY_SEC, (BYTE)WumfOptions.DelaySec);
g_plugin.setByte(LOG_INTO_FILE, (BYTE)WumfOptions.LogToFile);
g_plugin.setByte(LOG_FOLDER, (BYTE)WumfOptions.LogFolders);
g_plugin.setByte(ALERT_FOLDER, (BYTE)WumfOptions.AlertFolders);
GetDlgItemText(hwndDlg, IDC_FILE, WumfOptions.LogFile, _countof(WumfOptions.LogFile));
g_plugin.setWString(OPT_FILE, WumfOptions.LogFile);
}
}
break;
}
return 0;
}
int OptionsInit(WPARAM wparam, LPARAM)
{
OPTIONSDIALOGPAGE odp = {};
odp.position = 945000000;
odp.pszTemplate = MAKEINTRESOURCEA(IDD_OPTIONS);
odp.szTitle.a = LPGEN("Who uses my files");
odp.pfnDlgProc = OptionsDlgProc;
odp.szGroup.a = LPGEN("Services");
odp.flags = ODPF_BOLDGROUPS;
g_plugin.addOptions(wparam, &odp);
return 0;
}
|