Subversion Repositories Kolibri OS

Rev

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

  1.  
  2. #define MEMSIZE 0x23E80
  3. #include "..\lib\kolibri.h"
  4. #include "..\lib\strings.h"
  5. #include "..\lib\mem.h"
  6. #include "..\lib\file_system.h"
  7. #include "..\lib\dll.h"
  8. #include "..\lib\figures.h"
  9.  
  10. #include "..\lib\lib.obj\libio_lib.h"
  11. #include "..\lib\lib.obj\libini.h"
  12. #include "..\lib\lib.obj\box_lib.h"
  13.  
  14. #include "..\lib\patterns\libimg_load_skin.h"
  15.  
  16. #define WINDOW_TITLE "System panels configuration"
  17.  
  18. frame taskbar_frame = { 0, 000, 10, 188, 14, 0x000111, 0xFFFfff, 1, " Taskbar ", 0, 0, 6, 0x000111, 0xCCCccc };
  19. frame docky_frame = { 0, 000, 10, 73, 217, 0x000111, 0xFFFfff, 1, " Docky ", 0, 0, 6, 0x000111, 0xCCCccc };
  20.  
  21. char taskbar_ini_path[] = "/sys/settings/taskbar.ini";
  22. char taskbar_c_flags[] = "Flags";
  23. char taskbar_c_variables[] = "Variables";
  24. char docky_ini_path[] = "/sys/settings/docky.ini";
  25.  
  26. unsigned char panels_img_data[] = FROM "panels_image.raw";
  27. raw_image panels_img = { 37, 27, #panels_img_data };
  28.  
  29. system_colors sc;
  30. proc_info Form;
  31.  
  32. struct docky_cfg {
  33.         word fsize;
  34.         byte location, ashow;
  35. } docky_cfg;
  36.  
  37. struct taskbar_cfg {
  38.         byte Attachment;
  39.         byte PanelHeight, SoftenHeight, ButtonOffset;
  40.         byte SoftenUp, SoftenDown, MinLeftButton, MinRightButton, MenuButton,
  41.              RunApplButton, ClnDeskButton, Clock, CpuUsage, ChangeLang;
  42. } taskbar_cfg;
  43.  
  44. enum {
  45.         TASKBAR,
  46.         DOCKY
  47. };
  48.  
  49.  
  50. void main()
  51. {
  52.         dword id, key;
  53.  
  54.         mem_Init();
  55.         if (load_dll2(libini, #lib_init,1)!=0) notify("Error: library doesn't exists - libini");
  56.         if (load_dll2(boxlib, #box_lib_init,0)!=0) notify("Eror: library doesn't exists - boxlib");
  57.  
  58.         LoadCfg();
  59.  
  60.         loop() switch(WaitEvent())
  61.         {
  62.                 case evButton:
  63.                                 id=GetButtonID();
  64.                                 if (id==1) ExitProcess();
  65.                                 //taskbar buttons
  66.                                 if (id>=100) && (id<200)
  67.                                 {
  68.                                         if (id==100) taskbar_cfg.Attachment ^= 1;
  69.                                         if (id==105) taskbar_cfg.SoftenUp ^= 1;
  70.                                         if (id==106) taskbar_cfg.SoftenDown ^= 1;
  71.                                         if (id==107) taskbar_cfg.MinLeftButton ^= 1;
  72.                                         if (id==108) taskbar_cfg.MinRightButton ^= 1;
  73.                                         if (id==109) taskbar_cfg.RunApplButton ^= 1;
  74.                                         if (id==110) taskbar_cfg.ClnDeskButton ^= 1;
  75.                                         if (id==111) taskbar_cfg.Clock ^= 1;
  76.                                         if (id==112) taskbar_cfg.CpuUsage ^= 1;
  77.                                         if (id==113) taskbar_cfg.ChangeLang ^= 1;
  78.                                         if (id==114) taskbar_cfg.MenuButton ^= 1;
  79.                                         if (id==120) taskbar_cfg.PanelHeight++;
  80.                                         if (id==121) && (taskbar_cfg.PanelHeight>6) taskbar_cfg.PanelHeight--;
  81.                                         if (id==122) taskbar_cfg.SoftenHeight++;
  82.                                         if (id==123) && (taskbar_cfg.SoftenHeight>0) taskbar_cfg.SoftenHeight--;
  83.                                         if (id==124) taskbar_cfg.ButtonOffset++;
  84.                                         if (id==125) && (taskbar_cfg.ButtonOffset>0) taskbar_cfg.ButtonOffset--;
  85.                                         DrawWindowContent(TASKBAR);
  86.                                         SaveCfg(TASKBAR);
  87.                                         RestartProcess(TASKBAR);
  88.                                 }
  89.                                 //docky buttons                
  90.                                 if (id>=200)
  91.                                 {
  92.                                         if (id==200)
  93.                                         {
  94.                                                      if (docky_cfg.location==1) docky_cfg.location = 2;
  95.                                                 else if (docky_cfg.location==2) docky_cfg.location = 3;
  96.                                                 else if (docky_cfg.location==3) docky_cfg.location = 1;
  97.                                         }
  98.                                         if (id==201) docky_cfg.fsize ^= 1;
  99.                                         if (id==202) docky_cfg.ashow ^= 1;
  100.                                         DrawWindowContent(DOCKY);
  101.                                         SaveCfg(DOCKY);
  102.                                         RestartProcess(DOCKY);
  103.                                 }
  104.                                 break;
  105.                                
  106.                 case evKey:
  107.                                 key = GetKey();
  108.                                 if (key==27) ExitProcess();
  109.                                 break;
  110.                        
  111.                 case evReDraw:
  112.                                 sc.get();
  113.                                 DefineAndDrawWindow(130, 150, 390, 300+GetSkinHeight(),0x34,sc.work,WINDOW_TITLE);
  114.                                 GetProcessInfo(#Form, SelfInfo);
  115.                                 if (Form.status_window>2) break;
  116.                                 taskbar_frame.size_x = docky_frame.size_x = - taskbar_frame.start_x * 2 + Form.cwidth;
  117.                                 taskbar_frame.font_color = docky_frame.font_color = sc.work_text;
  118.                                 taskbar_frame.font_backgr_color = docky_frame.font_backgr_color = sc.work;
  119.                                 taskbar_frame.ext_col = docky_frame.ext_col = sc.work_graph;
  120.                                 DrawWindowContent();
  121.         }
  122. }
  123.  
  124.  
  125. void DrawWindowContent()
  126. {
  127.         word win_center_x;
  128.  
  129.   frame_draw stdcall (#taskbar_frame);
  130.         DefineButton(22, taskbar_frame.start_y + 12, panels_img.w-1, 27-1, 100 + BT_HIDE, 0);
  131.         _PutImage(22, taskbar_frame.start_y + 12,  37, 27, taskbar_cfg.Attachment * 37 * 27 * 3 + panels_img.data);
  132.         WriteText(68, taskbar_frame.start_y + 20, 0x80, 0x333222, "Click on image to change position");
  133.         PanelCfg_CheckBox(22, taskbar_frame.start_y +  48, 105, "Soften Up", taskbar_cfg.SoftenUp);
  134.         PanelCfg_CheckBox(22, taskbar_frame.start_y +  68, 106, "Soften Down", taskbar_cfg.SoftenDown);
  135.         PanelCfg_CheckBox(22, taskbar_frame.start_y +  88, 107, "Min Left Button", taskbar_cfg.MinLeftButton);
  136.         PanelCfg_CheckBox(22, taskbar_frame.start_y + 108, 108, "Min Right Button", taskbar_cfg.MinRightButton);
  137.         win_center_x = Form.cwidth / 2;
  138.         PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y +  48, 111, "Clock", taskbar_cfg.Clock);
  139.         PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y +  68, 112, "Cpu Usage", taskbar_cfg.CpuUsage);
  140.         PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y +  88, 113, "Change Language", taskbar_cfg.ChangeLang);
  141.         PanelCfg_CheckBox(win_center_x, taskbar_frame.start_y + 108, 114, "Menu Button", taskbar_cfg.MenuButton);      
  142.         PanelCfg_MoreLessBox(22, taskbar_frame.start_y + 131, 120, 121, taskbar_cfg.PanelHeight, "Panel Height");
  143.         PanelCfg_MoreLessBox(win_center_x, taskbar_frame.start_y + 131, 122, 123, taskbar_cfg.SoftenHeight, "Soften Height");
  144.         PanelCfg_MoreLessBox(22, taskbar_frame.start_y + 159, 124, 125, taskbar_cfg.ButtonOffset, "Button Offset");
  145.  
  146.   frame_draw stdcall (#docky_frame);
  147.         DefineButton(22, docky_frame.start_y + 12, panels_img.w-1, 27-1, 200 + BT_HIDE, 0);
  148.         _PutImage(22, docky_frame.start_y + 12,  37, 27, docky_cfg.location + 1 * 37 * 27 * 3 + panels_img.data);
  149.         WriteText(68, docky_frame.start_y + 20, 0x80, 0x333222, "Click on image to change position");
  150.  
  151.         PanelCfg_CheckBox(22, docky_frame.start_y + 48, 201, "Full width",  docky_cfg.fsize);
  152.         PanelCfg_CheckBox(win_center_x, docky_frame.start_y + 48, 202, "Always show", docky_cfg.ashow);
  153. }
  154.  
  155. void LoadCfg()
  156. {
  157.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Attachment", 1);     taskbar_cfg.Attachment = EAX;
  158.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenUp", 1);       taskbar_cfg.SoftenUp = EAX;
  159.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenDown", 1);     taskbar_cfg.SoftenDown = EAX;
  160.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinLeftButton", 1);  taskbar_cfg.MinLeftButton = EAX;
  161.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinRightButton", 1); taskbar_cfg.MinRightButton = EAX;
  162.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Clock", 1);          taskbar_cfg.Clock = EAX;
  163.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "CpuUsage", 1);       taskbar_cfg.CpuUsage = EAX;
  164.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "ChangeLang", 1);     taskbar_cfg.ChangeLang = EAX;
  165.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MenuButton", 1);     taskbar_cfg.MenuButton = EAX;
  166.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "PanelHeight", 18);    taskbar_cfg.PanelHeight = EAX;
  167.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "SoftenHeight", 4);    taskbar_cfg.SoftenHeight = EAX;
  168.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonTopOffset", 3); taskbar_cfg.ButtonOffset = EAX;
  169.         ini_get_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonBotOffset", 3); taskbar_cfg.ButtonOffset = EAX;
  170.  
  171.         ini_get_int stdcall (#docky_ini_path, "@", "location", 0);  docky_cfg.location = EAX;
  172.         ini_get_int stdcall (#docky_ini_path, "@", "fsize", 0);     docky_cfg.fsize = EAX;
  173.         ini_get_int stdcall (#docky_ini_path, "@", "ashow", 0);     docky_cfg.ashow = EAX;
  174. }
  175.  
  176. void SaveCfg(byte panel_type)
  177. {
  178.         if (panel_type==TASKBAR) {
  179.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Attachment", taskbar_cfg.Attachment);
  180.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenUp", taskbar_cfg.SoftenUp);
  181.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "SoftenDown", taskbar_cfg.SoftenDown);
  182.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinLeftButton", taskbar_cfg.MinLeftButton);
  183.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MinRightButton", taskbar_cfg.MinRightButton);
  184.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "RunApplButton", taskbar_cfg.RunApplButton);
  185.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "ClnDeskButton", taskbar_cfg.ClnDeskButton);
  186.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Clock", taskbar_cfg.Clock);
  187.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "CpuUsage", taskbar_cfg.CpuUsage);
  188.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "ChangeLang", taskbar_cfg.ChangeLang);
  189.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "MenuButton", taskbar_cfg.MenuButton);
  190.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "PanelHeight", taskbar_cfg.PanelHeight);
  191.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "SoftenHeight", taskbar_cfg.SoftenHeight);
  192.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonTopOffset", taskbar_cfg.ButtonOffset);
  193.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_variables, "ButtonBottOffset", taskbar_cfg.ButtonOffset);
  194.         }
  195.         if (panel_type==DOCKY) {
  196.                 ini_set_int stdcall (#taskbar_ini_path, #taskbar_c_flags, "Attachment", taskbar_cfg.Attachment);
  197.                 ini_set_int stdcall (#docky_ini_path, "@", "location", docky_cfg.location);
  198.                 ini_set_int stdcall (#docky_ini_path, "@", "fsize", docky_cfg.fsize);
  199.                 ini_set_int stdcall (#docky_ini_path, "@", "ashow", docky_cfg.ashow);
  200.         }
  201. }
  202.  
  203. void RestartProcess(byte panel_type)
  204. {
  205.         int i;
  206.         dword proc_name;
  207.         proc_info Process;
  208.         if (panel_type == TASKBAR) proc_name = "@taskbar";
  209.         if (panel_type == DOCKY) proc_name = "@docky";
  210.         for (i=0; i<1000; i++;)
  211.         {
  212.                 GetProcessInfo(#Process, i);
  213.                 if (strcmpi(#Process.name, proc_name)==0) { KillProcess(Process.ID); break; }
  214.         }
  215.         RunProgram(proc_name, "");
  216.  
  217.         if (panel_type == TASKBAR) pause(50);
  218.         if (panel_type == DOCKY) pause(120);
  219.         GetProcessInfo(#Form, SelfInfo);
  220.         ActivateWindow(GetProcessSlot(Form.ID));
  221. }
  222.  
  223.  
  224.  
  225. void PanelCfg_CheckBox(dword x, y, id, text, byte value) {
  226.         CheckBox(x, y, 14, 14, id, text, sc.work_graph, sc.work_text, value);
  227. }
  228.  
  229. void PanelCfg_MoreLessBox(dword x, y, id_more, id_less; byte value; dword text) {
  230.         MoreLessBox(x, y, 18, id_more, id_less, sc.work_graph, sc.work_button, sc.work_button_text, value, text);
  231. }
  232.  
  233.  
  234. stop: