summaryrefslogtreecommitdiff
path: root/plugins/Non-IM Contact/src/dialog.cpp
blob: cf99e00c0364eb9f6bdcb075923fbc3c63a0e714 (plain)
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
#include "commonheaders.h"

#define NIM_HELP_TEXT LPGEN("String replacing variables....\r\nThe following are all the valid variables that can be used. Refer to the readme for a proper explanation.\r\n\r\n\
file(X)\t\t<- specifies the file to read from\r\nMUST be followed by either start() or end() or wholeline()\r\n\
filename(X)\t\t<- copyies the filename of file X.\r\n\
start(...)\t\t<-specifies where to start copying from.\r\n\
end(...)\t\t<-specifies where to stop copying.\r\n\
wholeline(line(...))\t<-specifies a whole line to copy\r\n\r\n\
start() and end() explained\r\n.........................\r\n\
MUST start with line() followed by a number or a string inside \" marks, OR csv(seperatorX) variable\r\n\
The number specifies which character in the line to start/end copying.\r\nThe string specifies a string in the line to start/end copying.\r\n\
csv(seperatorX) explained...\r\nseperator is either \"tab\" or \"space\" or any SINGLE character.\r\nX is the Xth seperator to pass before copying, (or to stop before)\r\n\r\n\
Lastly the line(...) variable...\r\n\
Inside the brackets must be either a number (to specify the line number), or a string inside \" marks (to use the line with that string), or lastline(X).\r\nthe X in lastline is the Xth line above the last line. i.e lastline(1) will use the 2nd last line of the file.\r\n\
If searching for a line with u may put a + or - X after the closing ) i.e line(\"some words\")+3 to go 3 lines after the line with \"some words\".\r\n\r\n\
Some Expamples...\r\n\r\n\
filename(0)     <- will display the filename of the 0th file\r\nfile(0)wholeline(line(0))) <- will display the whole first line of the 0th file\r\nfile(0)wholeline(line(\"hello\")-1))) <- the wholeline above the first occurance of \"hello\" in the file\r\nfile(0)start(line(lastline(1))csv(tab2))end(line(lastline())csv(tab4))) <- starts at the 2nd last line of the file, from the 2nd tab variable, untill the 4th tab variable in the last line (in the 0th file)\r\nfile(0)start(line(\"hello\")+1\"zzzz\")end(line(6)17)) <- starts from the first occurance of zzzz in the line after the first occurance of hello, untill the 17th character in the 6th line (starting from line 0) of the 0th file.\r\n")


INT_PTR CALLBACK DlgProcNimcOpts(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
	switch(msg) {
	case WM_INITDIALOG:
		{
			char tmp[5];
			TranslateDialogDefault(hwnd);
			CheckDlgButton(hwnd, IDC_AWAYISNOTONLINE, db_get_b(NULL, MODNAME, "AwayAsStatus", 0));
			if (db_get_w(NULL, MODNAME, "Timer", 1))
			{
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_INT),1);
				SetDlgItemTextA(hwnd, IDC_TIMER_INT, _itoa(db_get_w(NULL, MODNAME, "Timer", 1),tmp,10));
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_TEXT),1);
			}
			else 
			{
				CheckDlgButton(hwnd, IDC_DISABLETIMER, 1);
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_INT),0);
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_TEXT),0);
			}

		}
		return TRUE;
	case WM_COMMAND:
		SendMessage(GetParent(hwnd), PSM_CHANGED, 0, 0);
		switch(LOWORD(wParam)) {
		case IDC_DISABLETIMER:
			if (IsDlgButtonChecked(hwnd, IDC_DISABLETIMER))
			{
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_INT),0);
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_TEXT),0);
			}
			else 
			{
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_TEXT),1);
				EnableWindow(GetDlgItem(hwnd,IDC_TIMER_INT),1);
				if (!GetWindowTextLength(GetDlgItem(hwnd, IDC_TIMER_INT)))
					SetDlgItemTextA(hwnd, IDC_TIMER_INT,"1");
			}
			break;


			return TRUE;
		}
		break;
	case WM_NOTIFY:
		switch(((LPNMHDR)lParam)->idFrom) {
		case 0:
			switch (((LPNMHDR)lParam)->code) {
			case PSN_APPLY:
				char tmp[5];
				db_set_b(NULL, MODNAME, "AwayAsStatus", (BYTE)IsDlgButtonChecked(hwnd, IDC_AWAYISNOTONLINE));
				if (!IsDlgButtonChecked(hwnd, IDC_DISABLETIMER) && GetWindowTextLength(GetDlgItem(hwnd, IDC_TIMER_INT))) {
					GetDlgItemTextA(hwnd, IDC_TIMER_INT, tmp, 4);
					db_set_w(NULL, MODNAME, "Timer",(WORD)atoi(tmp));
				}
				else db_set_w(NULL, MODNAME, "Timer",0);
				return TRUE;
			}
		}
		break;
	}
	return FALSE;
}


//  string replace test window thingamijig....

// struct to keep track of ()'s in the test sring window
#define MAX_BRACES 32
#define VARS 7
struct braces {
	char var[64];
	int idCtrl;
} braceList[VARS] = 
{
	{"file(", IDC_FILE},
	{"start(", IDC_START},
	{"end(", IDC_END},
	{"csv(", IDC_CSV},
	{"wholeline(", IDC_WHOLELINE},
	{"filename(", IDC_FILENAME},
	{"line(", IDC_LINE}
};
int braceOrder[MAX_BRACES] = {0};

INT_PTR CALLBACK HelpWindowDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
	switch(msg) {
	case WM_INITDIALOG:
		SetDlgItemTextA(hwnd, IDC_HELPTEXT, NIM_HELP_TEXT);
		TranslateDialogDefault(hwnd);
		return TRUE;

	case WM_COMMAND:
		switch(LOWORD(wParam)) {
		case IDOK:
			DestroyWindow(hwnd);
			break;
		}
		return TRUE;
	}
	return FALSE;
}

INT_PTR CALLBACK TestWindowDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
	switch(msg) {
	case WM_INITDIALOG:
		TranslateDialogDefault(hwnd);
		return TRUE;

	case WM_COMMAND:
		switch(LOWORD(wParam)) {
		case IDC_HELPMSG:
			CreateDialog(hInst,MAKEINTRESOURCE(IDD_HELP), 0, HelpWindowDlgProc);
			break;

		case IDCANCEL:
			DestroyWindow(hwnd);
			break;

		case IDC_STRING:
			if (HIWORD(wParam) == EN_CHANGE) {
				char tmp[MAX_STRING_LENGTH];
				int i=0,j;
				if (GetWindowTextLength(GetDlgItem(hwnd, IDC_STRING))) {
					GetDlgItemTextA(hwnd, IDC_STRING, tmp, MAX_STRING_LENGTH);
					if (tmp[strlen(tmp)-1] == '(') {
						for (i=0; i<VARS; i++) 						{
							if (!strcmp(braceList[i].var,&tmp[strlen(tmp)-strlen(braceList[i].var)])) {
								for (j=0;j<MAX_BRACES;j++) {
									if (!braceOrder[j]) {
										braceOrder[j]=i;
										EnableWindow(GetDlgItem(hwnd, braceList[i].idCtrl),1);
										if (j)
											EnableWindow(GetDlgItem(hwnd, braceList[braceOrder[j-1]].idCtrl),0);
										break;
									}
								}
								break;
							}
						}
					}
					else if (tmp[strlen(tmp)-1] == ')') {
						for (j=0; j<MAX_BRACES; j++) {
							if (!braceOrder[j]) {
								EnableWindow(GetDlgItem(hwnd, braceList[braceOrder[j-1]].idCtrl),0);
								if (j > 1)
									EnableWindow(GetDlgItem(hwnd, braceList[braceOrder[j-2]].idCtrl),1);
								braceOrder[j-1] = 0;
								break;
							}
						}
					}
				}
				else {
					for (j=0; j<MAX_BRACES; j++) {
						if (!braceOrder[j]) break;
						EnableWindow(GetDlgItem(hwnd, braceList[braceOrder[j]].idCtrl),0);
					}
				}
			}
			break;

		case IDOK:
			char str2replace[MAX_STRING_LENGTH], replacedString[MAX_STRING_LENGTH];
			int error;
			if (GetWindowTextLength(GetDlgItem(hwnd, IDC_STRING))) {
				GetDlgItemTextA(hwnd, IDC_STRING, str2replace, MAX_STRING_LENGTH);
				switch (stringReplacer(str2replace, replacedString, NULL)) {
				case ERROR_NO_LINE_AFTER_VAR_F:
					mir_snprintf(replacedString, SIZEOF(replacedString), "ERROR: no %s","%line or %wholeline or %lastline after %fn");
					error = 1;
					break;
				case ERROR_LINE_NOT_READ:
					mir_snprintf(replacedString, SIZEOF(replacedString), "ERROR: file couldnt be opened ");
					error = 1;
					break;
				case ERROR_NO_FILE:
					mir_snprintf(replacedString, SIZEOF(replacedString), "ERROR: no file specified in settings");
					error = 1;
					break;
				default:
					error = 0;
				}
				SetDlgItemTextA(hwnd, IDC_ANSWER, replacedString);
			}
		}
		break;		
	}
	return FALSE;
}

