forked from KolibriOS/kolibrios
software_widget 2.2: work with param, fix for roll-up
git-svn-id: svn://kolibrios.org@5406 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
65eca8fa95
commit
57aebb0407
@ -1,7 +1,7 @@
|
|||||||
C-- software_widget.c
|
C-- software_widget.c
|
||||||
@del game_center
|
@del game_center
|
||||||
@copy software_widget.com game_center
|
@copy software_widget.com game_center
|
||||||
@copy software_widget.com control_panel
|
@copy software_widget.com system_panel
|
||||||
@del software_widget.com
|
@del software_widget.com
|
||||||
@pause
|
@pause
|
||||||
@del warning.txt
|
@del warning.txt
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
SOFTWARE CENTER v2.15
|
SOFTWARE CENTER v2.2
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define MEMSIZE 0x3E80
|
#define MEMSIZE 0x3E80
|
||||||
@ -86,8 +86,15 @@ void main()
|
|||||||
if (load_dll2(libini, #lib_init,1)!=0) notify("Error: library doesn't exists - libini");
|
if (load_dll2(libini, #lib_init,1)!=0) notify("Error: library doesn't exists - libini");
|
||||||
skin.load();
|
skin.load();
|
||||||
|
|
||||||
strcat(#settings_ini_path, #program_path + strrchr(#program_path, '/'));
|
if (#param)
|
||||||
strcat(#settings_ini_path, ".ini");
|
{
|
||||||
|
strcpy(#settings_ini_path, #param);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
strcat(#settings_ini_path, #program_path + strrchr(#program_path, '/'));
|
||||||
|
strcat(#settings_ini_path, ".ini");
|
||||||
|
}
|
||||||
load_config();
|
load_config();
|
||||||
|
|
||||||
loop()
|
loop()
|
||||||
@ -108,9 +115,9 @@ void main()
|
|||||||
|
|
||||||
case evReDraw:
|
case evReDraw:
|
||||||
sc.get();
|
sc.get();
|
||||||
DefineAndDrawWindow(GetScreenWidth()-window_width/2,GetScreenHeight()-window_height/2,window_width,window_height,0x74,sc.work," ");
|
DefineAndDrawWindow(GetScreenWidth()-window_width/2,GetScreenHeight()-window_height/2,window_width,window_height,0x74,sc.work,"");
|
||||||
GetProcessInfo(#Form, SelfInfo);
|
GetProcessInfo(#Form, SelfInfo);
|
||||||
if (Form.status_window>2) break;
|
if (Form.status_window>2) { DrawTitle(#window_title); break; } else DrawTitle("");
|
||||||
col_max = Form.cwidth - 10 / cell_w;
|
col_max = Form.cwidth - 10 / cell_w;
|
||||||
current_item_id = 0;
|
current_item_id = 0;
|
||||||
draw_top_bar();
|
draw_top_bar();
|
||||||
|
Loading…
Reference in New Issue
Block a user