Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4870 leency 1
/*
6091 leency 2
SOFTWARE CENTER v2.8
4870 leency 3
*/
4
 
5814 pavelyakov 5
#define MEMSIZE 0x9000
4870 leency 6
#include "..\lib\strings.h"
7
#include "..\lib\mem.h"
8
#include "..\lib\file_system.h"
5499 leency 9
#include "..\lib\gui.h"
5409 leency 10
 
5499 leency 11
#include "..\lib\obj\libio_lib.h"
12
#include "..\lib\obj\libimg_lib.h"
13
#include "..\lib\obj\libini.h"
5814 pavelyakov 14
#include "..\lib\font.h"
6091 leency 15
#include "..\lib\list_box.h"
16
#include "..\lib\collection.h"
5409 leency 17
#include "..\lib\patterns\libimg_load_skin.h"
5405 leency 18
 
4870 leency 19
proc_info Form;
6091 leency 20
llist list;
21
collection app_path_collection;
5424 leency 22
byte kolibrios_mounted;
23
 
5405 leency 24
int window_width,
6091 leency 25
	window_height;
5403 leency 26
 
6091 leency 27
int list_pos,
28
	row,
29
	col,
30
	default_icon;
5403 leency 31
 
5405 leency 32
char window_title[128],
6091 leency 33
	 settings_ini_path[256] = "/sys/settings/";
5405 leency 34
 
5403 leency 35
#define LIST_BACKGROUND_COLOR 0xF3F3F3
36
 
37
void load_config()
38
{
39
	ini_get_str stdcall (#settings_ini_path, "Config", "window_title", #window_title, sizeof(window_title), "Software widget");
40
	ini_get_int stdcall (#settings_ini_path, "Config", "window_width", 690);
41
	window_width = EAX;
6091 leency 42
	ini_get_int stdcall (#settings_ini_path, "Config", "cell_w", 73);
43
	list.item_w = EAX;
44
	ini_get_int stdcall (#settings_ini_path, "Config", "cell_h", 71);
45
	list.item_h = EAX;
5405 leency 46
	ini_get_int stdcall (#settings_ini_path, "Config", "default_icon", 0);
47
	default_icon = EAX;
4870 leency 48
}
49
 
50
 
51
void main()
52
{
6091 leency 53
	dword id;
54
	label.init(DEFAULT_FONT);
5626 leency 55
	load_dll(libio,  #libio_init,1);
56
	load_dll(libimg, #libimg_init,1);
57
	load_dll(libini, #lib_init,1);
5403 leency 58
 
5425 leency 59
	Libimg_LoadImage(#skin, "/sys/icons32.png");
5409 leency 60
	Libimg_FillTransparent(skin.image, skin.w, skin.h, LIST_BACKGROUND_COLOR);
6091 leency 61
	kolibrios_mounted = isdir("/kolibrios");
5409 leency 62
 
5407 leency 63
	if (param)
5406 leency 64
	{
65
		strcpy(#settings_ini_path, #param);
66
	}
67
	else
68
	{
69
		strcat(#settings_ini_path, #program_path + strrchr(#program_path, '/'));
70
		strcat(#settings_ini_path, ".ini");
71
	}
6091 leency 72
 
5403 leency 73
	load_config();
6091 leency 74
	list.cur_y = -1;
75
	list.y = 32;
5403 leency 76
 
6091 leency 77
	DrawList();
78
	window_height = row+1*list.item_h + list_pos + skin_height + 15;
79
 
80
	loop() switch(WaitEvent())
5403 leency 81
	{
6091 leency 82
		// case evKey:
83
		// 	GetKeys();
84
		// 	if (list.ProcessKey(key_scancode)) DrawList();
85
		// 	break;
86
 
87
		case evButton:
88
			id=GetButtonID();
89
			if (id==1) ExitProcess();
90
			if (id>=100) RunProgram(app_path_collection.get(id-100), "");
4870 leency 91
			break;
5403 leency 92
 
6091 leency 93
		case evReDraw:
5674 pavelyakov 94
			system.color.get();
95
			DefineAndDrawWindow(GetScreenWidth()-window_width/2,GetScreenHeight()-window_height/2,window_width,window_height,0x74,system.color.work,"");
4870 leency 96
			GetProcessInfo(#Form, SelfInfo);
5406 leency 97
			if (Form.status_window>2) { DrawTitle(#window_title); break; } else DrawTitle("");
6008 leency 98
			draw_top_bar();
6091 leency 99
			DrawList();
100
			DrawBar(0, row + 1 * list.item_h + list_pos, Form.cwidth, -row - 1 * list.item_h - list_pos + Form.cheight, LIST_BACKGROUND_COLOR);
4870 leency 101
			break;
5403 leency 102
	}
4870 leency 103
}
104
 
6091 leency 105
void DrawList() {
106
	list.count = 0;
107
	row = -1;
108
	app_path_collection.drop();
109
	list_pos = list.y;
110
	list.column_max = window_width - 10 / list.item_w;
111
	ini_enum_sections stdcall (#settings_ini_path, #process_sections);
112
	list.visible = list.count;
5151 leency 113
}
4870 leency 114
 
5403 leency 115
byte draw_icons_from_section(dword key_value, key_name, sec_name, f_name)
5151 leency 116
{
5405 leency 117
	int tmp,
6091 leency 118
		icon_id,
119
		icon_char_pos;
5151 leency 120
 
6192 leency 121
	//do not show items located in /kolibrios/ if this directory not mounted
122
	if (!strncmp(key_value, "/kolibrios/", 11)) && (!kolibrios_mounted) return true;
123
 
6091 leency 124
	if (col==list.column_max) {
5151 leency 125
		row++;
126
		col=0;
127
	}
5424 leency 128
 
6091 leency 129
	if (col==0) DrawBar(0, row * list.item_h + list_pos, Form.cwidth, list.item_h, LIST_BACKGROUND_COLOR);
130
	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);
131
	tmp = list.item_w/2;
5405 leency 132
 
133
	icon_char_pos = strchr(key_value, ',');
5624 leency 134
	if (icon_char_pos) icon_id = atoi(icon_char_pos+1); else icon_id = default_icon;
6091 leency 135
	img_draw stdcall(skin.image, col*list.item_w+tmp-10, row*list.item_h+5 + list_pos, 32, 32, 0, icon_id*32);
136
	if (icon_char_pos) ESBYTE[icon_char_pos] = '\0'; //delete icon from string
137
	app_path_collection.add(key_value);
138
	//label.write_center(col*list.item_w+7,row*list.item_h+47 + list_pos, list.item_w,0, LIST_BACKGROUND_COLOR, 0xDCDCDC, 12, key_name);
139
	label.write_center(col*list.item_w+6,row*list.item_h+46 + list_pos, list.item_w,0, LIST_BACKGROUND_COLOR, 0x000000, 12, key_name);
140
	if (list.cur_y == list.count) DrawWideRectangle(col*list.item_w+6, row*list.item_h + list_pos,list.item_w,list.item_h-5, 2, 0x0080FF);
141
	list.count++;
5151 leency 142
	col++;
5656 pavelyakov 143
	return true;
5151 leency 144
}
145
 
5403 leency 146
 
6091 leency 147
int old_row; //to detect empty sections
5424 leency 148
byte process_sections(dword sec_name, f_name)
4870 leency 149
{
5817 leency 150
	int text_len;
5656 pavelyakov 151
	if (!strcmp(sec_name, "Config")) return true;
4870 leency 152
 
6091 leency 153
	if ((col==0) && (row==old_row))
5403 leency 154
	{
6091 leency 155
		list_pos -= 28;
5403 leency 156
	}
157
	else
158
	{
6091 leency 159
		row++;
5403 leency 160
	}
6091 leency 161
	col = 0;
162
	old_row = row;
163
	DrawBar(0, row * list.item_h + list_pos, Form.cwidth , 29, LIST_BACKGROUND_COLOR);
164
	text_len = label.write(10, row * list.item_h + 10 + list_pos, LIST_BACKGROUND_COLOR, 0, 15, sec_name);
165
	DrawBar(text_len+20, row * list.item_h + list_pos + 20, Form.cwidth-text_len-20, 1, 0xDCDCDC);
166
	DrawBar(text_len+20, row * list.item_h + list_pos + 21, Form.cwidth-text_len-20, 1, 0xFCFCFC);
167
	list_pos += 29;
168
	ini_enum_keys stdcall (f_name, sec_name, #draw_icons_from_section);
5656 pavelyakov 169
	return true;
4870 leency 170
}
171
 
5403 leency 172
void draw_top_bar()
173
{
6091 leency 174
	DrawBar(0,0,Form.cwidth, list.y-2, system.color.work);
6177 leency 175
	DrawBar(0,list.y-2, Form.cwidth, 1, MixColors(system.color.work, system.color.work_graph, 180));
6091 leency 176
	DrawBar(0,list.y-1, Form.cwidth, 1, system.color.work_graph);
177
	label.write_center(0,5, Form.cwidth, list.y, system.color.work, system.color.work_text, 16, #window_title);
5403 leency 178
}
4870 leency 179
 
180
 
5403 leency 181
 
4870 leency 182
stop: