Subversion Repositories Kolibri OS

Rev

Rev 5825 | Rev 6048 | 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!
2
 
4085 leency 3
#ifndef AUTOBUILD
4
	?include "lang.h--"
5
#endif
6
 
4078 leency 7
#define MEMSIZE 0xFE800
8
#include "..\lib\mem.h"
4085 leency 9
#include "..\lib\strings.h"
5654 leency 10
#include "..\lib\io.h"
4078 leency 11
#include "..\lib\list_box.h"
5499 leency 12
#include "..\lib\gui.h"
13
#include "..\lib\obj\box_lib.h"
4078 leency 14
 
4085 leency 15
#ifdef LANG_RUS
5989 leency 16
	?define WINDOW_HEADER "Управление темой"
4411 leency 17
	?define T_SKINS       "   Тема окон"
18
	?define T_WALLPAPERS  "   Обои рабочего стола"
4085 leency 19
#else
20
	?define WINDOW_HEADER "Appearance"
4411 leency 21
	?define T_SKINS       "   Skins"
22
	?define T_WALLPAPERS  "   Wallpappers"
4085 leency 23
#endif
4078 leency 24
 
4544 leency 25
unsigned char icons[]= FROM "icons.raw";
4085 leency 26
 
4078 leency 27
#define PANEL_H 30
5765 leency 28
#define SKINS_STANDART_PATH "/kolibrios/res/skins"
4885 leency 29
#define WALP_STANDART_PATH "/kolibrios/res/wallpapers"
4078 leency 30
 
31
llist list[2];
32
int active;
4410 leency 33
enum { WALLPAPERS, SKINS };
4078 leency 34
 
35
char folder_path[4096];
36
char cur_file_path[4096];
37
char temp_filename[4096];
38
int files_mas[100];
39
 
40
int cur;
41
 
42
proc_info Form;
43
 
4085 leency 44
scroll_bar scroll1 = { 18,200,398, 44,18,0,115,15,0,0xeeeeee,0xD2CED0,0x555555,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1};
45
 