INT_PTR testStringReplacer(WPARAM wParam, LPARAM lParam)
{
	CreateDialog(hInst, MAKEINTRESOURCE(IDD_TEST_LINE), 0, TestWindowDlgProc);
	return 0;
}

INT_PTR LoadFilesDlg(WPARAM wParam, LPARAM lParam)
{
	CreateDialog(hInst,MAKEINTRESOURCE(IDD_ADD_FILE),0,DlgProcFiles);
	return 0;
}

/////////////////////////////////////////////////////////////////////////////////////////

static int CALLBACK PropSheetProc(HWND hwnd, UINT uMsg, LPARAM lParam)
{
	if (uMsg == PSCB_PRECREATE) {
		// Remove the DS_CONTEXTHELP style from the
		// dialog box template
		if (((DLGTEMPLATEEX*)lParam)->signature == 0xFFFF)
			((DLGTEMPLATEEX*)lParam)->style &= ~DS_CONTEXTHELP;
		else 
			((LPDLGTEMPLATE)lParam)->style &= ~DS_CONTEXTHELP;

		return TRUE;
	}

	return 0;
}

void DoPropertySheet(HANDLE hContact, HINSTANCE hInst)
{
	char title[256], nick[256];
	PROPSHEETPAGEA psp[4] = { 0 };

	/* contact info */
	psp[0].dwSize = sizeof(PROPSHEETPAGE);
	psp[0].dwFlags = PSP_USEICONID | PSP_USETITLE;
	psp[0].hInstance = hInst;
	psp[0].pszTemplate = MAKEINTRESOURCEA(IDD_CONTACT_INFO);
	psp[0].pszIcon = NULL; 
	psp[0].pfnDlgProc = DlgProcContactInfo;
	psp[0].pszTitle = "Contacts Display Info";
	psp[0].lParam = (LPARAM)hContact;
	psp[0].pfnCallback = NULL;

	/* other settings */
	psp[1].dwSize = sizeof(PROPSHEETPAGE);
	psp[1].dwFlags = PSP_USEICONID | PSP_USETITLE;
	psp[1].hInstance = hInst;
	psp[1].pszTemplate = MAKEINTRESOURCEA(IDD_OTHER_STUFF);
	psp[1].pszIcon = NULL; 
	psp[1].pfnDlgProc = DlgProcOtherStuff;
	psp[1].pszTitle = "Link and CList Settings";
	psp[1].lParam = (LPARAM)hContact;
	psp[1].pfnCallback = NULL;

	/* copy contact */
	psp[2].dwSize = sizeof(PROPSHEETPAGE);
	psp[2].dwFlags = PSP_USEICONID | PSP_USETITLE;
	psp[2].hInstance = hInst;
	psp[2].pszTemplate = MAKEINTRESOURCEA(IDD_CONTACT_COPYEXPORT);
	psp[2].pszIcon = NULL; 
	psp[2].pfnDlgProc = DlgProcCopy;
	psp[2].pszTitle = "Copy Contact";
	psp[2].lParam = (LPARAM)hContact;
	psp[2].pfnCallback = NULL;

	/* files */
	psp[3].dwSize = sizeof(PROPSHEETPAGE);
	psp[3].dwFlags = PSP_USEICONID | PSP_USETITLE;
	psp[3].hInstance = hInst;
	psp[3].pszTemplate = MAKEINTRESOURCEA(IDD_ADD_FILE);
	psp[3].pszIcon = NULL; 
	psp[3].pfnDlgProc = DlgProcFiles;
	psp[3].pszTitle = "Files";
	psp[3].lParam = 0;
	psp[3].pfnCallback = NULL;

	/* propery sheet header.. dont touch !!!! */
	PROPSHEETHEADERA psh = { sizeof(psh) };
	psh.dwFlags = PSH_USEICONID | PSH_PROPSHEETPAGE | PSH_USECALLBACK;
	psh.hInstance = hInst;
	psh.pszIcon = MAKEINTRESOURCEA(IDI_MAIN);
	db_get_static(hContact, MODNAME, "Nick", nick);
	mir_snprintf(title, SIZEOF(title), "Edit Non-IM Contact \"%s\"", nick);
	psh.pszCaption = title;
	psh.nPages = SIZEOF(psp);
	psh.ppsp = (LPCPROPSHEETPAGEA)&psp;
	psh.pfnCallback = PropSheetProc;

	// Now do it and return
	PropertySheetA(&psh);
}

INT_PTR addContact(WPARAM wParam,LPARAM lParam) 
{
	char tmp[256];
	HANDLE hContact = (HANDLE) CallService(MS_DB_CONTACT_ADD, 0, 0);
	CallService(MS_PROTO_ADDTOCONTACT,(WPARAM)hContact,(LPARAM)MODNAME);
	CallService(MS_IGNORE_IGNORE, (WPARAM)hContact, IGNOREEVENT_USERONLINE);
	db_set_s(hContact, MODNAME, "Nick", Translate("New Non-IM Contact"));
	DoPropertySheet(hContact, hInst);
	if (!db_get_static(hContact, MODNAME, "Name", tmp))
		CallService(MS_DB_CONTACT_DELETE,(WPARAM)hContact,0);
	replaceAllStrings(hContact);
	return 0;
}

INT_PTR editContact(WPARAM wParam,LPARAM lParam) 
{
	HANDLE hContact = (HANDLE)wParam;
	char tmp[256];
	if (!hContact) {
		hContact = (HANDLE)CallService(MS_DB_CONTACT_ADD, 0, 0);
		CallService(MS_PROTO_ADDTOCONTACT,(WPARAM)hContact,(LPARAM)MODNAME);
		CallService(MS_IGNORE_IGNORE, (WPARAM)hContact, IGNOREEVENT_USERONLINE);
		db_set_s(hContact, MODNAME, "Nick", Translate("New Non-IM Contact"));
	}
	DoPropertySheet(hContact, hInst);
	if (!db_get_static(hContact, MODNAME, "Name", tmp))
		CallService(MS_DB_CONTACT_DELETE,(WPARAM)hContact,0);
	replaceAllStrings(hContact);
	return 0;
}