Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4078 leency 1
//11.03.12 - start!
8261 leency 2
//ver 2.31
4078 leency 3
 
4085 leency 4
#ifndef AUTOBUILD
5
	?include "lang.h--"
6
#endif
7
 
7660 leency 8
#define MEMSIZE 200*1024
7909 leency 9
#include "../lib/mem.h"
10
#include "../lib/strings.h"
11
#include "../lib/io.h"
12
#include "../lib/list_box.h"
13
#include "../lib/obj/libimg.h"
14
#include "../lib/gui.h"
7353 leency 15
 
7909 leency 16
#include "../lib/obj/box_lib.h"
17
#include "../lib/obj/proc_lib.h"
18
#include "../lib/obj/libini.h"
7353 leency 19
 
7909 leency 20
#include "../lib/patterns/select_list.h"
21
#include "../lib/patterns/simple_open_dialog.h"
4078 leency 22
 
7614 leency 23
#include "ui_elements_preview.h"
24
 
6212 leency 25
//===================================================//
26
//                                                   //
27
//                       DATA                        //
28
//                                                   //
29
//===================================================//
30
 
4085 leency 31
#ifdef LANG_RUS
6212 leency 32
	?define WINDOW_HEADER "Настройки оформления"
7909 leency 33
	?define T_SKINS       "   Стиль окон"
34
	?define T_WALLPAPERS  "   Обои"
7353 leency 35
	?define T_SELECT_FOLDER "Выбрать папку"
7778 leency 36
	?define MENU_LIST "Открыть файл   |Enter\nУдалить файл     |Del"
7611 leency 37
	?define T_PICTURE_MODE " Положение картинки "
38
	?define T_CHECKBOX_STRETCH "Растянуть"
39
	?define T_CHECKBOX_TILED "Замостить"
7612 leency 40
	?define T_UPDATE_DOCK "Обновлять Dock-панель"
4085 leency 41
#else
42
	?define WINDOW_HEADER "Appearance"
7909 leency 43
	?define T_SKINS       "   Skins"
44
	?define T_WALLPAPERS  "   Wallpapers"
7611 leency 45
	?define T_SELECT_FOLDER "Select folder"
7778 leency 46
	?define MENU_LIST "Open file      |Enter\nDelete file      |Del"
7611 leency 47
	?define T_PICTURE_MODE " Picture Mode "
48
	?define T_CHECKBOX_STRETCH "Stretch"
49
	?define T_CHECKBOX_TILED "Tiled"
7612 leency 50
	?define T_UPDATE_DOCK "Update Dock"
4085 leency 51
#endif
4078 leency 52
 
6212 leency 53
#define PANEL_H 40
7225 leency 54
#define LP 10 //LIST_PADDING
7594 leency 55
char skins_folder_path[4096];
56
char wallp_folder_path[4096];
4078 leency 57
 
6264 leency 58
signed int active_skin=-1, active_wallpaper=-1;
7353 leency 59
enum {
7909 leency 60
	BASE_TAB_BUTTON_ID=2,
61
	BTN_SELECT_WALLP_FOLDER=10 };
4078 leency 62
 
63
char folder_path[4096];
64
char cur_file_path[4096];
7551 leency 65
char cur_skin_path[4096];
4078 leency 66
char temp_filename[4096];
6096 leency 67
int files_mas[400];
4078 leency 68
 
69
int cur;
70
 
71
proc_info Form;
7244 leency 72
block skp;
4078 leency 73
 
7909 leency 74
enum {SKINS, WALLPAPERS};
7225 leency 75
 
7909 leency 76
_tabs tabs = { LP, LP, NULL, BASE_TAB_BUTTON_ID };
77
 
7612 leency 78
checkbox update_docky = { T_UPDATE_DOCK, false };
7244 leency 79
 
7353 leency 80
char default_dir[] = "/rd/1";
81
od_filter filter2 = { 8, "TXT\0\0" };
82
 
7611 leency 83
checkbox optionbox_stretch = { T_CHECKBOX_STRETCH, true };
84
checkbox optionbox_tiled = { T_CHECKBOX_TILED, false };
85
 