4078 leency 46
void Open_Dir()
47
{
5654 leency 48
	int j;
4078 leency 49
	list[active].count = 0;
5656 pavelyakov 50
	if(io.dir.buffer)free(io.dir.buffer);
5655 leency 51
	io.dir.load(#folder_path,DIR_ONLYREAL);
5654 leency 52
	for (j=0; j
4078 leency 53
	{
5655 leency 54
		strcpy(#temp_filename, io.dir.position(j));
4410 leency 55
		strlwr(#temp_filename);
4885 leency 56
		if (active==SKINS) if (strcmpi(#temp_filename+strlen(#temp_filename)-4,".skn")!=0) continue;
57
		if (active==WALLPAPERS) if (strcmpi(#temp_filename+strlen(#temp_filename)-4,".txt")==0) continue;
4078 leency 58
		cur = list[active].count;
59
		files_mas[cur]=j;
4885 leency 60
		if (!strcmpi("default.skn",#temp_filename)) files_mas[0]>
4078 leency 61
		list[active].count++;
62
	}
63
}
64
 
65
void Draw_List()
66
{
67
	int i;
4410 leency 68
	int yyy;
5548 leency 69
	int list_last;
5767 leency 70
	list[SKINS].SetFont(6, 6, 10000000b);
71
	list[WALLPAPERS].SetFont(6, 6, 10000000b);
5709 leency 72
	list[SKINS].SetSizes(0, PANEL_H, Form.cwidth-scroll1.size_x-1, Form.cheight-PANEL_H, 20);
73
	list[WALLPAPERS].SetSizes(0, PANEL_H, Form.cwidth-scroll1.size_x-1, Form.cheight-PANEL_H, 20);
5548 leency 74
	if (list[active].count > list[active].visible) list_last = list[active].visible; else list_last = list[active].count;
75
 
76
	for (i=0; i
4078 leency 77
	{
78
		cur = list[active].first;
5655 leency 79
		strcpy(#temp_filename, io.dir.position(files_mas[i+cur]));
4410 leency 80
		temp_filename[strlen(#temp_filename)-4] = 0;
5825 leency 81
		yyy = i*list[active].item_h+list[active].y;
4078 leency 82
 
5825 leency 83
		if (list[active].cur_y-list[active].first==i)
4078 leency 84
		{
5674 pavelyakov 85
			if (system.color.work_button!=system.color.work)
4078 leency 86
			{
5825 leency 87
				DrawBar(0, yyy, list[active].w, list[active].item_h, system.color.work_button);
5674 pavelyakov 88
				if (i
4078 leency 89
			}
90
			else
91
			{
5825 leency 92
				DrawBar(0, yyy, list[active].w, list[active].item_h, system.color.grab_button);
5674 pavelyakov 93
				if (i
4410 leency 94
			}
4078 leency 95
		}
96
		else
97
		{
5825 leency 98
			DrawBar(0,yyy,list[active].w, list[active].item_h, 0xFFFfff);
4411 leency 99
			WriteText(12,yyy+list[active].text_y,0x80,0, #temp_filename);
4078 leency 100
		}
101
	}
5825 leency 102
	DrawBar(0,list_last*list[active].item_h+list[active].y, list[active].w, -list_last*list[active].item_h+ list[active].h, 0xFFFfff);
4085 leency 103
	DrawScroller();
4078 leency 104
}
105
 
4410 leency 106
void GetFiles()
4078 leency 107
{
4410 leency 108
	if (list[SKINS].active)
4078 leency 109
	{
110
		strcpy(#folder_path, SKINS_STANDART_PATH);
111
		Open_Dir();
4885 leency 112
		if (!list[active].count) notify("'No skins were found' -E");
4078 leency 113
	}
4410 leency 114
	if (list[WALLPAPERS].active)
4078 leency 115
	{
116
		strcpy(#folder_path, WALP_STANDART_PATH);
117
		Open_Dir();
4885 leency 118
		if (!list[active].count) notify("'No wallpapers were found' -E");
4078 leency 119
	}
120
}
121
 
122
void Apply()
123
{
4410 leency 124
	if (list[SKINS].active)
4078 leency 125
	{
5825 leency 126
		cur = list[SKINS].cur_y;
5656 pavelyakov 127
		sprintf(#cur_file_path,"%s/%s",#folder_path,io.dir.position(files_mas[cur]));
4078 leency 128
		SetSystemSkin(#cur_file_path);
129
	}
4410 leency 130
	if (list[WALLPAPERS].active)
4078 leency 131
	{
5825 leency 132
		cur = list[WALLPAPERS].cur_y;
5656 pavelyakov 133
		sprintf(#cur_file_path,"\\S__%s/%s",#folder_path,io.dir.position(files_mas[cur]));
4078 leency 134
		RunProgram("/sys/media/kiv", #cur_file_path);
135
		Draw_List();
136
	}
137
}
138
 
139
OpenFile()
140
{
4410 leency 141
	if (list[SKINS].active) RunProgram("/sys/desktop", #cur_file_path);
142
	if (list[WALLPAPERS].active) RunProgram("/sys/media/kiv", #cur_file_path);
4078 leency 143
}
144
 
145
 
146
void main()
147
{
5705 punk_joker 148
	int id, mouse_clicked;
4078 leency 149
 
4410 leency 150
	SetEventMask(0x27);
5626 leency 151
	load_dll(boxlib, #box_lib_init,0);
5825 leency 152
	list[SKINS].cur_y = list[WALLPAPERS].cur_y = -1;
4078 leency 153
	list[SKINS].first = list[WALLPAPERS].first = 0;
4410 leency 154
	TabClick(WALLPAPERS);
5709 leency 155
	list[WALLPAPERS].SetSizes(0, 230, 350, 400-PANEL_H, 18);
156
	list[SKINS].SetSizes(0, 230, 350, 400-PANEL_H, 18);
4078 leency 157
	loop()
158
	{
159
	  switch(WaitEvent())
160
	  {
161
	  	case evMouse:
4085 leency 162
			if (!CheckActiveProcess(Form.ID)) break;
5656 pavelyakov 163
			mouse.get();
4085 leency 164
			scrollbar_v_mouse (#scroll1);
5656 pavelyakov 165
			if (list[active].first != scroll1.position)
4085 leency 166
			{
167
				list[active].first = scroll1.position;
168
				Draw_List();
169
				break;
170
			}
4410 leency 171
 
5640 pavelyakov 172
	  		if (mouse.vert)
4410 leency 173
	  		{
5640 pavelyakov 174
	  			if (list[SKINS].active) && (list[SKINS].MouseScroll(mouse.vert)) Draw_List();
175
	  			if (list[WALLPAPERS].active) && (list[WALLPAPERS].MouseScroll(mouse.vert)) Draw_List();
4410 leency 176
	  		}
177
 
5656 pavelyakov 178
	  		if (mouse.up)&&(mouse_clicked)
4078 leency 179
	  		{
5656 pavelyakov 180
	  			if (mouse.lkm) &&(list[SKINS].active) && (list[SKINS].ProcessMouse(mouse.x, mouse.y)) Apply();
181
	  			if (mouse.lkm) &&(list[WALLPAPERS].active) && (list[WALLPAPERS].ProcessMouse(mouse.x, mouse.y)) Apply();
182
	  			mouse_clicked=false;
4078 leency 183
	  		}
5656 pavelyakov 184
	  		else if (mouse.down)&&(mouse.lkm) && (list[SKINS].MouseOver(mouse.x, mouse.y)) mouse_clicked=true;
4078 leency 185
	  		break;
186
 
4410 leency 187
 
4078 leency 188
		case evButton:
189
			id=GetButtonID();
190
			if (id==1) ExitProcess();
4410 leency 191
			if (id==2) TabClick(WALLPAPERS);
192
			if (id==3) TabClick(SKINS);
4078 leency 193
			break;
194
 
195
		case evKey:
5706 leency 196
			GetKeys();
5705 punk_joker 197
			if (list[SKINS].active) && (list[SKINS].ProcessKey(key_scancode)) Apply();
198
			if (list[WALLPAPERS].active) && (list[WALLPAPERS].ProcessKey(key_scancode)) Apply();
199
			IF (key_scancode==SCAN_CODE_ENTER) OpenFile();
200
			if (key_scancode==SCAN_CODE_TAB) if (list[SKINS].active) TabClick(WALLPAPERS); else TabClick(SKINS);
201
			IF (key_scancode==SCAN_CODE_TAB) //Del
4078 leency 202
			{
203
				DeleteFile(#cur_file_path);
204
				Open_Dir();
205
				Apply();
206
			}
207
			break;
208
 
209
		 case evReDraw:
5674 pavelyakov 210
			system.color.get();
4410 leency 211
			DefineAndDrawWindow(30,80,list[active].w+9,list[active].h+4+GetSkinHeight(),0x73,0xE4DFE1,WINDOW_HEADER,0);
4078 leency 212
			GetProcessInfo(#Form, SelfInfo);
213
			IF (Form.status_window>=2) break;
214
			DrawTabs();
215
			Draw_List();
216
	  }
217
   }
218
}
219
 
4410 leency 220
#define BT_PADDING 16
4078 leency 221
 
4410 leency 222
void DrawTab(dword x,y, but_id, is_active, text)
223
{
224
	dword col_bg, col_text;
225
	dword w=strlen(text)*6+BT_PADDING, h=21;
226
 
227
	if (is_active)
228
	{
5674 pavelyakov 229
		col_bg=system.color.work_button;
230
		col_text=system.color.work_button_text;
4410 leency 231
	}
232
	else
233
	{
5674 pavelyakov 234
		col_bg=system.color.work;
235
		col_text=system.color.work_text;
4410 leency 236
	}
5674 pavelyakov 237
	DrawRectangle(x,y, w,h, system.color.work_graph);
4410 leency 238
	DrawCaptButton(x+1,y+1, w-2,h-1, but_id, col_bg, col_text, text);
4411 leency 239
	_PutImage(x+6,y+4,  16,15,   but_id-2*16*15*3+#icons);
4410 leency 240
}
241
 
242
 
4078 leency 243
void DrawTabs()
244
{
5674 pavelyakov 245
	DrawBar(0,0, Form.cwidth, PANEL_H-1, system.color.work);
4410 leency 246
	DrawTab(10,7, 2, list[WALLPAPERS].active, T_WALLPAPERS);
247
	DrawTab(strlen(T_WALLPAPERS)*6+BT_PADDING+21,7, 3, list[SKINS].active, T_SKINS);
5674 pavelyakov 248
	DrawBar(0,PANEL_H-2, Form.cwidth, 1, system.color.work_graph);
4078 leency 249
	DrawBar(0,PANEL_H-1, Form.cwidth, 1, 0xEEEeee);
250
}
251
 
252
void TabClick(int N)
253
{
4410 leency 254
	if (N==SKINS)
255
	{
256
		list[SKINS].active = 1;
257
		list[WALLPAPERS].active = 0;
258
	}
259
	if (N==WALLPAPERS)
260
	{
261
		list[SKINS].active = 0;
262
		list[WALLPAPERS].active = 1;
263
	}
264
	active = N;
265
	GetFiles();
4078 leency 266
	DrawTabs();
267
	Draw_List();
268
}
269
 
270
 
4085 leency 271
void DrawScroller()
272
{
273
	scroll1.bckg_col = 0xBBBbbb;
5674 pavelyakov 274
	scroll1.frnt_col = system.color.work;
275
	scroll1.line_col = system.color.work_graph;
4078 leency 276
 
4085 leency 277
	scroll1.max_area = list[active].count;
278
	scroll1.cur_area = list[active].visible;
279
	scroll1.position = list[active].first;
4078 leency 280
 
4085 leency 281
	scroll1.all_redraw=1;
282
	scroll1.start_x = list[active].x + list[active].w;
283
	scroll1.start_y = list[active].y-2;
284
	scroll1.size_y = list[active].h+2;
285
 
286
	scrollbar_v_draw(#scroll1);
287
}
288
 
289
 
4078 leency 290
stop: