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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
|
#include "commonheaders.h"
INT_PTR exportContacts(WPARAM wParam,LPARAM lParam)
{
char fn[MAX_PATH];
if (!Openfile(fn, 0))
return 0;
FILE* file;
if (MessageBoxA(0, "Do you want to overwrite the contents of the file?\r\n\r\nPressing No will append these contacts to the end of the file.",modFullname, MB_YESNO) == IDYES)
file = fopen(fn, "w");
else
file = fopen(fn, "a");
if (!file)
return 0;
for (HANDLE hContact = db_find_first(MODNAME); hContact; hContact = db_find_next(hContact, MODNAME)) {
int tmp;
char DBVar[1024];
if (db_get_static(hContact, MODNAME, "Name", DBVar)) {
fprintf(file, "\r\n[Non-IM Contact]\r\nName=%s\r\n", DBVar);
if (db_get_static(hContact, MODNAME, "ProgramString", DBVar))
fprintf(file, "ProgramString=%s\r\n", DBVar);
if (db_get_static(hContact, MODNAME, "ProgramParamString", DBVar))
fprintf(file, "ProgramParamString=%s\r\n", DBVar);
if (db_get_static(hContact, MODNAME, "ToolTip", DBVar))
fprintf(file, "ToolTip=%s</tooltip>\r\n", DBVar);
if (db_get_static(hContact, "CList", "Group", DBVar))
fprintf(file, "Group=%s\r\n", DBVar);
if (tmp = db_get_w(hContact, MODNAME, "Icon", 40072))
fprintf(file, "Icon=%d\r\n", tmp);
if (tmp = db_get_b(hContact, MODNAME, "UseTimer", 0))
fprintf(file, "UseTimer=%d\r\n", tmp);
if (tmp = db_get_b(hContact, MODNAME, "Minutes", 1))
fprintf(file, "Minutes=%d\r\n", tmp);
if (tmp = db_get_w(hContact, MODNAME, "Timer", 0))
fprintf(file, "Timer=%d\r\n", tmp);
fprintf(file, "[/Non-IM Contact]\r\n");
}
}
fclose(file);
return 0;
}
int Openfile(char *outputFile, int saveOpen) //0=save, 1=open
{
char filename[MAX_PATH] = "";
char *filter = "All Files\0*.*\0";
int r;
char title[16];
if (saveOpen)
strcpy(title, "Open file");
else strcpy(title, "Save to file");
OPENFILENAMEA ofn = { sizeof(ofn) };
ofn.lpstrFile = filename;
ofn.lpstrFilter = filter;
ofn.Flags = saveOpen? OFN_HIDEREADONLY | OFN_FILEMUSTEXIST | OFN_SHAREAWARE | OFN_PATHMUSTEXIST: OFN_HIDEREADONLY | OFN_SHAREAWARE | OFN_PATHMUSTEXIST;
ofn.lpstrTitle = title;
ofn.nMaxFile = MAX_PATH;
if (saveOpen)
r = GetOpenFileNameA(&ofn);
else
r = GetSaveFileNameA(&ofn);
if (!r)
return 0;
lstrcpyA(outputFile,filename);
return 1;
}
void reloadFiles(HWND fileList)
{
int i, index;
char file[MAX_PATH], fn[6];
SendMessage(fileList,CB_RESETCONTENT, 0,0);
for (i=0; ;i++)
{
wsprintfA(fn, "fn%d", i);
if (db_get_static(NULL, MODNAME, fn, file)) {
index = SendMessageA(fileList, CB_ADDSTRING,0, (LPARAM)(char*)file);
SendMessage(fileList, CB_SETITEMDATA, index, (LPARAM)(int)i);
SendMessage(fileList, CB_SETCURSEL, index,0);
SetDlgItemTextA(GetParent(fileList), IDC_FN, _itoa(i, fn, 10));
/* add the file contents to the edit box */
}
else break;
}
}
int savehtml(char* outFile)
{
FILE* file = fopen(outFile, "w");
if (!file)
{
fclose(file);
return 0;
}
fprintf(file, "%s", szInfo);
fclose(file);
return 1;
}
void readFile(HWND hwnd)
{
int lineNumber, fileLength=0, width=0;
char temp[MAX_STRING_LENGTH], szFileName[512], temp1[MAX_STRING_LENGTH], fn[8];
FILE* filen;
int fileNumber = SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETCURSEL, 0,0);
wsprintfA(fn, "fn%d", fileNumber);
if (!db_get_static(NULL, MODNAME, fn, szFileName)) {
msg(Translate("File couldn't be opened"),fn);
return;
}
if ( (!strncmp("http://", szFileName, strlen("http://"))) || (!strncmp("https://", szFileName, strlen("https://"))) )
wsprintfA(szFileName,"%s\\plugins\\fn%d.html",getMimDir(temp), fileNumber);
filen = fopen(szFileName,"r");
if (!filen) {
MessageBoxA(0, Translate("File couldn't be opened,2"), modFullname,MB_OK);
return;
}
lineNumber = 0;
SendMessage(GetDlgItem(hwnd, IDC_FILE_CONTENTS),LB_RESETCONTENT, 0,0);
while (lineNumber < (MAXLINES) && (fgets(temp, MAX_STRING_LENGTH, filen)))
{
if (temp[0] == '\t') temp[0] = ' ';
if (temp[strlen(temp)-1]=='\n' && temp[strlen(temp)-2]=='\r')
temp[strlen(temp)-2]='\0';
else if (temp[strlen(temp)-1]=='\n')
temp[strlen(temp)-1]='\0';
else temp[strlen(temp)]='\0';
wsprintfA( temp1, Translate("line(%-3d) = | %s"), lineNumber, temp);
SendMessageA(GetDlgItem(hwnd, IDC_FILE_CONTENTS),LB_ADDSTRING,0,(LPARAM)(char*)temp1);
lineNumber++;
fileLength++;
if ((unsigned int)SendMessage(GetDlgItem(hwnd, IDC_FILE_CONTENTS),LB_GETHORIZONTALEXTENT,0,0) <= (strlen(temp1)*db_get_b(NULL, MODNAME, "WidthMultiplier", 5)))
SendMessage(GetDlgItem(hwnd, IDC_FILE_CONTENTS),LB_SETHORIZONTALEXTENT,(strlen(temp1)*db_get_b(NULL, MODNAME, "WidthMultiplier", 5)),0);
}
fclose(filen);
return ;
}
#define WM_RELOADWINDOW (WM_USER+11)
INT_PTR CALLBACK DlgProcFiles(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
switch(msg) {
case WM_RELOADWINDOW:
{
char fn[MAX_PATH], string[MAX_STRING_LENGTH], tmp[MAX_STRING_LENGTH];
reloadFiles(GetDlgItem(hwnd, IDC_FILE_LIST));
int i = SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETCURSEL, 0 ,0);
wsprintfA(fn , "fn%d", i);
SendMessage(GetDlgItem(hwnd, IDC_FILE_CONTENTS),LB_RESETCONTENT, 0,0);
if (db_get_static(NULL, MODNAME, fn, string) )
{
if ( (!strncmp("http://", string, strlen("http://"))) || (!strncmp("https://", string, strlen("https://"))) )
{
SetDlgItemTextA(hwnd,IDC_URL, string);
SetDlgItemTextA(hwnd, IDC_WWW_TIMER, _itoa(db_get_w(NULL, MODNAME, strcat(fn, "_timer"), 60), tmp, 10));
}
readFile(hwnd);
}
}
break;
case WM_INITDIALOG:
{
SendMessage(hwnd, WM_RELOADWINDOW, 0,0);
TranslateDialogDefault(hwnd);
}
return TRUE;
case WM_COMMAND:
SendMessage(GetParent(hwnd), PSM_CHANGED, 0, 0);
switch(LOWORD(wParam)) {
case IDC_ADD_URL:
{
if (GetWindowTextLength(GetDlgItem(hwnd,IDC_URL)))
{
char text[512], url[512], fn[10] = "fn0", szFileName[MAX_PATH], temp[512];
int i, timer;
GetDlgItemTextA(hwnd,IDC_URL,text,sizeof(text));
strcpy(url, text);
if (!InternetDownloadFile(text))
{
for (i=0; ;i++)
{
wsprintfA(fn, "fn%d", i);
if (!db_get_static(NULL, MODNAME, fn, text))
break;
}
wsprintfA(szFileName,"%s\\plugins\\%s.html",getMimDir(temp), fn);
if (savehtml(szFileName))
{
wsprintfA(fn, "fn%d", i);
db_set_s(NULL, MODNAME, fn, url);
if (!GetWindowTextLength(GetDlgItem(hwnd,IDC_WWW_TIMER)))
timer = 60;
else
{
GetDlgItemTextA(hwnd,IDC_WWW_TIMER,text,sizeof(text));
timer = atoi(text);
}
db_set_w(NULL, MODNAME, strcat(fn, "_timer"), (WORD)timer);
SendMessage(hwnd, WM_RELOADWINDOW, 0,0);
}
}
}
}
break;
case IDC_WWW_TIMER:
if (HIWORD(wParam) == EN_CHANGE)
SendMessage(GetParent(hwnd),PSM_CHANGED,0,0);
break;
case IDC_ADD_FILE:
{
int i, index;
char file[MAX_PATH], fn[6];
for (i=0; ;i++)
{
wsprintfA(fn, "fn%d", i);
if (!db_get_static(NULL, MODNAME, fn, file))
break;
}
if (Openfile(file,1))
{
db_set_s(NULL, MODNAME, fn, file);
index = SendMessageA(GetDlgItem(hwnd, IDC_FILE_LIST),CB_ADDSTRING,0,(LPARAM)(char*)file);
SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_SETITEMDATA,index,(LPARAM)(int)i);
SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_SETCURSEL, index ,0);
SetDlgItemTextA(hwnd, IDC_FN, _itoa(i, fn, 10));
wsprintfA(fn , "fn%d", index);
readFile(hwnd);
}
}
break;
case IDC_DEL_FILE:
{
int index = SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETCURSEL, 0,0),i= (int)SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETITEMDATA, index,0);
char fn[6], fn1[4], tmp[256];
int count = SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETCOUNT, 0,0) -1;
if (index == count)
{
wsprintfA(fn, "fn%d", index);
db_unset(NULL, MODNAME, fn);
SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_DELETESTRING, index ,0);
SendMessage(hwnd, WM_RELOADWINDOW, 0,0);
if (!index) {
SetDlgItemTextA(hwnd, IDC_FN,"");
SetDlgItemTextA(hwnd, IDC_FILE_CONTENTS,"");
}
}
else
{
wsprintfA(fn, "fn%d", i);
while (db_get_static(NULL, MODNAME, fn,tmp))
{
wsprintfA(fn1, "fn%d", i-1);
db_set_s(NULL, MODNAME, fn1 , tmp);
wsprintfA(fn, "fn%d", ++i);
}
wsprintfA(fn, "fn%d", --i);
db_unset(NULL, MODNAME, fn);
SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_DELETESTRING, index ,0);
SendMessage(hwnd, WM_RELOADWINDOW, 0,0);
}
}
break;
case IDC_FILE_LIST:
if (HIWORD(wParam) == CBN_SELCHANGE )
{
int index = SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETCURSEL, 0,0);
char fn[6], tmp[MAX_PATH];
SetDlgItemTextA(hwnd, IDC_FN, _itoa(index, fn, 10));
wsprintfA(fn, "fn%d", index);
if (db_get_static(NULL, MODNAME, fn, tmp) )
{
if (!strncmp("http://", tmp, strlen("http://")) || !strncmp("https://", tmp, strlen("https://")))
{
SetDlgItemTextA(hwnd,IDC_URL, tmp);
SetDlgItemTextA(hwnd, IDC_WWW_TIMER, _itoa(db_get_w(NULL, MODNAME, strcat(fn, "_timer"), 60), tmp, 10));
}
else
{
SetDlgItemTextA(hwnd,IDC_URL, "");
SetDlgItemTextA(hwnd, IDC_WWW_TIMER,"");
}
readFile(hwnd);
}
}
break;
case IDCANCEL:
DestroyWindow(hwnd);
break;
return TRUE;
}
break;
case WM_NOTIFY:
switch(((LPNMHDR)lParam)->idFrom) {
case 0:
switch (((LPNMHDR)lParam)->code) {
case PSN_APPLY:
int i = SendMessage(GetDlgItem(hwnd, IDC_FILE_LIST),CB_GETCURSEL, 0 ,0);
int timer;
char fn[MAX_PATH], string[1000];;
wsprintfA(fn , "fn%d", i);
if (GetWindowTextLength(GetDlgItem(hwnd,IDC_WWW_TIMER))) {
char text[5];
GetDlgItemTextA(hwnd,IDC_WWW_TIMER,text,sizeof(text));
timer = atoi(text);
}
else timer = 60;
if (db_get_static(NULL, MODNAME, fn, string) )
if (!strncmp("http://", string, strlen("http://")) || !strncmp("https://", string, strlen("https://")))
db_set_w(NULL, MODNAME, strcat(fn, "_timer"), (WORD)timer);
return TRUE;
}
}
break;
}
return FALSE;
}
char* getMimDir(char* file)
{
GetModuleFileNameA(NULL, file, MAX_PATH);
char *p1 = strrchr(file,'\\');
if (p1)
*p1 = '\0';
if (file[0] == '\\')
file[strlen(file)-1] = '\0';
return file;
}
|