Subversion Repositories Kolibri OS

Rev

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

Rev 6641 Rev 6678
Line 7... Line 7...
7
 
7
 
8
//edit_boxes at LoginPanel 
8
//edit_boxes at LoginPanel 
9
int	mouse_dd;
9
int	mouse_dd;
10
unsigned char email_text[128];
10
unsigned char email_text[128];
11
unsigned char pass_text[32];
11
unsigned char pass_text[32];
12
edit_box login_box= {PANEL_W-6,207,16,0xffffff,0x94AECE,0xffffff,0xffffff,0,sizeof(email_text)+2,#email_text,#mouse_dd,0b10};
12
edit_box login_box= {PANEL_W-6,207,16,0xffffff,0x94AECE,0xffffff,0xffffff,0x10000000,sizeof(email_text)+2,#email_text,#mouse_dd,0b10};
Line 13... Line 13...
13
edit_box pass_box= {PANEL_W-6,207,16,0xffffff,0x94AECE,0xffffff,0xffffff,0,sizeof(pass_text)+2,#pass_text,#mouse_dd,0b1};
13
edit_box pass_box= {PANEL_W-6,207,16,0xffffff,0x94AECE,0xffffff,0xffffff,0x10000000,sizeof(pass_text)+2,#pass_text,#mouse_dd,0b1};
14
 
14
 
15
 
15
 
Line 178... Line 178...
178
	panel_x = Form.cwidth - PANEL_W /2;
178
	panel_x = Form.cwidth - PANEL_W /2;
179
	panel_y = Form.cheight - PANEL_H /2 - 5;
179
	panel_y = Form.cheight - PANEL_H /2 - 5;
Line 180... Line 180...
180
 
180
 
Line 181... Line 181...
181
	DrawBar(0,0, Form.cwidth, Form.cheight, system.color.work);
181
	DrawBar(0,0, Form.cwidth, Form.cheight, system.color.work);
182
	
182
	
183
	WriteText(panel_x,panel_y,0x80,system.color.work_text,"Your Email:");
183
	WriteText(panel_x,panel_y-3,0x80,system.color.work_text,"Your Email:");
184
	login_box.left = panel_x+3;
184
	login_box.left = panel_x+3;
Line 185... Line 185...
185
	login_box.top = panel_y+15;
185
	login_box.top = panel_y+12;
186
	DrawEditBox(#login_box);
186
	DrawEditBox(#login_box);
187
	
187
	
188
	WriteText(panel_x,panel_y+40,0x80,system.color.work_text,"Password:");
188
	WriteText(panel_x,panel_y+45,0x80,system.color.work_text,"Password:");
Line 189... Line 189...
189
	pass_box.left = panel_x+3;
189
	pass_box.left = panel_x+3;
190
	pass_box.top = panel_y+55;
190
	pass_box.top = panel_y+60;
191
	DrawEditBox(#pass_box);
191
	DrawEditBox(#pass_box);
192
	
192
	
193
	if (!aim)
193
	if (!aim)
194
	{
194
	{
Line 195... Line 195...
195
		DrawCaptButton(panel_x,panel_y+90,100,22,11,system.color.work_button, system.color.work_button_text,"Settings");
195
		DrawCaptButton(panel_x,panel_y+100,100,26,11,system.color.work_button, system.color.work_button_text,"Settings");
196
		DrawCaptButton(panel_x+120,panel_y+90,100,22,12,system.color.work_button, system.color.work_button_text,"Enter >");
196
		DrawCaptButton(panel_x+120,panel_y+100,100,26,12,system.color.work_button, system.color.work_button_text,"Enter >");