6212 leency 86
//===================================================//
87
//                                                   //
88
//                       CODE                        //
89
//                                                   //
90
//===================================================//
5548 leency 91
 
7594 leency 92
void GetRealFolderPathes()
93
{
94
	char real_skin_path[4096];
95
	SetCurDir("/kolibrios");
96
	GetCurDir(#real_skin_path, sizeof(real_skin_path));
97
	sprintf(#skins_folder_path, "%s/res/skins", #real_skin_path);
98
	sprintf(#wallp_folder_path, "%s/res/wallpapers", #real_skin_path);
99
}
100
 
4078 leency 101
void main()
102
{
7909 leency 103
	int id;
4078 leency 104
 
7594 leency 105
	GetRealFolderPathes();
106
 
5626 leency 107
	load_dll(boxlib, #box_lib_init,0);
7533 leency 108
	load_dll(libini, #lib_init,1);
7909 leency 109
	load_dll(libimg, #libimg_init,1);
7353 leency 110
	load_dll(Proc_lib, #OpenDialog_init,0);
111
	o_dialog.type = 2; //select folder
112
	OpenDialog_init stdcall (#o_dialog);
113
 
7909 leency 114
	tabs.add(T_SKINS, #EventTabSkinsClick);
115
	tabs.add(T_WALLPAPERS, #EventTabWallpappersClick);
116
	tabs.draw_active_tab();
7353 leency 117
 
7551 leency 118
	SetEventMask(EVM_REDRAW + EVM_KEY + EVM_BUTTON + EVM_MOUSE + EVM_MOUSE_FILTER);
6096 leency 119
	loop() switch(WaitEvent())
4078 leency 120
	{
121
	  	case evMouse:
6653 leency 122
			SelectList_ProcessMouse();
4410 leency 123
 
7353 leency 124
			if (tabs.active_tab == SKINS) {
125
				edit_box_mouse stdcall (#edit_cmm);
126
				edit_box_mouse stdcall (#edit_st);
127
			}
128
 
7778 leency 129
	  		if (mouse.key&MOUSE_RIGHT) && (mouse.up)
130
	  		&&(select_list.MouseOver(mouse.x, mouse.y)) {
6651 leency 131
	  			select_list.ProcessMouse(mouse.x, mouse.y);
6653 leency 132
				SelectList_Draw();
7353 leency 133
				EventSetNewCurrent();
8020 leency 134
	  			open_lmenu(mouse.x, mouse.y, MENU_TOP_RIGHT, NULL, MENU_LIST);
6212 leency 135
	  		}
4078 leency 136
	  		break;
137
 
138
		case evButton:
139
			id=GetButtonID();
7551 leency 140
			if (id==1) EventExit();
7353 leency 141
			if (id==BTN_SELECT_WALLP_FOLDER) EventSelectWallpFolder();
7909 leency 142
			tabs.click(id);
7244 leency 143
			checkbox1.click(id);
7252 leency 144
			spinbox1.click(id);
7612 leency 145
			if (update_docky.click(id)) EventUpdateDocky();
7611 leency 146
			if (!optionbox_stretch.checked) && (optionbox_stretch.click(id)) EventSetWallpMode_Stretch();
147
			if (!optionbox_tiled.checked) && (optionbox_tiled.click(id)) EventSetWallpMode_Tiled();
4078 leency 148
			break;
149
 
150
		case evKey:
5706 leency 151
			GetKeys();
6651 leency 152
			if (select_list.ProcessKey(key_scancode)) EventApply();
6212 leency 153
			if (key_scancode==SCAN_CODE_ENTER) EventOpenFile();
7909 leency 154
			if (key_scancode==SCAN_CODE_TAB) tabs.click(tabs.active_tab ^ 1);
6212 leency 155
			if (key_scancode==SCAN_CODE_DEL) EventDeleteFile();
7349 leency 156
 
7506 leency 157
			if (! edit_cmm.flags & ed_focus) && (! edit_st.flags & ed_focus)
6651 leency 158
			for (id=select_list.cur_y+1; id
4078 leency 159
			{
6212 leency 160
				strcpy(#temp_filename, io.dir.position(files_mas[id]));
161
				if (temp_filename[0]==key_ascii) || (temp_filename[0]==key_ascii-32)
162
				{
6651 leency 163
					select_list.cur_y = id - 1;
164
					select_list.KeyDown();
6212 leency 165
					EventApply();
166
					break;
167
				}
4078 leency 168
			}
7349 leency 169
 
7353 leency 170
			if (tabs.active_tab == SKINS) {
171
				EAX = key_ascii << 8;
172
				edit_box_key stdcall (#edit_cmm);
173
				edit_box_key stdcall (#edit_st);
174
			}
4078 leency 175
			break;
176
 
7353 leency 177
		 case evReDraw:
178
			draw_window();
7778 leency 179
	 		EventHandleMenuClick();
4078 leency 180
   }
181
}
182
 
7353 leency 183
void draw_window()
184
{
7909 leency 185
	sc.get();
7806 leency 186
	DefineAndDrawWindow(screen.width-600/2,80,630,504+skin_height,0x34,sc.work,WINDOW_HEADER,0);
7353 leency 187
	GetProcessInfo(#Form, SelfInfo);
8946 leency 188
	IF (Form.status_window&ROLLED_UP) return;
7353 leency 189
	DrawWindowContent();
190
}
7244 leency 191
 
6212 leency 192
void DrawWindowContent()
193
{
194
	int id;
7353 leency 195
	int list_w;
7225 leency 196
 
7806 leency 197
	sc.get();
7612 leency 198
 
7611 leency 199
	if (tabs.active_tab == SKINS) list_w=250; else list_w=350;
7353 leency 200
 
7225 leency 201
	tabs.w = Form.cwidth-LP-LP;
7909 leency 202
	tabs.draw();
203
	DrawIcon16(tabs.x + TAB_PADDING, 15, sc.work, 17);
204
	DrawIcon16(strlen(T_SKINS)*8 + tabs.x + TAB_PADDING + TAB_PADDING, 15, sc.work, 6);
7225 leency 205
 
6651 leency 206
	id = select_list.cur_y;
6653 leency 207
	SelectList_Init(
7225 leency 208
		tabs.x+TAB_PADDING,
209
		tabs.y+TAB_HEIGHT+TAB_PADDING,
7353 leency 210
		list_w,
8933 leency 211
		Form.cheight-LP-LP - TAB_PADDING - TAB_PADDING - TAB_HEIGHT
6653 leency 212
		);
6651 leency 213
	select_list.cur_y = id;
7244 leency 214
 
215
	skp.set_size(
7252 leency 216
		select_list.x + select_list.w + TAB_PADDING + scroll1.size_x + 20,
7612 leency 217
		select_list.y + 30 + 50,
7353 leency 218
		list_w,
7612 leency 219
		230 //select_list.h - 50 - 50
7244 leency 220
	);
221
 
6653 leency 222
	SelectList_Draw();
6662 leency 223
	SelectList_DrawBorder();
7806 leency 224
	//DrawWideRectangle(0, 0, Form.cwidth, Form.cheight, LP, sc.work);
7244 leency 225
 
226
	if (tabs.active_tab == SKINS)
227
	{
7612 leency 228
		update_docky.draw(skp.x, select_list.y+15);
7244 leency 229
		DrawFrame(skp.x, skp.y, skp.w, skp.h, " Components Preview ");
7614 leency 230
		DrawUiElementsPreview(skp.x+20, skp.y, skp.h);
7244 leency 231
	}
7353 leency 232
	if (tabs.active_tab == WALLPAPERS)
233
	{
7611 leency 234
		skp.x -= TAB_PADDING + 3;
235
		DrawStandartCaptButton(skp.x, select_list.y, BTN_SELECT_WALLP_FOLDER, T_SELECT_FOLDER);
236
		DrawFrame(skp.x, select_list.y+50, 180, 80, T_PICTURE_MODE);
237
		optionbox_stretch.draw(skp.x+14, select_list.y+70);
238
		optionbox_tiled.draw(skp.x+14, select_list.y+97);
7353 leency 239
	}
6212 leency 240
}
241
 
4410 leency 242
 
6212 leency 243
void Open_Dir()
4078 leency 244
{
6212 leency 245
	int j;
6651 leency 246
	select_list.count = 0;
6212 leency 247
	if(io.dir.buffer)free(io.dir.buffer);
248
	io.dir.load(#folder_path,DIR_ONLYREAL);
249
	for (j=0; j
4410 leency 250
	{
6212 leency 251
		strcpy(#temp_filename, io.dir.position(j));
252
		strlwr(#temp_filename);
7353 leency 253
		if (tabs.active_tab==SKINS) {
254
			if (strcmpi(#temp_filename+strlen(#temp_filename)-4,".skn")!=0) continue;
255
		}
256
		if (tabs.active_tab==WALLPAPERS) {
257
			if (strcmpi(#temp_filename+strlen(#temp_filename)-4,".png")!=0)
258
			&& (strcmpi(#temp_filename+strlen(#temp_filename)-4,".jpg")!=0)
259
			&& (strcmpi(#temp_filename+strlen(#temp_filename)-5,".jpeg")!=0)
260
			&& (strcmpi(#temp_filename+strlen(#temp_filename)-4,".gif")!=0) continue;
261
		}
6651 leency 262
		cur = select_list.count;
6212 leency 263
		files_mas[cur]=j;
6651 leency 264
		select_list.count++;
4410 leency 265
	}
8261 leency 266
	Sort_by_Name(0, select_list.count-1);
6212 leency 267
}
268
 
8261 leency 269
void Sort_by_Name(int a, b) // for the first call: a = 0, b = sizeof(mas) - 1
270
{
271
	int j;
272
	int isn = a;
273
	if (a >= b) return;
274
	for (j = a; j <= b; j++) {
275
		if (strcmpi(io.dir.position(files_mas[j]), io.dir.position(files_mas[b]))<=0) {
276
			files_mas[isn] >< files_mas[j];
277
			isn++;
278
		}
279
	}
280
	Sort_by_Name(a, isn-2);
281
	Sort_by_Name(isn, b);
282
}
283
 
6653 leency 284
void SelectList_DrawLine(dword i)
6212 leency 285
{
8762 leency 286
	int yyy;
6212 leency 287
 
6651 leency 288
	cur = select_list.first + i;
289
	strcpy(#temp_filename, io.dir.position(files_mas[cur]));
290
	temp_filename[strlen(#temp_filename)-4] = 0;
291
	yyy = i*select_list.item_h+select_list.y;
292
 
293
	if (select_list.cur_y-select_list.first==i)
4410 leency 294
	{
7806 leency 295
		DrawBar(select_list.x, yyy, select_list.w, select_list.item_h, sc.button);
296
		WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,sc.button_text, #temp_filename);
4410 leency 297
	}
6651 leency 298
	else
299
	{
300
		DrawBar(select_list.x,yyy,select_list.w, select_list.item_h, 0xFFFfff);
301
		WriteText(select_list.x+12,yyy+select_list.text_y,select_list.font_type,0, #temp_filename);
302
	}
4078 leency 303
}
304
 
6653 leency 305
void SelectList_LineChanged()
306
{
307
	EventApply();
308
}
309
 
7960 leency 310
void ActivateTab(int _id)
311
{
312
	select_list.ClearList();
313
	Open_Dir();
314
	if (!select_list.count) notify("'No files were found' -E");
315
	select_list.cur_y = _id;
316
	if (select_list.cur_y>select_list.visible) select_list.first=select_list.cur_y;
317
	select_list.CheckDoesValuesOkey();
318
	if (select_list.w) draw_window();
319
}
320
 
6212 leency 321
//===================================================//
322
//                                                   //
323
//                     EVENTS                        //
324
//                                                   //
325
//===================================================//
4078 leency 326
 
7909 leency 327
void EventTabSkinsClick()
4085 leency 328
{
7909 leency 329
	active_wallpaper = select_list.cur_y;
330
	strcpy(#folder_path, #skins_folder_path);
7960 leency 331
	ActivateTab(active_skin);
6212 leency 332
}
4078 leency 333
 
7909 leency 334
void EventTabWallpappersClick()
335
{
336
	active_skin = select_list.cur_y;
337
	strcpy(#folder_path, #wallp_folder_path);
7960 leency 338
	ActivateTab(active_wallpaper);
7909 leency 339
}
340
 
6212 leency 341
void EventDeleteFile()
342
{
343
	io.del(#cur_file_path);
344
	Open_Dir();
345
	EventApply();
346
}
4078 leency 347
 
7353 leency 348
void EventSetNewCurrent()
349
{
350
	cur = select_list.cur_y;
351
	sprintf(#cur_file_path,"%s/%s",#folder_path,io.dir.position(files_mas[cur]));
352
}
353
 
354
void EventSelectWallpFolder()
355
{
356
	OpenDialog_start stdcall (#o_dialog);
357
	if (o_dialog.status) {
358
		strcpy(#wallp_folder_path, #opendir_path);
7909 leency 359
		EventTabWallpappersClick();
7353 leency 360
	}
361
}
362
 
7611 leency 363
void EventSetWallpMode_Stretch()
364
{
365
	optionbox_tiled.checked = false;
366
	optionbox_tiled.redraw();
367
	EventApply();
368
}
369
 
370
void EventSetWallpMode_Tiled()
371
{
372
	optionbox_stretch.checked = false;
373
	optionbox_stretch.redraw();
374
	EventApply();
375
}
376
 
7612 leency 377
#include "..\lib\patterns\restart_process.h"
6212 leency 378
void EventApply()
379
{
7353 leency 380
	char kivpath[4096+10];
381
	EventSetNewCurrent();
6264 leency 382
	if (tabs.active_tab==SKINS)
6212 leency 383
	{
6651 leency 384
		cur = select_list.cur_y;
6212 leency 385
		SetSystemSkin(#cur_file_path);
7612 leency 386
		SelectList_Draw();
7551 leency 387
		strcpy(#cur_skin_path, #cur_file_path);
7612 leency 388
		EventUpdateDocky();
6212 leency 389
	}
6264 leency 390
	if (tabs.active_tab==WALLPAPERS)
6212 leency 391
	{
7551 leency 392
		SelectList_Draw();
7611 leency 393
		if (optionbox_stretch.checked) strcpy(#kivpath, "\\S__");
394
		if (optionbox_tiled.checked) strcpy(#kivpath, "\\T__");
7353 leency 395
		strcat(#kivpath, #cur_file_path);
396
		RunProgram("/sys/media/kiv", #kivpath);
6212 leency 397
	}
398
}
4085 leency 399
 
7612 leency 400
void EventUpdateDocky()
401
{
402
	if (!update_docky.checked) return;
403
	KillProcessByName("@docky", MULTIPLE);
404
	RunProgram("/sys/@docky",NULL);
405
	pause(50);
406
	ActivateWindow(GetProcessSlot(Form.ID));
407
}
408
 
6212 leency 409
void EventOpenFile()
410
{
6264 leency 411
	if (tabs.active_tab==SKINS) RunProgram("/sys/skincfg", #cur_file_path);
412
	if (tabs.active_tab==WALLPAPERS) RunProgram("/sys/media/kiv", #cur_file_path);
4085 leency 413
}
414
 
7870 leency 415
_ini ini = { "/sys/settings/system.ini", "style" };
7551 leency 416
void EventExit()
417
{
7613 leency 418
	if (cur_skin_path) ini.SetString("skin", #cur_skin_path, strlen(#cur_skin_path));
7551 leency 419
	ExitProcess();
420
}
421
 
7778 leency 422
void EventHandleMenuClick()
423
{
424
	switch (get_menu_click())
425
	{
426
		case 1:
427
			EventOpenFile();
428
			break;
429
		case 2:
430
			EventDeleteFile();
431
			break;
432
	};
433
}
434
 
4078 leency 435
stop: