Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
5504 punk_joker 1
#ifndef AUTOBUILD
2
#include "lang.h--"
3
#endif
5472 leency 4
 
5
#define MEMSIZE 0x23E80
6
#include "..\lib\kolibri.h"
7
#include "..\lib\strings.h"
8
#include "..\lib\mem.h"
9
#include "..\lib\file_system.h"
10
#include "..\lib\dll.h"
5499 leency 11
#include "..\lib\gui.h"
5472 leency 12
 
5499 leency 13
#include "..\lib\obj\libio_lib.h"
14
#include "..\lib\obj\libini.h"
15
#include "..\lib\obj\box_lib.h"
5472 leency 16
 
17
#include "..\lib\patterns\libimg_load_skin.h"
5548 leency 18
#include "..\lib\patterns\restart_process.h"
5472 leency 19
 
5504 punk_joker 20
#ifdef LANG_RUS
5506 punk_joker 21
	?define WINDOW_TITLE "Настройки панели задач и Дока"
22
    ?define TASK_FRAME_T " Панель задач "
23
	?define DOCK_FRAME_T " Док "
5504 punk_joker 24
	?define MIN_LEFT_BUTTON "Кнопка скрытия слева"
25
	?define MIN_RIGHT_BUTTON "Кнопка скрытия справа"
26
	?define SOFTEN_UP   "Сглаживание сверху"
27
	?define SOFTEN_DOWN "Сглаживание снизу"
28
	?define CLOCK    "Часы"
29
	?define CPU_USAGE "Загрузка ЦП"
30
	?define CHANGE_LANG "Язык ввода"
31
	?define MENU_BUTTON "Кнопка меню"
32
	?define PANEL_HEIGHT "Высота панели"
33
	?define SOFTEN_HEIGHT "Высота сглаживания"
34
	?define BUTTON_OFFSET "Поле вокруг кнопок"
35
	?define FSIZE "Режим панели"
36
	?define ASHOW "Не скрывать"
37
	?define CHANGE_POS "Нажмите на изображение для смены позиции"
5506 punk_joker 38
	?define BOX_LIB_LOAD_ERR "Ошибка при загрузке библиотеки /rd/1/lib/box_lib.obj"
39
	?define LIBINI_LOAD_ERR "Ошибка при загрузке библиотеки /rd/1/lib/libini.obj"
5504 punk_joker 40
#else
5506 punk_joker 41
	?define WINDOW_TITLE "Taskbar and Docky configuration"
42
    ?define TASK_FRAME_T " Taskbar "
43
	?define DOCK_FRAME_T " Docky "
5504 punk_joker 44
	?define MIN_LEFT_BUTTON "Min Left Button"
45
	?define MIN_RIGHT_BUTTON "Min Right Button"
46
	?define SOFTEN_UP   "Soften Up"
47
	?define SOFTEN_DOWN "Soften Down"
48
	?define CLOCK    "Clock"
49
	?define CPU_USAGE "Cpu Usage"
5507 punk_joker 50
	?define CHANGE_LANG "Change Language"
5504 punk_joker 51
	?define MENU_BUTTON "Menu Button"
52
	?define PANEL_HEIGHT "Panel Height"
53
	?define SOFTEN_HEIGHT "Soften Height"
54
	?define BUTTON_OFFSET "Button Offset"
55
	?define FSIZE "Full width"
56
	?define ASHOW "Always show"
57
	?define CHANGE_POS "Click on image to change position"
5506 punk_joker 58
	?define BOX_LIB_LOAD_ERR "Error while loading library /rd/1/lib/box_lib.obj"
59
	?define LIBINI_LOAD_ERR "Error while loading library /rd/1/lib/libini.obj"
5504 punk_joker 60
#endif
61
 
62
 
5506 punk_joker 63
frame taskbar_frame = { 0, 000, 10, 188, 14, 0x000111, 0xFFFfff, 1, TASK_FRAME_T, 0, 0, 6, 0x000111, 0xCCCccc };
64
frame docky_frame = { 0, 000, 10, 73, 217, 0x000111, 0xFFFfff, 1, DOCK_FRAME_T, 0, 0, 6, 0x000111, 0xCCCccc };
5472 leency 65
 
66
char taskbar_ini_path[] = "/sys/settings/taskbar.ini";
5477 leency 67
char taskbar_c_flags[] = "Flags";
68
char taskbar_c_variables[] = "Variables";
5472 leency 69
char docky_ini_path[] = "/sys/settings/docky.ini";
70
 
5477 leency 71
unsigned char panels_img_data[] = FROM "panels_image.raw";
72
raw_image panels_img = { 37, 27, #panels_img_data };
5472 leency 73
 
74
system_colors sc;
75
proc_info Form;
76
 
77
struct docky_cfg {
78
	word fsize;
79
	byte location, ashow;
80
} docky_cfg;
81
 
82
struct taskbar_cfg {
83
	byte Attachment;
5477 leency 84
	byte PanelHeight, SoftenHeight, ButtonOffset;
5472 leency 85
	byte SoftenUp, SoftenDown, MinLeftButton, MinRightButton, MenuButton,
86
	     RunApplButton, ClnDeskButton, Clock, CpuUsage, ChangeLang;
87
} taskbar_cfg;
88
 
5477 leency 89
enum {
90
	TASKBAR,
91
	DOCKY
92
};
5472 leency 93
 
94
 
95
void main()
96
{
97
	dword id, key;
98
 
99
	mem_Init();
5506 punk_joker 100
	if (load_dll2(libini, #lib_init,1)!=0) notify(LIBINI_LOAD_ERR);
101
	if (load_dll2(boxlib, #box_lib_init,0)!=0) notify(BOX_LIB_LOAD_ERR);
5472 leency 102
 
103
	LoadCfg();
104
 
105
	loop() switch(WaitEvent())
106
	{
107
		case evButton:
108
				id=GetButtonID();
109
				if (id==1) ExitProcess();
110
				//taskbar buttons
111
				if (id>=100) && (id<200)
112
				{
113
					if (id==100) taskbar_cfg.Attachment ^= 1;
114
					if (id==105) taskbar_cfg.SoftenUp ^= 1;
115
					if (id==106) taskbar_cfg.SoftenDown ^= 1;
116
					if (id==107) taskbar_cfg.MinLeftButton ^= 1;
117
					if (id==108) taskbar_cfg.MinRightButton ^= 1;
118
					if (id==109) taskbar_cfg.RunApplButton ^= 1;
119
					if (id==110) taskbar_cfg.ClnDeskButton ^= 1;
120
					if (id==111) taskbar_cfg.Clock ^= 1;
121
					if (id==112) taskbar_cfg.CpuUsage ^= 1;
122
					if (id==113) taskbar_cfg.ChangeLang ^= 1;
123
					if (id==114) taskbar_cfg.MenuButton ^= 1;
5477 leency 124
					if (id==120) taskbar_cfg.PanelHeight++;
125
					if (id==121) && (taskbar_cfg.PanelHeight>6) taskbar_cfg.PanelHeight--;
126
					if (id==122) taskbar_cfg.SoftenHeight++;
127
					if (id==123) && (taskbar_cfg.SoftenHeight>0) taskbar_cfg.SoftenHeight--;
128
					if (id==124) taskbar_cfg.ButtonOffset++;
129
					if (id==125) && (taskbar_cfg.ButtonOffset>0) taskbar_cfg.ButtonOffset--;
130
					DrawWindowContent(TASKBAR);
131
					SaveCfg(TASKBAR);
132
					RestartProcess(TASKBAR);
5472 leency 133
				}
134
				//docky buttons
135
				if (id>=200)
136
				{
137
					if (id==200)
138
					{
139
						     if (docky_cfg.location==1) docky_cfg.location = 2;
140
						else if (docky_cfg.location==2) docky_cfg.location = 3;
141
						else if (docky_cfg.location==3) docky_cfg.location = 1;
142
					}
143
					if (id==201) docky_cfg.fsize ^= 1;
144
					if (id==202) docky_cfg.ashow ^= 1;
5477 leency 145
					DrawWindowContent(DOCKY);
146
					SaveCfg(DOCKY);
147
					RestartProcess(DOCKY);
5472 leency 148
				}
149
				break;
150
 
151
		case evKey:
152
				key = GetKey();
153
				if (key==27) ExitProcess();
154
				break;
155
 
156
		case evReDraw:
157
				sc.get();
5504 punk_joker 158
				DefineAndDrawWindow(130, 150, 400, 300+GetSkinHeight(),0x34,sc.work,WINDOW_TITLE);
5472 leency 159
				GetProcessInfo(#Form, SelfInfo);
160
				if (Form.status_window>2) break;
161
				taskbar_frame.size_x = docky_frame.size_x = - taskbar_frame.start_x * 2 + Form.cwidth;
162
				taskbar_frame.font_color = docky_frame.font_color = sc.work_text;
163
				taskbar_frame.font_backgr_color = docky_frame.font_backgr_color = sc.work;
5477 leency 164
				taskbar_frame.ext_col = docky_frame.ext_col = sc.work_graph;
5472 leency 165
				DrawWindowContent();
166
	}
167
}
168
 
169
 
170
void DrawWindowContent()
171
{
172
	word win_center_x;
173
 
174
  frame_draw stdcall (#taskbar_frame);
5477 leency 175
	DefineButton(22, taskbar_frame.start_y + 12, panels_img.w-1, 27-1, 100 + BT_HIDE, 0);
176
	_PutImage(22, taskbar_frame.start_y + 12,  37, 27, taskbar_cfg.Attachment * 37 * 27 * 3 + panels_img.data);
5533 leency 177
	WriteText(68, taskbar_frame.start_y + 20, 0x80, sc.work_text, CHANGE_POS);
5504 punk_joker 178
	PanelCfg_CheckBox(22, taskbar_frame.start_y +  48, 105, SOFTEN_UP, taskbar_cfg.SoftenUp);
179
	PanelCfg_CheckBox(22, taskbar_frame.start_y +  68, 106, SOFTEN_DOWN, taskbar_cfg.SoftenDown);
180
	PanelCfg_CheckBox(22, taskbar_frame.start_y +  88, 107, MIN_LEFT_BUTTON, taskbar_cfg.MinLeftButton);
181
	PanelCfg_CheckBox(22, taskbar_frame.start_y + 108, 108, MIN_RIGHT_BUTTON, taskbar_cfg.MinRightButton);
5477 leency 182
	win_center_x = Form.cwidth / 2;
5504 punk_joker 183
	PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y +  48, 111, CLOCK, taskbar_cfg.Clock);
184
	PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y +  68, 112, CPU_USAGE, taskbar_cfg.CpuUsage);
185
	PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y +  88, 113, CHANGE_LANG, taskbar_cfg.ChangeLang);
186
	PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y + 108, 114, MENU_BUTTON, taskbar_cfg.MenuButton);
187
	PanelCfg_MoreLessBox(22, taskbar_frame.start_y + 131, 120, 121, taskbar_cfg.PanelHeight, PANEL_HEIGHT);
188
	PanelCfg_MoreLessBox(win_center_x, taskbar_frame.start_y + 131, 122, 123, taskbar_cfg.SoftenHeight, SOFTEN_HEIGHT);
189
	PanelCfg_MoreLessBox(22, taskbar_frame.start_y + 159, 124, 125, taskbar_cfg.ButtonOffset, BUTTON_OFFSET);
5472 leency 190
 
191
  frame_draw stdcall (#docky_frame);
5477 leency 192
	DefineButton(22, docky_frame.start_y + 12, panels_img.w-1, 27-1, 200 + BT_HIDE, 0);
193
	_PutImage(22, docky_frame.start_y + 12,  37, 27, docky_cfg.location + 1 * 37 * 27 * 3 + panels_img.data);
5533 leency 194
	WriteText(68, docky_frame.start_y + 20, 0x80, sc.work_text, CHANGE_POS);
5472 leency 195
 
5504 punk_joker 196
	PanelCfg_CheckBox(22, docky_frame.start_y + 48, 201, FSIZE,  docky_cfg.fsize);
197
	PanelCfg_CheckBox(win_center_x, docky_frame.start_y + 48, 202, ASHOW, docky_cfg.ashow);
5472 leency 198
}
199
 
200
void LoadCfg()
201
{
5477 leency 202
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Attachment", 1);     taskbar_cfg.Attachment = EAX;
203
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenUp", 1);       taskbar_cfg.SoftenUp = EAX;
204
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenDown", 1);     taskbar_cfg.SoftenDown = EAX;
205
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinLeftButton", 1);  taskbar_cfg.MinLeftButton = EAX;
206
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinRightButton", 1); taskbar_cfg.MinRightButton = EAX;
207
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Clock", 1);          taskbar_cfg.Clock = EAX;
208
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "CpuUsage", 1);       taskbar_cfg.CpuUsage = EAX;
209
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "ChangeLang", 1);     taskbar_cfg.ChangeLang = EAX;
210
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MenuButton", 1);     taskbar_cfg.MenuButton = EAX;
211
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "PanelHeight", 18);    taskbar_cfg.PanelHeight = EAX;
212
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "SoftenHeight", 4);    taskbar_cfg.SoftenHeight = EAX;
213
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonTopOffset", 3); taskbar_cfg.ButtonOffset = EAX;
214
	ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonBotOffset", 3); taskbar_cfg.ButtonOffset = EAX;
5472 leency 215
 
216
	ini_get_int stdcall (#docky_ini_path, "@", "location", 0);  docky_cfg.location = EAX;
217
	ini_get_int stdcall (#docky_ini_path, "@", "fsize", 0);     docky_cfg.fsize = EAX;
218
	ini_get_int stdcall (#docky_ini_path, "@", "ashow", 0);     docky_cfg.ashow = EAX;
219
}
220
 
5477 leency 221
void SaveCfg(byte panel_type)
5472 leency 222
{
5477 leency 223
	if (panel_type==TASKBAR) {
224
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Attachment", taskbar_cfg.Attachment);
225
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenUp", taskbar_cfg.SoftenUp);
226
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenDown", taskbar_cfg.SoftenDown);
227
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinLeftButton", taskbar_cfg.MinLeftButton);
228
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinRightButton", taskbar_cfg.MinRightButton);
229
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "RunApplButton", taskbar_cfg.RunApplButton);
230
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "ClnDeskButton", taskbar_cfg.ClnDeskButton);
231
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Clock", taskbar_cfg.Clock);
232
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "CpuUsage", taskbar_cfg.CpuUsage);
233
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "ChangeLang", taskbar_cfg.ChangeLang);
234
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MenuButton", taskbar_cfg.MenuButton);
235
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "PanelHeight", taskbar_cfg.PanelHeight);
236
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "SoftenHeight", taskbar_cfg.SoftenHeight);
237
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonTopOffset", taskbar_cfg.ButtonOffset);
238
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonBottOffset", taskbar_cfg.ButtonOffset);
239
	}
