Subversion Repositories Kolibri OS

Rev

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

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