Subversion Repositories Kolibri OS

Rev

Rev 4141 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3368 leency 1
//Leency & SoUrcerer, LGPL
2
 
3
#define LIST_INFO_H 59
4
int status_bar_h = 15;
5
 
3412 leency 6
llist mail_list;
7
llist letter_view;
3368 leency 8
scroll_bar scroll1 = { 17,200,210, LIST_INFO_H-3,18,0,115,15,0,0xCCCccc,0xD2CED0,0x555555,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
9
scroll_bar scroll2 = { 17,200,210, LIST_INFO_H,18,0,115,15,0,0xCCCccc,0xD2CED0,0x555555,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
10
 
3413 leency 11
char from[256];
12
char to[256];
13
char date[256];
14
char subj[256];
15
dword mdata;
16
 
3412 leency 17
struct letter_attr
18
{
3413 leency 19
   char adress[sizeof(to)];
20
   char subject[sizeof(subj)];
21
   byte direction;
3412 leency 22
   int size;
3413 leency 23
   void CreateArray();
24
   void SetSizes();
25
   void SetAtrFromCurr(int N);
26
   int  GetSize(int N);
27
   char GetDirection(int N);
28
   dword GetSubject(int N);
29
   dword GetAdress(int N);
3412 leency 30
};
31
letter_attr atr;
32
dword mails_db;
3368 leency 33
 
34
char *listbuffer;
35
char *listpointer;
36
 
37
char *mailbuffer;
38
char *mailpointer;
39
 
40
 
41
enum {
42
	GET_MAIL = 20,
43
	SEND_MAIL,
44
	DELETE_LETTER,
45
	SAVE_LETTER,
46
	STOP_LOADING,
47
	EXIT_MAIL,
48
	CHANGE_CHARSET,
49
	CLOSE_CHANGE_CHARSET
50
};
51
 
52
 
53
void MailBoxLoop()
54
{
55
	int key, id;
56
	mouse m;
57
	int panels_drag = 0;
58
	char socket_char;
59
	int letter_size;
60
	dword line_col, text_col;
61
 
62
	mail_list.h = Form.cheight/4;
63
	mail_list.ClearList();
64
	SetMailBoxStatus( NULL , NULL);
65
	cur_charset = 0;
66
 
67
	goto _MB_DRAW;
68
 
69
	loop()
70
	{
71
		WaitEventTimeout(2);
72
		switch(EAX & 0xFF)
73
		{
74
			case evMouse:
75
				IF (GetProcessSlot(Form.ID)-GetActiveProcess()!=0) break;
76
				m.get();
77
 
78
				if (!m.lkm) panels_drag=0;
79
				if (m.lkm) && (m.y>mail_list.y+mail_list.h-1) && (m.y
80
				&& (!scroll1.delta2) && (!scroll2.delta2) panels_drag = 1;
81
				if (panels_drag)
82
				{
83
					if (m.yForm.cheight-letter_view.min_h-status_bar_h-LIST_INFO_H) break;
84
					mail_list.h = m.y - mail_list.y-2;
85
					DrawMailBox();
86
					break;
87
				}
88
 
89
				if (!mail_list.count) break;
90
				if (!panels_drag) { scrollbar_v_mouse (#scroll1); scrollbar_v_mouse (#scroll2); }
91
 
92
				if (mail_list.first <> scroll1.position)
93
				{
94
					mail_list.first = scroll1.position;
95
					DrawMailList();
96
					break;
97
				};
98
				if (letter_view.first <> scroll2.position)
99
				{
100
					letter_view.first = scroll2.position;
101
					DrawLetter();
102
					break;
103
				};
104
 
105
				if (mail_list.y+mail_list.h + 10 > m.y)
106
				{
107
					if (mail_list.MouseScroll(m.vert)) DrawMailList();
108
				}
109
				else
110
				{
111
					if (letter_view.MouseScroll(m.vert)) DrawLetter();
112
				}
113
 
114
				break;
115
			case evButton:
116
				id = GetButtonID();
117
				if (id==1) SaveAndExit();
118
				if (id==GET_MAIL) aim = SEND_NSTAT;
119
				if (id==SAVE_LETTER)
120
				{
121
					if (!mailbuffer) break;
122
					WriteFile(strlen(mailbuffer), mailbuffer, "mail.txt");
123
					pause(10);
124
					RunProgram("tinypad", "mail.txt");
125
				}
126
				if (id==STOP_LOADING)
127
				{
128
					StopLoading();
129
					DrawStatusBar();
130
					DrawMailList();
131
				}
132
				if (id==EXIT_MAIL)
133
				{
134
					StopLoading();
4139 hidnplayr 135
					Close(socketnum);
3368 leency 136
					LoginBoxLoop();
137
				}
138
				if (id==CHANGE_CHARSET)
139
				{
140
					DefineButton(0,0,Form.cwidth,Form.cheight, CLOSE_CHANGE_CHARSET+BT_HIDE+BT_NOFRAME);
141
					DrawRectangle(Form.cwidth-100, Form.cheight-status_bar_h- 70, 70, 82, sc.work_graph);
142
					DrawRectangle3D(Form.cwidth-99, Form.cheight-status_bar_h- 69, 68, 80, 0xFFFfff, sc.work);
143
					for (id=0; id<5; id++)
144
					{
145
						if (cur_charset==id+1) { line_col=sc.work_button; text_col=sc.work_button_text; }
146
						else { line_col=sc.work; text_col=sc.work_text; }
147
						DrawBar(Form.cwidth-98, id*16+Form.cheight-status_bar_h- 68, 67, 16, line_col);
148
						DrawCaptButton(Form.cwidth-100, id*16+Form.cheight-status_bar_h- 68, 70,16, 10+id+BT_HIDE,
149
						0, text_col, charsets[id+1]);
150
					}
151
				}
152
				if (id==CLOSE_CHANGE_CHARSET) goto _MB_DRAW;
153
 
154
				if (id>=30)
155
				{
156
					if (aim) break;
157
					mail_list.current = mail_list.first + id - 30;
158
					DrawMailList();
159
					aim = SEND_RETR;
160
				}
161
 
162
				break;
163
			case evKey:
164
				key = GetKey();
165
 
4152 leency 166
				if (!aim) && (mail_list.ProcessKey(key))
167
				{
3368 leency 168
					DrawMailList();
169
					aim = SEND_RETR;
170
				}
171
 
172
				break;
173
			case evReDraw: _MB_DRAW:
174
				if !(DefineWindow(MAILBOX_HEADER)) break;
175
				scroll1.bckg_col = scroll2.bckg_col = 0xBBBbbb;
176
				scroll1.frnt_col = scroll2.frnt_col = sc.work;
177
				scroll1.line_col = scroll2.line_col = sc.work_graph;
178
				DrawToolbar();
179
				DrawMailBox();
180
 
181
				break;
182
			default:
183
				if (aim == SEND_NSTAT)
184
				{
185
					debug("Counting mail, awaiting answer...");
186
					request_len = GetRequest("STAT", NULL);
4139 hidnplayr 187
					Send(socketnum, #request, request_len, 0);
3368 leency 188
					if (EAX == 0xffffffff) { debug("Error sending STAT. Retry..."w); break;}
189
					aim = GET_ANSWER_NSTAT;
190
				}
191
 
192
				if (aim == GET_ANSWER_NSTAT)
193
				{
4139 hidnplayr 194
					ticks = Receive(socketnum, #immbuffer, BUFFERSIZE, 0);
195
					if ((ticks == 0xffffff) || (ticks < 2)) break;
196
 
197
					if (immbuffer[ticks-2]=='\n')
3368 leency 198
					{
199
						debug("GOT::");
200
						debug(#immbuffer);
201
						if (strstr(#immbuffer,"+OK"))
202
						{
203
							mail_list.count = GetMailCount();
204
							debug("Letters:");
205
							debug(itoa(mail_list.count));
4141 hidnplayr 206
							free(listbuffer);
3368 leency 207
							listbuffer = mem_Alloc(30*mail_list.count); //24* original
208
							listpointer = listbuffer;
209
							aim = SEND_NLIST;
4139 hidnplayr 210
							debug("Receiving mail list...");
3368 leency 211
						}
212
						else
213
						{
214
							notify("Sorry, can't recieve your mail");
215
							aim=NULL;    //aim = SEND_NLIST;
216
						}
217
					}
218
				}
219
 
220
				if (aim == SEND_NLIST)
221
				{
222
					WriteText(5, Form.cheight-11, 0x80, sc.work_text, "Send LIST, awaiting answer...");
223
					request_len = GetRequest("LIST", NULL);
4139 hidnplayr 224
					Send(socketnum, #request, request_len, 0);
3368 leency 225
					if (EAX == 0xffffffff) {debug("Error while sending LIST. Retry..."); break;}
226
					aim = GET_ANSWER_NLIST;
227
				}
228
 
229
				if (aim == GET_ANSWER_NLIST)
4139 hidnplayr 230
				{
4141 hidnplayr 231
					ticks = Receive(socketnum, listpointer, listbuffer + 30*mail_list.count - listpointer, MSG_DONTWAIT);
232
					if (ticks == 0xffffffff) break;
233
					listpointer = listpointer + ticks;
234
 
235
					if (listpointer - listbuffer < 5) break;
236
					if (strncmp(listpointer-5,"\n.\n",5)==0)  // note that c-- assembles "\n.\n" to 0x0d, 0x0a, 0x2e, 0x0d, 0x0a
237
					{
238
						aim = SEND_RETR;
239
						debug("Got mail list");
240
						DrawMailBox();
241
 
242
						*listpointer='\0';
243
						atr.CreateArray();
244
						atr.SetSizes();
245
					}
3368 leency 246
				}
4139 hidnplayr 247
 
3368 leency 248
				if (aim == SEND_RETR)
249
				{
250
					from = to = date = subj = cur_charset = NULL;
251
					letter_view.ClearList();
252
					DrawMailBox();
253
					debug("Send RETR, awaiting answer...");
254
					request_len = GetRequest("RETR", itoa(mail_list.current+1));
4139 hidnplayr 255
					Send(socketnum, #request, request_len, 0);
3368 leency 256
					if (EAX == 0xffffffff) { notify("Error while trying to get letter from server"); aim=NULL; break;}
257
 
4141 hidnplayr 258
					free(mailbuffer);
3413 leency 259
					letter_size = atr.GetSize(mail_list.current+1) + 1024;
3368 leency 260
					mailbuffer = malloc(letter_size);
4139 hidnplayr 261
					if (!mailbuffer) {debug("alloc error!"); aim=NULL; break;}
3368 leency 262
					mailpointer = mailbuffer;
263
					aim = GET_ANSWER_RETR;
4152 leency 264
					debugi(letter_size);
3368 leency 265
				}
4139 hidnplayr 266
 
3368 leency 267
				if (aim == GET_ANSWER_RETR)
268
				{
4139 hidnplayr 269
					ticks = Receive(socketnum, mailpointer, letter_size + mailbuffer - mailpointer , MSG_DONTWAIT);
4152 leency 270
					debugi(ticks);
4141 hidnplayr 271
					if (ticks == 0xffffffff) break;
4139 hidnplayr 272
					//debugi(EAX);
273
 
274
					mailpointer = mailpointer + ticks;
275
					//*mailpointer='\0';
276
					//debug(mailbuffer);
3368 leency 277
 
4139 hidnplayr 278
					if (!aim) continue;
279
 
280
					if (letter_size + mailbuffer - mailpointer - 2 < 0)
3368 leency 281
					{
4139 hidnplayr 282
						debug("Resizing buffer");
283
						letter_size += 4096;
284
						mailbuffer = realloc(mailbuffer, letter_size);
285
						if (!mailbuffer) {debug("Realloc error!"); aim=NULL; break;}
286
					}
3368 leency 287
 
4139 hidnplayr 288
					if (letter_size>9000)
289
					{
290
						id = mailpointer - mailbuffer * 100 ;
291
						id /= letter_size - 1024;
292
						if (id!=cur_st_percent) SetMailBoxStatus( id , NULL);
293
					}
3368 leency 294
 
4139 hidnplayr 295
					ParseMail();
3368 leency 296
				}
297
 
298
		}
299
	}
300
}
301
 
302
 
303
void DrawMailBox()
304
{
305
	DrawMailList();
306
	DrawLetterInfo();
307
	DrawLetter();
308
	DrawStatusBar();
309
}
310
 
311
 
312
void DrawToolbar()
313
{
314
	#define BUT_Y 7
315
	#define BUT_H 22
316
	#define BUT_W 74
317
	#define BUT_SPACE 11
318
	int toolbar_w = BUT_Y + BUT_H + BUT_Y + 3;
319
	mail_list.SetSizes(0, toolbar_w, Form.cwidth - scroll1.size_x - 1, mail_list.h, 60,18);
320
 
321
	DrawBar(0,0, Form.cwidth,toolbar_w-3, sc.work);
3412 leency 322
	DrawCaptButton(10                    , BUT_Y, BUT_W, BUT_H, GET_MAIL,      sc.work_button, sc.work_button_text,"Get mail");
323
	DrawCaptButton(BUT_W+BUT_SPACE   + 10, BUT_Y, BUT_W, BUT_H, SEND_MAIL,     sc.work_button, sc.work_button_text,"Send Email");
324
	DrawCaptButton(BUT_W+BUT_SPACE*2 + 10, BUT_Y, BUT_W, BUT_H, DELETE_LETTER, sc.work_button, sc.work_button_text,"Delete");
325
	DrawCaptButton(BUT_W+BUT_SPACE*3 + 10, BUT_Y, BUT_W, BUT_H, SAVE_LETTER,   sc.work_button, sc.work_button_text,"Save");
326
	DrawCaptButton(Form.cwidth-BUT_W - 10, BUT_Y, BUT_W, BUT_H, EXIT_MAIL,     sc.work_button, sc.work_button_text,"< Exit");
3368 leency 327
 
328
	DrawBar(0, mail_list.y-3, mail_list.w,1, sc.work_graph);
329
	DrawBar(0, mail_list.y-2, mail_list.w,1, 0xdfdfdf);
330
	DrawBar(0, mail_list.y-1, mail_list.w,1, 0xf0f0f0);
331
}
332
 
333
void DrawMailList()
334
{
3413 leency 335
	int i, on_y, on_x, direction;
4152 leency 336
	dword sel_col;
3368 leency 337
	mail_list.visible = mail_list.h / mail_list.line_h;
338
 
339
	for (i=30; i<150; i++) DeleteButton(i);
340
	for (i=0; (i
341
	{
342
		on_y = i*mail_list.line_h + mail_list.y;
4152 leency 343
		if (mail_list.current==mail_list.first+i) sel_col=0xEEEeee; else sel_col=0xFFFfff;
344
		DrawBar(0, on_y, mail_list.w, mail_list.line_h-1, sel_col);
3413 leency 345
		direction = atr.GetDirection(i+mail_list.first+1);
346
		on_x = strlen(itoa(i+mail_list.first+1))*6;
4152 leency 347
		letter_icons_pal[0]=sel_col;
348
		PutPaletteImage(sizeof(letter_icons)/3*direction + #letter_icons, 18,12, on_x+18,
349
			mail_list.line_h-12/2+ on_y, 8, #letter_icons_pal);
3413 leency 350
		WriteText(on_x + 42, on_y+5, 0x80, 0, atr.GetSubject(i+mail_list.first+1));
3368 leency 351
		DefineButton(0, on_y, mail_list.w-1, mail_list.line_h, 30+i+BT_HIDE+BT_NOFRAME);
352
		DrawBar(0, on_y + mail_list.line_h-1, mail_list.w, 1, 0xCCCccc);
353
		WriteText(10, on_y+5, 0x80, 0, itoa(i+mail_list.first+1));
3413 leency 354
		WriteText(mail_list.w - 40, on_y+5, 0x80, 0, ConvertMemSize(atr.GetSize(i+mail_list.first+1)));
3368 leency 355
	}
356
	DrawBar(0, i*mail_list.line_h + mail_list.y, mail_list.w, -i*mail_list.line_h+mail_list.h, 0xFFFfff);
357
	DrawScroller1();
358
}
359
 
360
void DrawLetterInfo()
361
{
362
	int lt_y = mail_list.y+mail_list.h;
363
	DrawBar(0, lt_y, mail_list.w, 1, sc.work_graph);
364
	DrawBar(0, lt_y+1, Form.cwidth, 1, LBUMP);
365
	DrawBar(0, lt_y+2, Form.cwidth, LIST_INFO_H-4, sc.work);
366
	WriteText(mail_list.w-30/2, lt_y, 0x80, 0x888888, "= = =");
367
	WriteText(mail_list.w-30/2, lt_y+1, 0x80, 0xEeeeee, "= = =");
368
	DrawBar(0, lt_y+LIST_INFO_H-2, mail_list.w, 1, sc.work_graph); //bottom
369
	DrawBar(0, lt_y+LIST_INFO_H-1, mail_list.w, 1, 0xdfdfdf);
370
	DrawBar(0, lt_y+LIST_INFO_H  , mail_list.w, 1, 0xf0f0f0);
371
	WriteTextB(10, lt_y+8 , 0x80, sc.work_text, "From:");
3413 leency 372
	WriteText (45, lt_y+8 , 0x80, sc.work_text, #from);
373
	WriteTextB(10, lt_y+20, 0x80, sc.work_text, "To:");
374
	WriteText (45, lt_y+20, 0x80, sc.work_text, #to);
3368 leency 375
	WriteTextB(10, lt_y+32, 0x80, sc.work_text, "Date:");
3413 leency 376
	WriteText (45, lt_y+32, 0x80, sc.work_text, #date);
3368 leency 377
	WriteTextB(10, lt_y+44, 0x80, sc.work_text, "Subject:");
3413 leency 378
	WriteText (66, lt_y+44, 0x80, sc.work_text, #subj);
3368 leency 379
}
380
 
381
void DrawLetter()
382
{
383
	int i=0;
384
	dword cur_line, next_line, line_text;
385
	cur_line = mdata;
386
 
387
	letter_view.SetSizes(0, mail_list.y+mail_list.h+LIST_INFO_H+1, Form.cwidth - scroll2.size_x - 1,
388
		Form.cheight - mail_list.y - mail_list.h - LIST_INFO_H - 1 - status_bar_h, 60, 12);
389
 
390
	if (mailbuffer) && (!aim)
391
	{
392
		for ( ; i < letter_view.first; i++) cur_line = GetNextLine(cur_line);
393
 
394
		for (i=0; i < letter_view.h / letter_view.line_h; i++)
395
		{
396
			next_line = GetNextLine(cur_line);
397
			line_text = CopyBetweenOffsets(cur_line, next_line);
398
			cur_line = next_line;
399
			if (cur_line >= mailpointer) || (cur_line==1) break;
400
			DrawBar(letter_view.x, i*letter_view.line_h + letter_view.y, letter_view.w, letter_view.line_h, 0xFFFfff);
401
			if (line_text) { WriteText(letter_view.x+5, i*letter_view.line_h+letter_view.y+3, 0x80, 0, line_text); free(line_text);}
402
		}
403
	}
404
	DrawBar(letter_view.x, i*letter_view.line_h + letter_view.y, letter_view.w, -i*letter_view.line_h + letter_view.h-1, 0xFFFfff);
405
	DrawBar(letter_view.x, letter_view.y + letter_view.h-1, letter_view.w, 1, sc.work_graph);
406
	DrawScroller2();
407
}
408
 
409
void DrawScroller1()
410
{
411
	scroll1.max_area = mail_list.count;
412
	scroll1.cur_area = mail_list.visible;
413
	scroll1.position = mail_list.first;
414
 
415
	scroll1.all_redraw=1;
416
	scroll1.start_x = mail_list.x + mail_list.w;
417
	scroll1.start_y = mail_list.y - 3;
418
	scroll1.size_y = mail_list.h + 4;
419
	scrollbar_v_draw(#scroll1);
420
}
421
 
422
void DrawScroller2()
423
{
424
	scroll2.max_area = letter_view.count;
425
	scroll2.cur_area = letter_view.visible;
426
	scroll2.position = letter_view.first;
427
 
428
	scroll2.all_redraw=1;
429
	scroll2.start_x = letter_view.x + letter_view.w;
430
	scroll2.start_y = letter_view.y - 3;
431
	scroll2.size_y = letter_view.h + 3;
432
	scrollbar_v_draw(#scroll2);
433
}
434
 
435
 
436
 
437
void DrawStatusBar()
438
{
439
	int st_y = Form.cheight -status_bar_h;
440
	DrawBar(0, st_y, Form.cwidth, status_bar_h, sc.work);
441
	if (aim) {
442
		SetMailBoxStatus(cur_st_percent, cur_st_text);
443
		DrawCaptButton(240, st_y+1, 36, status_bar_h-3, STOP_LOADING, sc.work_button, sc.work_button_text,"Stop");
444
	}
445
	DrawCaptButton(Form.cwidth - 100, st_y+1, 70, status_bar_h-2, CHANGE_CHARSET+BT_HIDE, sc.work, sc.work_text,charsets[cur_charset]);
446
}
447
 
448
 
449
 
450
void SetMailBoxStatus(dword percent1, text1)
451
{
452
	DrawProgressBar(3, Form.cheight -status_bar_h + 1, 220, 12, sc.work, 0xC3C3C3, 0x54B1D6, sc.work_text, percent1, text1);
453
	cur_st_percent = percent1;
454
	cur_st_text = text1;
455
}
456
 
457
 
458
void StopLoading()
459
{
460
	aim = NULL;
461
	mailbuffer = free(mailbuffer);
462
	to = from = date = subj = cur_charset = NULL;
463
}
464
 
465
int GetMailCount(){
466
	char tmpbuf4[512];
467
	strcpyb(#immbuffer, #tmpbuf4, "+OK ", " ");
468
	return atoi(#tmpbuf4);
469
}
470
 
471
 
472
 
473
int GetLetterSize_(int number){
4141 hidnplayr 474
	char search_num[24];
3368 leency 475
	char letter_size1[24];
4141 hidnplayr 476
	strcpy(#search_num, "\n");			// 0x0d, 0x0a
477
	strcat(#search_num, itoa(number));
478
	strcat(#search_num, " ");
479
	strcpyb(listbuffer, #letter_size1, #search_num, "\x0d");
3368 leency 480
	return atoi(#letter_size1);
481
}
482
 
483
 
3413 leency 484
void letter_attr::CreateArray()
3368 leency 485
{
4141 hidnplayr 486
	free(mails_db);
3412 leency 487
	mails_db = malloc( mail_list.count * sizeof(atr) );
3368 leency 488
}
489
 
3413 leency 490
void letter_attr::SetSizes()
3368 leency 491
{
3413 leency 492
	int i;
4141 hidnplayr 493
	for (i=1; i < mail_list.count; i++)
3368 leency 494
	{
3412 leency 495
		ESDWORD[sizeof(atr)*i+#mails_db+#atr.size-#atr] = GetLetterSize_(i);
3413 leency 496
		ESDWORD[sizeof(atr)*i+#mails_db+#atr.subject-#atr] = ' ';
497
		ESDWORD[sizeof(atr)*i+#mails_db+#atr.subject-#atr+1] = '\0';
3368 leency 498
	}
499
}
500
 
3413 leency 501
void letter_attr::SetAtrFromCurr(int N)
3368 leency 502
{
3413 leency 503
	byte mail_direction=0;
504
	if (strstri(#to, #email_text))
505
	{
506
		mail_direction = 1;
507
		strcpy(sizeof(atr)*N+#mails_db+#atr.adress-#atr, #from);
508
	}
509
	if (strstri(#from, #email_text))
510
	{
511
		mail_direction = 2;
512
		strcpy(sizeof(atr)*N+#mails_db+#atr.adress-#atr, #to);
513
	}
514
	ESBYTE[sizeof(atr)*N+#mails_db+#atr.direction-#atr] = mail_direction;
515
	strcpy(sizeof(atr)*N+#mails_db+#atr.subject-#atr, #subj);
516
}
517
 
518
int letter_attr::GetSize(int N) { return ESDWORD[sizeof(atr)*N+#mails_db+#atr.size-#atr]; }
519
char letter_attr::GetDirection(int N) { return ESBYTE[sizeof(atr)*N+#mails_db+#atr.direction-#atr]; }
520
dword letter_attr::GetSubject(int N) { return sizeof(atr)*N+#mails_db+#atr.subject-#atr; }
521
dword letter_attr::GetAdress(int N) { return sizeof(atr)*N+#mails_db+#atr.adress-#atr; }
522