240
	if (panel_type==DOCKY) {
241
		ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Attachment", taskbar_cfg.Attachment);
242
		ini_set_int stdcall (#docky_ini_path, "@", "location", docky_cfg.location);
243
		ini_set_int stdcall (#docky_ini_path, "@", "fsize", docky_cfg.fsize);
244
		ini_set_int stdcall (#docky_ini_path, "@", "ashow", docky_cfg.ashow);
245
	}
5472 leency 246
}
247
 
5477 leency 248
void RestartProcess(byte panel_type)
5472 leency 249
{
5548 leency 250
	dword proc_name1;
251
	if (panel_type == TASKBAR)
5472 leency 252
	{
5548 leency 253
		RestartProcessByName("@taskbar", SINGLE);
254
		pause(50);
5472 leency 255
	}
5548 leency 256
	else
257
	{
258
		RestartProcessByName("@docky", SINGLE);
259
		pause(120);
260
	}
5472 leency 261
	GetProcessInfo(#Form, SelfInfo);
5477 leency 262
	ActivateWindow(GetProcessSlot(Form.ID));
5472 leency 263
}
264
 
5477 leency 265
 
266
 
267
void PanelCfg_CheckBox(dword x, y, id, text, byte value) {
5472 leency 268
	CheckBox(x, y, 14, 14, id, text, sc.work_graph, sc.work_text, value);
269
}
270
 
5477 leency 271
void PanelCfg_MoreLessBox(dword x, y, id_more, id_less; byte value; dword text) {
5542 leency 272
	MoreLessBox(x, y, 18, id_more, id_less, #sc, value, text);
5477 leency 273
}
274
 
275
 
5472 leency 276
stop: