Subversion Repositories Kolibri OS

Rev

Rev 7960 | Rev 8020 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7960 Rev 7975
Line 54... Line 54...
54
int real_encoding = CH_CP866;
54
int real_encoding = CH_CP866;
55
int curcol_scheme;
55
int curcol_scheme;
56
int font_size;
56
int font_size;
Line 57... Line 57...
57
 
57
 
-
 
58
bool enable_edit = false;
Line 58... Line 59...
58
bool enable_edit = false;
59
bool search_next = false;
Line 59... Line 60...
59
 
60
 
60
#include "data.h"
61
#include "data.h"
Line 313... Line 314...
313
//                                                   //
314
//                                                   //
314
//===================================================//
315
//===================================================//
Line 315... Line 316...
315
 
316
 
316
bool EventSearchNext()
317
bool EventSearchNext()
317
{
318
{
318
	int new_y = search.find_next(list.first);
319
	int new_y = search.find_next(list.first+1);
319
	if (new_y) {
320
	if (new_y) {
320
		list.first = new_y;
321
		list.first = new_y;
-
 
322
		list.CheckDoesValuesOkey();
321
		list.CheckDoesValuesOkey();
323
		search_next = true;
322
		DrawPage();		
324
		DrawPage();	
323
	}
325
	}
Line 324... Line 326...
324
}
326
}
Line 688... Line 690...
688
	int old_w = list.w;
690
	int old_w = list.w;
689
	DefineAndDrawWindow(Form.left,Form.top,Form.width,Form.height,0x73,0,#title,0);
691
	DefineAndDrawWindow(Form.left,Form.top,Form.width,Form.height,0x73,0,#title,0);
690
	GetProcessInfo(#Form, SelfInfo);
692
	GetProcessInfo(#Form, SelfInfo);
691
	sc.get();
693
	sc.get();
692
	if (Form.status_window>2) return;
694
	if (Form.status_window>2) return;
693
	if (Form.width  < 430) { MoveSize(OLD,OLD,430,OLD); return; }
695
	if (Form.width  < 450) { MoveSize(OLD,OLD,450,OLD); return; }
694
	if (Form.height < 200) { MoveSize(OLD,OLD,OLD,200); return; }
696
	if (Form.height < 200) { MoveSize(OLD,OLD,OLD,200); return; }
Line 695... Line 697...
695
	
697
	
696
	button.init(40);
698
	button.init(40);