Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4870 leency 1
/*
7424 leency 2
SOFTWARE CENTER v2.81
4870 leency 3
*/
4
 
6786 leency 5
#define MEMSIZE 4096 * 15
4870 leency 6
#include "..\lib\strings.h"
7
#include "..\lib\mem.h"
6253 leency 8
#include "..\lib\io.h"
5499 leency 9
#include "..\lib\gui.h"
5409 leency 10
 
7049 leency 11
#include "..\lib\obj\libio.h"
12
#include "..\lib\obj\libimg.h"
5499 leency 13
#include "..\lib\obj\libini.h"
6805 leency 14
#include "..\lib\kfont.h"
6091 leency 15
#include "..\lib\list_box.h"
16
#include "..\lib\collection.h"
5405 leency 17
 
4870 leency 18
proc_info Form;
6091 leency 19
llist list;
20
collection app_path_collection;
5424 leency 21
byte kolibrios_mounted;
22
 
5405 leency 23
int window_width,
6091 leency 24
	window_height;
5403 leency 25
 
6091 leency 26
int list_pos,
27
	row,
28
	col,
29
	default_icon;
5403 leency 30
 
5405 leency 31
char window_title[128],
6091 leency 32
	 settings_ini_path[256] = "/sys/settings/";
5405 leency 33
 
5403 leency 34
#define LIST_BACKGROUND_COLOR 0xF3F3F3
35
 
7493 leency 36
block ipos[128];
37
 
5403 leency 38
void load_config()
39
{
40
	ini_get_str stdcall (#settings_ini_path, "Config", "window_title", #window_title, sizeof(window_title), "Software widget");
41
	ini_get_int stdcall (#settings_ini_path, "Config", "window_width", 690);
42
	window_width = EAX;
6091 leency 43
	ini_get_int stdcall (#settings_ini_path, "Config", "cell_w", 73);
44
	list.item_w = EAX;
45
	ini_get_int stdcall (#settings_ini_path, "Config", "cell_h", 71);
46
	list.item_h = EAX;
5405 leency 47
	ini_get_int stdcall (#settings_ini_path, "Config", "default_icon", 0);
48
	default_icon = EAX;
4870 leency 49
}
50
 
51
 
52
void main()
53
{
6091 leency 54
	dword id;
6806 leency 55
	kfont.init(DEFAULT_FONT);
5626 leency 56
	load_dll(libio,  #libio_init,1);
57
	load_dll(libimg, #libimg_init,1);
58
	load_dll(libini, #lib_init,1);
5403 leency 59
 
5425 leency 60
	Libimg_LoadImage(#skin, "/sys/icons32.png");
5409 leency 61
	Libimg_FillTransparent(skin.image, skin.w, skin.h, LIST_BACKGROUND_COLOR);
6251 leency 62
	kolibrios_mounted = dir_exists("/kolibrios");
5409 leency 63
 
5407 leency 64
	if (param)
5406 leency 65
	{
66
		strcpy(#settings_ini_path, #param);
67
	}
68
	else
69
	{
6735 leency 70
		strcat(#settings_ini_path, I_Path + strrchr(I_Path, '/'));
5406 leency 71
		strcat(#settings_ini_path, ".ini");
72
	}
6091 leency 73
 
5403 leency 74
	load_config();
6091 leency 75
	list.cur_y = -1;
76
	list.y = 32;
5403 leency 77
 
6091 leency 78
	DrawList();
79
	window_height = row+1*list.item_h + list_pos + skin_height + 15;
80
 
81
	loop() switch(WaitEvent())
5403 leency 82
	{
7493 leency 83
		case evKey:
84
			GetKeys();
85
			if (SCAN_CODE_LEFT == key_scancode) key_scancode = SCAN_CODE_UP;
86
			if (SCAN_CODE_RIGHT == key_scancode) key_scancode = SCAN_CODE_DOWN;
87
			if (list.ProcessKey(key_scancode)) DrawSelection();
88
			if (SCAN_CODE_ENTER == key_scancode) EventRunApp(list.cur_y);
89
			break;
6091 leency 90
 
91
		case evButton:
92
			id=GetButtonID();
93
			if (id==1) ExitProcess();
6253 leency 94
			if (id>=100) EventRunApp(id-100);
4870 leency 95
			break;
5403 leency 96
 
6091 leency 97
		case evReDraw:
5674 pavelyakov 98
			system.color.get();
6746 leency 99
			DefineAndDrawWindow(screen.width-window_width/2,screen.height-window_height/2,window_width,window_height,0x74,system.color.work,"",0);
4870 leency 100
			GetProcessInfo(#Form, SelfInfo);
5406 leency 101
			if (Form.status_window>2) { DrawTitle(#window_title); break; } else DrawTitle("");
6008 leency 102
			draw_top_bar();
6091 leency 103
			DrawList();
7493 leency 104
			DrawBar(0, row +1 * list.item_h + list_pos, Form.cwidth, -row - 1 * list.item_h - list_pos + Form.cheight, LIST_BACKGROUND_COLOR);
105
			//if (list.cur_y == list.count)
106
				DrawSelection();
4870 leency 107
			break;
5403 leency 108
	}
4870 leency 109
}
110
 
6091 leency 111
void DrawList() {
112
	list.count = 0;
113
	row = -1;
114
	app_path_collection.drop();
115
	list_pos = list.y;
116
	list.column_max = window_width - 10 / list.item_w;
117
	ini_enum_sections stdcall (#settings_ini_path, #process_sections);
118
	list.visible = list.count;
5151 leency 119
}
4870 leency 120
 
5403 leency 121
byte draw_icons_from_section(dword key_value, key_name, sec_name, f_name)
5151 leency 122
{
5405 leency 123
	int tmp,
6091 leency 124
		icon_id,
125
		icon_char_pos;
7493 leency 126
	int text_w;
5151 leency 127
 
6192 leency 128
	//do not show items located in /kolibrios/ if this directory not mounted
7424 leency 129
	if (!strncmp(key_value, "/kolibrios/", 11)) || (!strncmp(key_value, "/k/", 3))
130
		if (!kolibrios_mounted) return true;
6192 leency 131
 
6091 leency 132
	if (col==list.column_max) {
5151 leency 133
		row++;
134
		col=0;
135
	}
5424 leency 136
 
6091 leency 137
	if (col==0) DrawBar(0, row * list.item_h + list_pos, Form.cwidth, list.item_h, LIST_BACKGROUND_COLOR);
138
	DefineButton(col*list.item_w+6, row*list.item_h + list_pos,list.item_w,list.item_h-5,list.count + 100 + BT_HIDE,0);
139
	tmp = list.item_w/2;
5405 leency 140
 
141
	icon_char_pos = strchr(key_value, ',');
5624 leency 142
	if (icon_char_pos) icon_id = atoi(icon_char_pos+1); else icon_id = default_icon;
6091 leency 143
	img_draw stdcall(skin.image, col*list.item_w+tmp-10, row*list.item_h+5 + list_pos, 32, 32, 0, icon_id*32);
144
	if (icon_char_pos) ESBYTE[icon_char_pos] = '\0'; //delete icon from string
145
	app_path_collection.add(key_value);
6806 leency 146
	//kfont.WriteIntoWindowCenter(col*list.item_w+7,row*list.item_h+47 + list_pos, list.item_w,0, LIST_BACKGROUND_COLOR, 0xDCDCDC, 12, key_name);
7493 leency 147
	text_w = kfont.WriteIntoWindowCenter(col*list.item_w+5,row*list.item_h+46 + list_pos, list.item_w,0, LIST_BACKGROUND_COLOR, 0x000000, 12, key_name);
148
	ipos[list.count].x = list.item_w-text_w/2+calc(col*list.item_w)+5;
149
	ipos[list.count].y = row*list.item_h+46 + list_pos + 16;
150
	ipos[list.count].w = text_w;
6091 leency 151
	list.count++;
5151 leency 152
	col++;
5656 pavelyakov 153
	return true;
5151 leency 154
}
155
 
5403 leency 156
 
6091 leency 157
int old_row; //to detect empty sections
5424 leency 158
byte process_sections(dword sec_name, f_name)
4870 leency 159
{
5817 leency 160
	int text_len;
5656 pavelyakov 161
	if (!strcmp(sec_name, "Config")) return true;
4870 leency 162
 
6091 leency 163
	if ((col==0) && (row==old_row))
5403 leency 164
	{
6091 leency 165
		list_pos -= 28;
5403 leency 166
	}
167
	else
168
	{
6091 leency 169
		row++;
5403 leency 170
	}
6091 leency 171
	col = 0;
172
	old_row = row;
173
	DrawBar(0, row * list.item_h + list_pos, Form.cwidth , 29, LIST_BACKGROUND_COLOR);
6806 leency 174
	text_len = kfont.WriteIntoWindow(10, row * list.item_h + 10 + list_pos, LIST_BACKGROUND_COLOR, 0, 15, sec_name);
6091 leency 175
	DrawBar(text_len+20, row * list.item_h + list_pos + 20, Form.cwidth-text_len-20, 1, 0xDCDCDC);
176
	DrawBar(text_len+20, row * list.item_h + list_pos + 21, Form.cwidth-text_len-20, 1, 0xFCFCFC);
177
	list_pos += 29;
178
	ini_enum_keys stdcall (f_name, sec_name, #draw_icons_from_section);
5656 pavelyakov 179
	return true;
4870 leency 180
}
181
 
5403 leency 182
void draw_top_bar()
183
{
6091 leency 184
	DrawBar(0,0,Form.cwidth, list.y-2, system.color.work);
6177 leency 185
	DrawBar(0,list.y-2, Form.cwidth, 1, MixColors(system.color.work, system.color.work_graph, 180));
6091 leency 186
	DrawBar(0,list.y-1, Form.cwidth, 1, system.color.work_graph);
6806 leency 187
	kfont.WriteIntoWindowCenter(0,5, Form.cwidth, list.y, system.color.work, system.color.work_text, 16, #window_title);
5403 leency 188
}
4870 leency 189
 
6253 leency 190
void EventRunApp(dword appid)
191
{
7424 leency 192
	char run_app_path[4096]=0;
6955 leency 193
	dword app_path = app_path_collection.get(appid);
194
	dword param_pos = strchr(app_path, '|');
195
	if (param_pos) {
196
		ESBYTE[param_pos] = NULL;
197
		param_pos++;
6253 leency 198
	}
6955 leency 199
 
7424 leency 200
	// the next block is created to save some space in ramdisk{
201
	//
202
	// convert relative path to absolute      "calc"    => "/sys/calc"
203
	// convert short kolibrios path to full   "/k/calc" => "/kolibrios/calc"
204
	// other copy => as is
205
	if (ESBYTE[app_path]!='/') {
206
		strcpy(#run_app_path, "/sys/");
207
	}
208
	else if (!strncmp(app_path, "/k/",3)) {
209
		strcpy(#run_app_path, "/kolibrios/");
210
		app_path+=3;
211
	}
212
	strcat(#run_app_path, app_path);
213
	// }end
214
 
215
	if (file_exists(#run_app_path))
6955 leency 216
	{
7424 leency 217
		io.run(#run_app_path, param_pos); //0 or offset
6955 leency 218
		if (param_pos) ESBYTE[param_pos - 1] = '|';
219
	}
220
	else
221
	{
6253 leency 222
		notify("'Application not found' -E");
223
	}
7493 leency 224
}
6955 leency 225
 
7493 leency 226
void DrawSelection()
227
{
228
	int i;
229
	dword col;
230
	for (i=0; i
231
		if (i==list.cur_y) col=0x0080FF; else col=LIST_BACKGROUND_COLOR;
232
		DrawBar(ipos[i].x, ipos[i].y, ipos[i].w+2, 3, col);
233
	}
6253 leency 234
}
4870 leency 235
 
5403 leency 236
 
4870 leency 237
stop: