Subversion Repositories Kolibri OS

Rev

Rev 5407 | Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /*
  2. SOFTWARE CENTER v2.21
  3. */
  4.  
  5. #define MEMSIZE 0x3E80
  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"
  11. #include "..\lib\figures.h"
  12.  
  13. #include "..\lib\lib.obj\libio_lib.h"
  14. #include "..\lib\lib.obj\libimg_lib.h"
  15. #include "..\lib\lib.obj\libini.h"
  16.  
  17. #include "..\lib\patterns\libimg_load_skin.h"
  18.  
  19. system_colors sc;
  20. proc_info Form;
  21. mouse m;
  22.  
  23. int item_id_need_to_run=-1,
  24.     current_item_id;
  25.  
  26. int window_width,
  27.     window_height;
  28.  
  29. int col_max,
  30.     cell_w,
  31.     cell_h,
  32.     list_pos,
  33.     list_top,
  34.     row,
  35.     col,
  36.     default_icon;
  37.  
  38. char window_title[128],
  39.      settings_ini_path[256] = "/sys/settings/";
  40.  
  41. #define LIST_BACKGROUND_COLOR 0xF3F3F3
  42.  
  43. libimg_image skin;
  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;
  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;
  56.         ini_get_int stdcall (#settings_ini_path, "Config", "default_icon", 0);
  57.         default_icon = EAX;
  58. }
  59.  
  60.  
  61. void main()
  62. {  
  63.         dword id, key;
  64.         mem_Init();
  65.         if (load_dll2(libio,  #libio_init,1)!=0) notify("Error: library doesn't exists - libio");
  66.         if (load_dll2(libimg, #libimg_init,1)!=0) notify("Error: library doesn't exists - libimg");
  67.         if (load_dll2(libini, #lib_init,1)!=0) notify("Error: library doesn't exists - libini");
  68.  
  69.         Libimg_LoadImage(#skin, "/sys/iconstrp.png");
  70.         Libimg_FillTransparent(skin.image, skin.w, skin.h, LIST_BACKGROUND_COLOR);
  71.  
  72.         if (param)
  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.         }
  81.         load_config();
  82.  
  83.         loop()
  84.         {
  85.       switch(WaitEvent())
  86.       {
  87.          case evButton:
  88.             id=GetButtonID();              
  89.             if (id==1) ExitProcess();
  90.             if (id>=100)
  91.             {
  92.                 item_id_need_to_run = id - 100;
  93.                 current_item_id = 0;
  94.                 ini_enum_sections stdcall (#settings_ini_path, #draw_section);
  95.                 item_id_need_to_run = -1;
  96.             }
  97.                         break;
  98.  
  99.          case evReDraw:
  100.                         sc.get();
  101.                         DefineAndDrawWindow(GetScreenWidth()-window_width/2,GetScreenHeight()-window_height/2,window_width,window_height,0x74,sc.work,"");
  102.                         GetProcessInfo(#Form, SelfInfo);
  103.                         if (Form.status_window>2) { DrawTitle(#window_title); break; } else DrawTitle("");
  104.                         col_max = Form.cwidth - 10 / cell_w;
  105.                         current_item_id = 0;
  106.                         draw_top_bar();
  107.                         ini_enum_sections stdcall (#settings_ini_path, #draw_section);
  108.                         DrawBar(0, row + 1 * cell_h + list_pos, Form.cwidth, -row - 1 * cell_h - list_pos + Form.cheight, LIST_BACKGROUND_COLOR);
  109.                         break;
  110.       }
  111.         }
  112. }
  113.  
  114. byte search_for_id_need_to_run(dword key_value, key_name, sec_name, f_name)
  115. {
  116.         int icon_char_pos;
  117.         if (item_id_need_to_run == current_item_id)
  118.         {
  119.                 icon_char_pos = strchr(key_value, ',');
  120.                 if (icon_char_pos) ESBYTE[key_value + icon_char_pos - 1] = 0; //delete icon from string
  121.                 RunProgram(key_value, "");
  122.         }
  123.         current_item_id++;
  124.         return 1;
  125. }
  126.  
  127.  
  128. byte draw_icons_from_section(dword key_value, key_name, sec_name, f_name)
  129. {
  130.         int tmp,
  131.             icon_id,
  132.             icon_char_pos;
  133.  
  134.         if (col==col_max) {
  135.                 row++;
  136.                 col=0;
  137.         }
  138.         if (col==0) DrawBar(0, row * cell_h + list_pos, Form.cwidth, cell_h, LIST_BACKGROUND_COLOR);
  139.         DefineButton(col*cell_w+6,row*cell_h + list_pos,cell_w,cell_h-5,current_item_id + 100 + BT_HIDE,0);
  140.         tmp = cell_w/2;
  141.  
  142.         icon_char_pos = strchr(key_value, ',');
  143.         if (icon_char_pos) icon_id = atoi(key_value + icon_char_pos); else icon_id = default_icon;
  144.         img_draw stdcall(skin.image, col*cell_w+tmp-10, row*cell_h+5 + list_pos, 32, 32, 0, icon_id*32);
  145.         WriteTextCenter(col*cell_w+7,row*cell_h+47 + list_pos,cell_w,0xDCDCDC,key_name);
  146.         WriteTextCenter(col*cell_w+6,row*cell_h+46 + list_pos,cell_w,0x000000,key_name);
  147.         current_item_id++;
  148.         col++;
  149.         return 1;
  150. }
  151.  
  152.  
  153. byte draw_section(dword sec_name, f_name)
  154. {
  155.         if (strcmp(sec_name, "Config")==0) return 1;
  156.  
  157.         if (item_id_need_to_run!=-1)
  158.         {
  159.                 ini_enum_keys stdcall (f_name, sec_name, #search_for_id_need_to_run);
  160.         }
  161.         else
  162.         {
  163.                 row++;
  164.                 col = 0;
  165.                 DrawBar(0, row * cell_h + list_pos, Form.cwidth , 20, LIST_BACKGROUND_COLOR);
  166.                 WriteTextB(10, row * cell_h + 9 + list_pos, 0x90, 0x000000, sec_name);
  167.                 list_pos += 20;
  168.                 ini_enum_keys stdcall (f_name, sec_name, #draw_icons_from_section);
  169.         }
  170.         return 1;
  171. }
  172.  
  173. void draw_top_bar()
  174. {
  175.         int top_position = 25;
  176.         DrawBar(0,0,Form.cwidth, top_position-1, sc.work);
  177.         DrawBar(0,top_position-1, Form.cwidth, 1, sc.work_graph);
  178.         WriteTextB(Form.cwidth/2-70, 9, 0x90, sc.work_text, #window_title);
  179.         list_top = top_position;
  180.         list_pos = list_top;
  181.         row = -1;
  182. }
  183.  
  184.  
  185.  
  186. stop:
  187.