Subversion Repositories Kolibri OS

Rev

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

Rev 5620 Rev 5674
Line 104... Line 104...
104
					goto EXIT_SETTING;
104
					goto EXIT_SETTING;
105
				}
105
				}
106
				break;
106
				break;
Line 107... Line 107...
107
				
107
				
108
			case evReDraw:
108
			case evReDraw:
109
				DefineAndDrawWindow(Form.left + Form.width/2, Form.top + Form.height/2 - 75, 300, 234+GetSkinHeight(),0x34,sc.work,TITLE_SETT);
109
				DefineAndDrawWindow(Form.left + Form.width/2, Form.top + Form.height/2 - 75, 300, 234+GetSkinHeight(),0x34,system.color.work,TITLE_SETT);
110
				GetProcessInfo(#settings_form, SelfInfo);
110
				GetProcessInfo(#settings_form, SelfInfo);
111
				DrawSettingsCheckBoxes();
111
				DrawSettingsCheckBoxes();
112
				DrawFlatButton(9, 166, strlen(EDIT_FILE_ASSOCIATIONS)+4*6, 22, 5, 0xE4DFE1, EDIT_FILE_ASSOCIATIONS);
112
				DrawFlatButton(9, 166, strlen(EDIT_FILE_ASSOCIATIONS)+4*6, 22, 5, 0xE4DFE1, EDIT_FILE_ASSOCIATIONS);
113
				DrawFlatButton(128, settings_form.cheight - 30, 70, 22, 10, 0xE4DFE1, APPLY_T);
113
				DrawFlatButton(128, settings_form.cheight - 30, 70, 22, 10, 0xE4DFE1, APPLY_T);
Line 120... Line 120...
120
{
120
{
121
	CheckBox2(10, 11, 20, SHOW_DEVICE_CLASS,  show_dev_name);
121
	CheckBox2(10, 11, 20, SHOW_DEVICE_CLASS,  show_dev_name);
122
	CheckBox2(10, 33, 21, SHOW_REAL_NAMES,  real_files_names_case);
122
	CheckBox2(10, 33, 21, SHOW_REAL_NAMES,  real_files_names_case);
123
	CheckBox2(10, 55, 22, NOTIFY_COPY_END,  info_after_copy);
123
	CheckBox2(10, 55, 22, NOTIFY_COPY_END,  info_after_copy);
124
	CheckBox2(10, 77, 23, USE_BIG_FONTS,  use_big_fonts); 
124
	CheckBox2(10, 77, 23, USE_BIG_FONTS,  use_big_fonts); 
125
	MoreLessBox(10, 104, 18, 25, 26, #sc, files.line_h, LIST_LINE_HEIGHT);
125
	MoreLessBox(10, 104, 18, 25, 26, #system.color, files.line_h, LIST_LINE_HEIGHT);
126
	MoreLessBox(10, 134, 18, 27, 28, #sc, MOUSE_TIME, T_DOUBLE_CLICK);
126
	MoreLessBox(10, 134, 18, 27, 28, #system.color, MOUSE_TIME, T_DOUBLE_CLICK);
127
}
127
}
Line 128... Line 128...
128
 
128
 
129
 
129
 
Line 174... Line 174...
174
}
174
}
Line 175... Line 175...
175
 
175
 
176
 
176
 
177
void SetAppColors()
177
void SetAppColors()
178
{
178
{
179
	sc.work = 0xE4DFE1;
179
	system.color.work = 0xE4DFE1;
180
	sc.work_text = 0;
180
	system.color.work_text = 0;
181
	sc.work_graph  = 0x9098B0; //A0A0B8; //0x819FC5;
181
	system.color.work_graph  = 0x9098B0; //A0A0B8; //0x819FC5;
182
	sc.work_button = 0xD2D3D3;
182
	system.color.work_button = 0xD2D3D3;
183
	sc.work_button_text = 0x000000;
183
	system.color.work_button_text = 0x000000;
184
	col_padding = 0xC8C9C9;
184
	col_padding = 0xC8C9C9;
185
	//col_selec   = 0x94AECE;
185
	//col_selec   = 0x94AECE;
Line 186... Line 186...
186
	col_lpanel  = 0x00699C;
186
	col_lpanel  = 0x00699C;
187
}
187
}
188
 
188
 
189
 
189