Subversion Repositories Kolibri OS

Rev

Rev 7386 | Rev 7422 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. //Leency, Veliant, Punk_Joker, PavelYakov & KolibriOS Team 2008-2018
  2. //GNU GPL licence.
  3.  
  4. // 70.5 - get volume info and label
  5.  
  6. #ifndef AUTOBUILD
  7. #include "lang.h--"
  8. #endif
  9.  
  10. //libraries
  11. #define MEMSIZE 1024 * 720
  12. #include "../lib/clipboard.h"
  13. #include "../lib/strings.h"
  14. #include "../lib/mem.h"
  15. #include "../lib/fs.h"
  16. #include "../lib/gui.h"
  17. #include "../lib/list_box.h"
  18. #include "../lib/random.h"
  19. #include "../lib/kfont.h"
  20. #include "../lib/collection.h"
  21. #include "../lib/menu.h"
  22. #include "../lib/copyf.h"
  23.  
  24. #include "../lib/obj/libini.h"
  25. #include "../lib/obj/box_lib.h"
  26. #include "../lib/obj/libimg.h"
  27.  
  28. #include "../lib/patterns/history.h"
  29.  
  30. //images
  31. #include "imgs/left_p.txt"
  32.  
  33. //Button IDs
  34. enum {
  35.         POPUP_BTN1 = 201,
  36.         POPUP_BTN2 = 202,
  37.         BREADCRUMB_ID = 300
  38. };
  39.  
  40. //NewElement options
  41. enum {
  42.         CREATE_FILE=1,
  43.         CREATE_FOLDER,
  44.         RENAME_ITEM
  45. };
  46.  
  47. //OpenDir options
  48. enum {
  49.         ONLY_SHOW,
  50.         WITH_REDRAW,
  51.         ONLY_OPEN
  52. };
  53.  
  54. dword col_padding, col_selec, col_lpanel, col_work, col_graph, col_list_line=0xDDD7CF;
  55.  
  56. int toolbar_buttons_x[7]={9,46,85,134,167,203};
  57.  
  58. byte active_about=0;
  59. word about_window;
  60. word settings_window;
  61. byte active_settings=0;
  62. dword _not_draw = false;
  63. byte menu_call_mouse=0;
  64. byte exif_load=0;
  65.  
  66. byte del_active=0;
  67. byte new_element_active=0;
  68.  
  69. llist files, files_active, files_inactive;
  70.  
  71. byte list_full_redraw;
  72.  
  73. dword buf;
  74. dword file_mas[6898];
  75. int selected_count;
  76. int count_dir;
  77.  
  78. byte
  79.         path[4096],
  80.         file_path[4096],
  81.         file_name[256],
  82.         new_element_name[256],
  83.         temp[4096],
  84.         itdir;
  85.  
  86. char active_path[4096], inactive_path[4096];
  87.  
  88. dword eolite_ini_path[4096];
  89. _ini ini;
  90.  
  91. char scroll_used=false;
  92.  
  93. dword menu_stak,about_stak,properties_stak,settings_stak,copy_stak,delete_stak;
  94.  
  95. proc_info Form;
  96. int sc_slider_h;
  97. int j, i;
  98. int action_buf;
  99. int rand_n;
  100.  
  101. char sort_num=2;
  102. int active_panel=1;
  103.  
  104. libimg_image icons16_default;
  105. libimg_image icons16_selected;
  106.  
  107. libimg_image icons32_default;
  108. libimg_image icons32_selected;
  109.  
  110. #define STATUS_BAR_H 16;
  111. int status_bar_h = 0;
  112.  
  113. int icon_size = 16;
  114.  
  115. edit_box new_file_ed = {200,213,180,0xFFFFFF,0x94AECE,0xFFFFFF,0xFFFFFF,0x10000000,
  116.         248,#new_element_name,0,100000000000010b,6,0};
  117. PathShow_data FileShow = {0, 56,215, 8, 100, 1, 0, 0x0, 0xFFFfff, #file_name, #temp, 0};
  118. byte cmd_free=0;
  119. #include "include\translations.h"
  120.  
  121. #include "include\settings.h"
  122. #include "include\progress_dialog.h"
  123. #include "include\copy.h"
  124. #include "include\gui.h"
  125. #include "include\sorting.h"
  126. #include "include\icons.h"
  127. #include "include\left_panel.h"
  128. #include "include\menu.h"
  129. #include "include\delete.h"
  130. #include "include\about.h"
  131. #include "include\properties.h"
  132. #include "include\breadcrumbs.h"
  133.  
  134. void main()
  135. {
  136.         bool update_files_list = false;
  137.         dword files_count = 0;
  138.         dword countPathFile = 0;
  139.         dword countPathFile2 = 0;
  140.         dword files_y = 0;
  141.         dword countDisk = 0;
  142.         dword id;
  143.         dword devbuf;
  144.         byte count_sl = 0;
  145.         signed x_old, y_old, dif_x, dif_y, adif_x, adif_y;
  146.         char stats;
  147.         rand_n = random(40);
  148.  
  149.         devbuf = malloc(10000);
  150.        
  151.         load_dll(boxlib, #box_lib_init,0);
  152.         load_dll(libini, #lib_init,1);
  153.         load_dll(libio,  #libio_init,1);
  154.         load_dll(libimg, #libimg_init,1);
  155.        
  156.         SetAppColors();
  157.         LoadIniSettings();
  158.         SystemDiscs.Get();
  159.  
  160.         Libimg_LoadImage(#icons16_default, "/sys/icons16.png");
  161.         Libimg_LoadImage(#icons16_selected, "/sys/icons16.png");
  162.         Libimg_ReplaceColor(icons16_selected.image, icons16_selected.w, icons16_selected.h, 0xffFFFfff, col_selec);
  163.         Libimg_ReplaceColor(icons16_selected.image, icons16_selected.w, icons16_selected.h, 0xffCACBD6, MixColors(col_selec, 0, 200));
  164.  
  165.         //-p just show file/folder properties dialog
  166.         if (param) && (param[0]=='-') && (param[1]=='p')
  167.         {
  168.                 strcpy(#file_path, #param + 3);
  169.                 strcpy(#file_name, #param + strrchr(#param, '/'));
  170.                 properties_dialog();
  171.                 ExitProcess(); 
  172.         }
  173.  
  174.         if (param)
  175.         {
  176.                 if (strlen(#param)>1) && (param[strlen(#param)-1]=='/') param[strlen(#param)-1]=NULL; //no "/" at the end
  177.  
  178.                 if (dir_exists(#param)==true)
  179.                 {
  180.                         strcpy(#path, #param);
  181.                 }
  182.                 else
  183.                 {
  184.                         notify(T_NOTIFY_APP_PARAM_WRONG);
  185.                 }
  186.         }
  187.        
  188.         Open_Dir(#path,ONLY_OPEN);
  189.         strcpy(#inactive_path, #path);
  190.         llist_copy(#files_inactive, #files);
  191.         SetEventMask(EVM_REDRAW+EVM_KEY+EVM_BUTTON+EVM_MOUSE+EVM_MOUSE_FILTER);
  192.         loop(){
  193.                 switch(WaitEventTimeout(50))
  194.                 {
  195.                         case evMouse:
  196.                                 if (del_active) || (Form.status_window>2) break;
  197.                                 if (new_element_active)
  198.                                 {
  199.                                         edit_box_mouse stdcall(#new_file_ed);
  200.                                         break;
  201.                                 }                              
  202.                                
  203.                                 mouse.get();
  204.                                
  205.                                 if (!mouse.mkm) && (stats>0) stats = 0;
  206.                                 if (mouse.mkm) && (!stats)
  207.                                 {
  208.                                         x_old = mouse.x;
  209.                                         y_old = mouse.y;
  210.                                         stats = 1;
  211.                                 }
  212.                                 if (mouse.mkm) && (stats==1)
  213.                                 {
  214.                                         dif_x = mouse.x-x_old;
  215.                                         dif_y = mouse.y-y_old;
  216.                                         adif_x = fabs(dif_x);
  217.                                         adif_y = fabs(dif_y);
  218.                                        
  219.                                         if (adif_x>adif_y)
  220.                                         {
  221.                                                 if (dif_x > 150)
  222.                                                 {
  223.                                                         if (history.forward())
  224.                                                                 {
  225.                                                                         strcpy(#path, history.current());
  226.                                                                         files.KeyHome();
  227.                                                                         Open_Dir(#path,WITH_REDRAW);
  228.                                                                 }
  229.                                                         stats = 0;
  230.                                                 }
  231.                                                 if (dif_x < -150)
  232.                                                 {
  233.                                                         GoBack();
  234.                                                         stats = 0;
  235.                                                 }
  236.                                         }
  237.                                         else
  238.                                         {
  239.                                                 if (dif_y < -100)
  240.                                                 {
  241.                                                         Dir_Up();
  242.                                                         stats = 0;
  243.                                                 }
  244.                                         }
  245.                                 }      
  246.                                 if (files.MouseOver(mouse.x, mouse.y))
  247.                                 {
  248.                                         //select file
  249.                                         if (mouse.key&MOUSE_LEFT) && (mouse.up)
  250.                                         {
  251.                                                 if (files.ProcessMouse(mouse.x, mouse.y)) List_ReDraw(); else {
  252.                                                         if (mouse.y - files.y / files.item_h + files.first == files.cur_y) Open(0);
  253.                                                 }
  254.                                         }
  255.                                         //file menu
  256.                                         if (mouse.key&MOUSE_RIGHT)
  257.                                         {
  258.                                                 menu_call_mouse = 1;
  259.                                                 if (files.ProcessMouse(mouse.x, mouse.y)) List_ReDraw();
  260.                                                 if (getElementSelectedFlag(files.cur_y) == false) selected_count = 0; //on redraw selection would be flashed, see [L001]
  261.                                                 menu_stak = malloc(4096);
  262.                                                 CreateThread(#FileMenu,menu_stak+4092);
  263.                                                 break;
  264.                                         }
  265.                                 }
  266.  
  267.                                 if (mouse.vert)
  268.                                 {
  269.                                         if (files.MouseScroll(mouse.vert)) List_ReDraw();
  270.                                         break;
  271.                                 }
  272.  
  273.                                 if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+16) && (mouse.y>files.y-17) && (mouse.y<files.y)
  274.                                 {
  275.                                         if (mouse.lkm==1) DrawRectangle3D(files.x+files.w+1,files.y-16,14,14,0xC7C7C7,0xFFFFFF);
  276.                                         WHILE (mouse.lkm==1) && (files.first>0)
  277.                                         {
  278.                                                 pause(8);
  279.                                                 files.first--;
  280.                                                 List_ReDraw();
  281.                                                 mouse.get();
  282.                                         }
  283.                                         DrawRectangle3D(files.x+files.w+1,files.y-16,14,14,0xFFFFFF,0xC7C7C7);
  284.                                 }
  285.  
  286.                                 if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+16) && (mouse.y>files.y+files.h-16) && (mouse.y<files.y+files.h)
  287.                                 {
  288.                                         if (mouse.lkm==1) DrawRectangle3D(files.x+files.w+1,files.y+files.h-15,14,14,0xC7C7C7,0xFFFFFF);
  289.                                         while (mouse.lkm==1) && (files.first<files.count-files.visible)
  290.                                         {
  291.                                                 pause(8);
  292.                                                 files.first++;
  293.                                                 List_ReDraw();
  294.                                                 mouse.get();
  295.                                         }
  296.                                         DrawRectangle3D(files.x+files.w+1,files.y+files.h-15,14,14,0xFFFFFF,0xC7C7C7);
  297.                                 }
  298.  
  299.                                 //Scrooll
  300.                                 if (!mouse.lkm) && (scroll_used) { scroll_used=false; Scroll(); }
  301.                                 if (mouse.x>=files.x+files.w) && (mouse.x<=files.x+files.w+18) && (mouse.y>files.y) && (mouse.y<files.y+files.h-18) && (mouse.lkm) && (!scroll_used) {scroll_used=true; Scroll();}
  302.                                
  303.                                 if (scroll_used)
  304.                                 {
  305.                                         if (sc_slider_h/2+files.y>mouse.y) || (mouse.y<0) || (mouse.y>4000) mouse.y=sc_slider_h/2+files.y; //anee eo?ni? iaa ieiii
  306.                                         id = files.first;
  307.                                         files.first = -sc_slider_h / 2 + mouse.y -j -files.y * files.count;
  308.                                         files.first /= files.h - 18;
  309.                                         if (files.visible+files.first>files.count) files.first=files.count-files.visible;
  310.                                         if (files.first<0) files.first=0;
  311.                                         if (id!=files.first) List_ReDraw();
  312.                                         break;
  313.                                 }
  314.  
  315.                                 if (two_panels.checked) && (mouse.y > files.y) && (mouse.down) {
  316.                                         if (mouse.x<Form.cwidth/2)
  317.                                         {
  318.                                                 if (active_panel!=1)
  319.                                                 {
  320.                                                         active_panel = 1;
  321.                                                         ChangeActivePanel();
  322.                                                 }
  323.                                         }
  324.                                         else
  325.                                         {
  326.                                                 if (active_panel!=2)
  327.                                                 {
  328.                                                         active_panel = 2;
  329.                                                         ChangeActivePanel();
  330.                                                 }
  331.                                         }
  332.                                 }
  333.                                 break;  
  334.         //Button pressed-----------------------------------------------------------------------------
  335.                         case evButton:
  336.                                 id=GetButtonID();
  337.  
  338.                                 if (new_element_active) || (del_active) {
  339.                                         if(POPUP_BTN1==id) || (POPUP_BTN2==id) {
  340.                                                 if (del_active) Del_File(id-POPUP_BTN2);
  341.                                                 if (new_element_active) NewElement(id-POPUP_BTN2);
  342.                                                 DeleteButton(POPUP_BTN1);
  343.                                                 DeleteButton(POPUP_BTN2);
  344.                                         }
  345.                                         break;                                 
  346.                                 }
  347.  
  348.                                 switch(id)
  349.                                 {
  350.                                         case CLOSE_BTN:
  351.                                                         KillProcess(about_window);
  352.                                                         SaveIniSettings();
  353.                                                         ExitProcess();
  354.                                         case 21: //Back
  355.                                                         GoBack();
  356.                                                         break;
  357.                                         case 22: //Forward
  358.                                                         if (history.forward())
  359.                                                         {
  360.                                                                 strcpy(#path, history.current());
  361.                                                                 files.KeyHome();
  362.                                                                 Open_Dir(#path,WITH_REDRAW);
  363.                                                         }
  364.                                                         break;
  365.                                         case 23:
  366.                                                         Dir_Up();
  367.                                                         break;
  368.                                         case 24:
  369.                                                         Copy(#file_path, CUT);
  370.                                                         break;
  371.                                         case 25:
  372.                                                         Copy(#file_path, NOCUT);
  373.                                                         break;
  374.                                         case 26:
  375.                                                         Paste();
  376.                                                         break;
  377.                                         case 31...33: //sorting
  378.                                                         sort_num = id - 30;
  379.                                                         DrawList();
  380.                                                         Open_Dir(#path,WITH_REDRAW);
  381.                                                         break;
  382.                                         case 50...60: //Actions
  383.                                                         FnProcess(id-50);
  384.                                                         break;
  385.                                         case 61: // Set path as default
  386.                                                         ini.path = GetIni(#eolite_ini_path, "EOLITE.INI");
  387.                                                         ini.section = "Config";
  388.                                                         ini.SetString("DefaultPath", #path, strlen(#path));
  389.                                                         break;
  390.                                         case 100...120:
  391.                                                 SystemDiscs.Click(id-100);
  392.                                                 break;
  393.                                         case BREADCRUMB_ID...360:
  394.                                                 ClickOnBreadCrumb(id-BREADCRUMB_ID);
  395.                                                 break;
  396.                                 }
  397.                                 break;
  398.                                
  399.         //Key pressed-----------------------------------------------------------------------------
  400.                         case evKey:
  401.                                 GetKeys();
  402.  
  403.                                 if (Form.status_window>2) break;
  404.  
  405.                                 if (new_element_active) || (del_active)
  406.                                 {
  407.                                         if (del_active)
  408.                                         {
  409.                                                 if (key_scancode == SCAN_CODE_ENTER) Del_File(true);
  410.                                                 if (key_scancode == SCAN_CODE_ESC) Del_File(false);
  411.                                         }
  412.                                         if (new_element_active)
  413.                                         {
  414.                                                 if (key_scancode == SCAN_CODE_ENTER) NewElement(true);
  415.                                                 if (key_scancode == SCAN_CODE_ESC) NewElement(false);
  416.                                                 EAX = key_editbox;
  417.                                                 edit_box_key stdcall (#new_file_ed);
  418.                                         }
  419.                                         break;
  420.                                 }
  421.  
  422.                                 if (files.ProcessKey(key_scancode))
  423.                                 {
  424.                                         List_ReDraw();
  425.                                         break;
  426.                                 }
  427.  
  428.                                 if (key_modifier&KEY_LCTRL) || (key_modifier&KEY_RCTRL)
  429.                                 {
  430.                                         switch(key_scancode)
  431.                                         {
  432.                                                 case 059...068:
  433.                                                                 key_scancode -= 59;
  434.                                                                 if (key_scancode < SystemDiscs.list.count)
  435.                                                                 {
  436.                                                                         if (!two_panels.checked)
  437.                                                                         {
  438.                                                                                 DrawRectangle(17,key_scancode*16+74,159,16, 0); //display click
  439.                                                                                 pause(7);                                                                              
  440.                                                                         }
  441.                                                                         SystemDiscs.Click(key_scancode);
  442.                                                                 }
  443.                                                                 break;
  444.                                                 case 45:  //Ctrl+X
  445.                                                                 Copy(#file_path, CUT);
  446.                                                                 break;                                         
  447.                                                 case 46:  //Ctrl+C
  448.                                                                 Copy(#file_path, NOCUT);
  449.                                                                 break;
  450.                                                 case 47:  //Ctrl+V
  451.                                                                 Paste();
  452.                                                                 break;
  453.                                                 case 032: //Ctrl+D - set as bg
  454.                                                                 strlcpy(#temp, "\\S__",4);
  455.                                                                 strcat(#temp, #file_path);
  456.                                                                 RunProgram("/sys/media/kiv", #temp);
  457.                                                                 break;
  458.                                                 case 049: //Ctrl+N - create new window
  459.                                                                 if (Form.left==98) MoveSize(Form.left-20,Form.top-20,OLD,OLD);
  460.                                                                 RunProgram(I_Path, #path);
  461.                                                                 break;
  462.                                                 case 050: //Ctrl+M
  463.                                                                 Open_Dir(#inactive_path,WITH_REDRAW);
  464.                                                                 break;
  465.                                                 case SCAN_CODE_ENTER: //Ctrl+Enter
  466.                                                                 if (!itdir) ShowOpenWithDialog();
  467.                                                                 else Open(1);
  468.                                                                 break;
  469.                                                 case 030: //Ctrl+A - select all files
  470.                                                                 for (i=0; i<files.count; i++) setElementSelectedFlag(i, true);
  471.                                                                 List_ReDraw();
  472.                                                                 DrawStatusBar();
  473.                                                                 break;
  474.                                                 case 022: //Ctrl+U - unselect all files
  475.                                                                 for (i=0; i<files.count; i++) setElementSelectedFlag(i, false);
  476.                                                                 selected_count = 0;
  477.                                                                 List_ReDraw();
  478.                                                                 DrawStatusBar();
  479.                                                                 break;
  480.                                         }
  481.                                         break;
  482.                                 }
  483.  
  484.                                 switch (key_scancode)
  485.                                 {
  486.                                                 case SCAN_CODE_BS:
  487.                                                                 //GoBack();
  488.                                                                 Dir_Up();
  489.                                                                 break;
  490.                                                 case SCAN_CODE_ENTER:
  491.                                                                 Open(0);
  492.                                                                 break;
  493.                                                 case SCAN_CODE_TAB:
  494.                                                                 if (!two_panels.checked) break;
  495.                                                                 if (active_panel==1) active_panel=2; else active_panel=1;
  496.                                                                 ChangeActivePanel();
  497.                                                                 DrawStatusBar();
  498.                                                                 break;
  499.                                                 case 093: //menu
  500.                                                                 menu_call_mouse=0;
  501.                                                                 menu_stak = malloc(4096);
  502.                                                                 CreateThread(#FileMenu,menu_stak+4092);
  503.                                                                 break;
  504.                                                 case SCAN_CODE_DEL:
  505.                                                                 Del_Form();
  506.                                                                 break;
  507.                                                 case SCAN_CODE_INS:
  508.                                                                 if (getElementSelectedFlag(files.cur_y) == true) setElementSelectedFlag(files.cur_y, false);
  509.                                                                 else setElementSelectedFlag(files.cur_y, true);
  510.                                                                 files.KeyDown();
  511.                                                                 List_ReDraw();
  512.                                                                 DrawStatusBar();
  513.                                                                 break;
  514.                                                 case 059...068: //F1-F10
  515.                                                                 FnProcess(key_scancode-58);
  516.                                                                 break;
  517.                                                 default:
  518.                                                                 for (i=files.cur_y+1; i<files.count; i++)
  519.                                                                 {
  520.                                                                         strcpy(#temp, file_mas[i]*304+buf+72);
  521.                                                                         if (temp[0]==key_ascii) || (temp[0]==key_ascii-32)
  522.                                                                         {
  523.                                                                                 files.cur_y = i - 1;
  524.                                                                                 files.KeyDown();
  525.                                                                                 List_ReDraw();
  526.                                                                                 break;
  527.                                                                         }
  528.                                                                 }
  529.                                 }                        
  530.                         break;
  531.                         case evIPC:
  532.                         case evReDraw:
  533.                                 draw_window();
  534.                                 if (action_buf)
  535.                                 {
  536.                                         if (action_buf==OPERATION_END)
  537.                                         {
  538.                                                 FnProcess(5);
  539.                                                 if (copy_stak) SelectFileByName(#copy_to+strrchr(#copy_to,'/'));
  540.                                         }
  541.                                         if (action_buf==100) Open(0);
  542.                                         if (action_buf==201) ShowOpenWithDialog();
  543.                                         if (action_buf==202) FnProcess(3); //F3
  544.                                         if (action_buf==203) FnProcess(4); //F4
  545.                                         if (action_buf==104) Copy(#file_path, NOCUT);
  546.                                         if (action_buf==105) Copy(#file_path, CUT);
  547.                                         if (action_buf==106) Paste();
  548.                                         if (action_buf==207) FnProcess(2);
  549.                                         if (action_buf==108) Del_Form();
  550.                                         if (action_buf==109) FnProcess(5);
  551.                                         if (action_buf==110) FnProcess(8);
  552.                                         action_buf=0;
  553.                                 }
  554.                         break;
  555.                         default:
  556.                                
  557.                                 ReadDir(19, devbuf, "/"); // get disk
  558.                                 if(countDisk != EBX) // if different then
  559.                                 {
  560.                                         countDisk = EBX;
  561.                                         FnProcess(5);
  562.                                 }
  563.                                 else // get current files
  564.                                 {
  565.                                         if(two_panels.checked)
  566.                                         {
  567.                                                 // this add code update list files
  568.                                                 update_files_list = false;
  569.                                                 //strcpy(#inactive_path,#path);
  570.                                                 ReadDir(19, devbuf, #inactive_path);
  571.                                                 if(countPathFile != EBX) // if different then
  572.                                                 {
  573.                                                         countPathFile = EBX;
  574.                                                         update_files_list = true;
  575.                                                 }
  576.                                                
  577.                                                 //strcpy(#active_path,#path);
  578.                                                 ReadDir(19, devbuf, #active_path);
  579.                                                 if(countPathFile2 != EBX) // if different then
  580.                                                 {
  581.                                                         countPathFile2 = EBX;
  582.                                                         update_files_list = true;
  583.                                                 }
  584.                                                 if(update_files_list) DrawFilePanels();
  585.                                         }
  586.                                         else
  587.                                         {
  588.                                                 ReadDir(19, devbuf, #path);
  589.                                                 if(countPathFile != EBX) // if different then
  590.                                                 {
  591.                                                         countPathFile = EBX;
  592.                                                         Open_Dir(#path,WITH_REDRAW);
  593.                                                 }
  594.                                         }
  595.                                 }
  596.                 }
  597.                
  598.                
  599.                
  600.                 if(cmd_free)
  601.                 {
  602.                         if(cmd_free==1)      menu_stak=free(menu_stak);
  603.                         else if(cmd_free==2) about_stak=free(about_stak);
  604.                         else if(cmd_free==3) properties_stak=free(properties_stak);
  605.                         else if(cmd_free==4) settings_stak=free(settings_stak);
  606.                         else if(cmd_free==5) copy_stak=free(copy_stak);
  607.                         else if(cmd_free==6) delete_stak=free(delete_stak);
  608.                         cmd_free = false;
  609.                 }
  610.         }
  611. }
  612.  
  613. void DrawFavButton(int x)
  614. {
  615.         _PutImage(x,10,20,22,#fav);
  616.         DefineButton(x+1,11,20-2,22-3,61+BT_HIDE,NULL);
  617. }
  618.  
  619. void draw_window()
  620. {
  621.         if (show_status_bar.checked) status_bar_h = STATUS_BAR_H; else status_bar_h = 0;
  622.         DefineAndDrawWindow(Form.left+rand_n,Form.top+rand_n,Form.width,Form.height,0x73,NULL,TITLE,0);
  623.         GetProcessInfo(#Form, SelfInfo);
  624.         if (Form.status_window>2) return;
  625.         if (Form.height < 350) { MoveSize(OLD,OLD,OLD,350); return; }
  626.         if (Form.width  < 480) { MoveSize(OLD,OLD,480,OLD); return; }
  627.         GetProcessInfo(#Form, SelfInfo); //if win_size changed
  628.         _PutImage(0,0,246,34,#toolbar);
  629.         DrawBar(127, 8, 1, 25, col_graph);
  630.         for (j=0; j<3; j++) DefineButton(toolbar_buttons_x[j]+2,5+2,31-5,29-5,21+j+BT_HIDE,NULL);
  631.         for (j=3; j<6; j++) DefineButton(toolbar_buttons_x[j],5,31,29,21+j+BT_HIDE,NULL);
  632.         DrawBar(246,0, Form.cwidth - 246, 34, col_work);
  633.         _PutImage(Form.cwidth-17,11,6,18,#dots);
  634.         DefineButton(Form.cwidth-24,7,20,25,51+BT_HIDE+BT_NOFRAME,0); //dots
  635.         //main rectangles
  636.         DrawRectangle(1,40,Form.cwidth-3,Form.cheight - 42-status_bar_h,col_graph);
  637.         DrawRectangle(0,39,Form.cwidth-1,Form.cheight - 40,col_palette[4]); //bg
  638.         for (i=0; i<5; i++) DrawBar(0, 34+i, Form.cwidth, 1, col_palette[8-i]);
  639.         llist_copy(#files_active, #files);
  640.         strcpy(#active_path, #path);
  641.         DrawStatusBar();
  642.         if (selected_count==0) Open_Dir(#path,ONLY_OPEN); //if there are no selected files -> refresh folder [L001]
  643.         DrawFilePanels();
  644. }
  645.  
  646. void DrawList()
  647. {
  648.         word sorting_arrow_x;
  649.         DrawFlatButtonSmall(files.x, files.y-17,     files.w - 141,16,31,T_FILE);
  650.         DrawFlatButtonSmall(files.x + files.w - 141, files.y-17,73,16,32,T_TYPE);
  651.         DrawFlatButtonSmall(files.x + files.w -  68, files.y-17,68,16,33,T_SIZE);
  652.         DrawFlatButtonSmall(files.x + files.w,       files.y-17,16,16, 0,"\x18");
  653.         DrawFlatButtonSmall(files.x + files.w,files.y+files.h-16,16,16,0,"\x19");
  654.         if (sort_num==1) sorting_arrow_x = files.w - 141 / 2 + files.x + 18;
  655.         if (sort_num==2) sorting_arrow_x = files.x + files.w - 90;
  656.         if (sort_num==3) sorting_arrow_x = strlen(T_SIZE)*3-30+files.x+files.w;
  657.         WriteText(sorting_arrow_x,files.y-12,0x80,col_graph,"\x19");
  658.         DrawBar(files.x+files.w,files.y,1,files.h,col_graph);
  659.         if (two_panels.checked) && (files.x<5) DrawBar(files.x+files.w+16,files.y,1,files.h,col_graph);
  660. }
  661.  
  662. void DrawStatusBar()
  663. {
  664.         char status_bar_str[80];
  665.         int go_up_folder_exists=0;
  666.         if (!show_status_bar.checked) return;
  667.         if (files.count>0) && (strcmp(file_mas[0]*304+buf+72,"..")==0) go_up_folder_exists=1;
  668.         DrawBar(1, Form.cheight - status_bar_h-1, Form.cwidth-2,  status_bar_h, system.color.work);
  669.         sprintf(#status_bar_str, STATUS_STR, files.count-go_up_folder_exists, count_dir-go_up_folder_exists, files.count-count_dir, selected_count);
  670.         WriteText(6,Form.cheight - 13,0x80,system.color.work_text,#status_bar_str);
  671. }
  672.  
  673. void DrawFilePanels()
  674. {
  675.         int files_y;
  676.         if (!two_panels.checked)
  677.         {
  678.                 DrawDeviceAndActionsLeftPanel();
  679.                 files.SetSizes(192, 57, Form.cwidth - 210, Form.cheight - 59 - status_bar_h, files.item_h);
  680.                 DrawList();
  681.                 Open_Dir(#path,ONLY_SHOW);
  682.         }
  683.         else
  684.         {
  685.                 SystemDiscs.Get();
  686.                 llist_copy(#files, #files_inactive);
  687.                 strcpy(#path, #inactive_path);
  688.                 col_selec = 0xCCCccc;
  689.                 SystemDiscs.Draw();
  690.                 files_y = files.y;
  691.  
  692.                 if (active_panel==1)
  693.                 {
  694.                         llist_copy(#files, #files_inactive);
  695.                         strcpy(#path, #inactive_path);
  696.                         col_selec = 0xCCCccc;
  697.                         files.SetSizes(Form.cwidth/2, files_y, Form.cwidth/2 -17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
  698.                         DrawList();
  699.                         Open_Dir(#path,WITH_REDRAW);
  700.                         llist_copy(#files, #files_active);
  701.                         strcpy(#path, #active_path);
  702.                         col_selec = 0x94AECE;
  703.                         files.SetSizes(2, files_y, Form.cwidth/2-2-17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
  704.                         DrawList();
  705.                         Open_Dir(#path,WITH_REDRAW);
  706.                 }
  707.                 if (active_panel==2)
  708.                 {
  709.                         files.SetSizes(2, files_y, Form.cwidth/2-2-17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
  710.                         DrawList();
  711.                         Open_Dir(#path,WITH_REDRAW);
  712.                         llist_copy(#files, #files_active);
  713.                         strcpy(#path, #active_path);
  714.                         col_selec = 0x94AECE;
  715.                         files.SetSizes(Form.cwidth/2, files_y, Form.cwidth/2 -17, Form.cheight-files_y-2 - status_bar_h, files.item_h);
  716.                         DrawList();
  717.                         Open_Dir(#path,WITH_REDRAW);
  718.                 }
  719.         }
  720. }
  721.  
  722.  
  723. void List_ReDraw()
  724. {
  725.         int all_lines_h;
  726.         static int old_cur_y, old_first;
  727.  
  728.         files.CheckDoesValuesOkey(); //prevent some shit
  729.  
  730.         if (list_full_redraw) || (old_first != files.first)
  731.         {
  732.                 old_cur_y = files.cur_y;
  733.                 old_first = files.first;
  734.                 list_full_redraw = false;
  735.                 goto _ALL_LIST_REDRAW;
  736.         }
  737.         if (old_cur_y != files.cur_y)
  738.         {
  739.                 if (old_cur_y-files.first<files.visible) Line_ReDraw(0xFFFFFF, old_cur_y-files.first);
  740.                 Line_ReDraw(col_selec, files.cur_y-files.first);
  741.                 old_cur_y = files.cur_y;
  742.                 return;
  743.         }
  744.  
  745.         _ALL_LIST_REDRAW:
  746.  
  747.         for (j=0; j<files.visible; j++) if (files.cur_y-files.first!=j) Line_ReDraw(0xFFFFFF, j); else Line_ReDraw(col_selec, files.cur_y-files.first);
  748.         //in the bottom
  749.         all_lines_h = j * files.item_h;
  750.         DrawBar(files.x,all_lines_h + files.y,files.w,files.h - all_lines_h,0xFFFFFF);
  751.         DrawBar(files.x+files.w-141,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
  752.         DrawBar(files.x+files.w-68,all_lines_h + files.y,1,files.h - all_lines_h,col_list_line);
  753.         Scroll();
  754.  
  755.         if (del_active) Del_Form();
  756.         if (new_element_active) NewElement_Form(new_element_active, #new_element_name);
  757. }
  758.  
  759.  
  760. void Line_ReDraw(dword bgcol, filenum){
  761.         dword text_col=0,
  762.                   ext1, attr,
  763.                   file_offet,
  764.                   file_name_off,
  765.                   y=filenum*files.item_h+files.y,
  766.                   icon_y = files.item_h-icon_size/2+1+y;
  767.                   BDVK file;
  768.                   char temp_path[sizeof(file_path)];
  769.         char label_file_name[4096];
  770.         if (filenum==-1) return;
  771.         DrawBar(files.x,y,4,files.item_h,bgcol);
  772.         DrawBar(files.x+20,y,files.w-20,files.item_h,bgcol);
  773.         DrawBar(files.x+4,y,icon_size,icon_y-y,bgcol);
  774.         if (files.item_h>icon_size) DrawBar(files.x+4,icon_y+icon_size-1,icon_size,y+files.item_h-icon_y-icon_size+1,bgcol);
  775.  
  776.         file_offet = file_mas[filenum+files.first]*304 + buf+32;
  777.         attr = ESDWORD[file_offet];
  778.         file.selected = ESBYTE[file_offet+7];
  779.         file.sizelo   = ESDWORD[file_offet+32];
  780.         file.sizehi   = ESDWORD[file_offet+36];
  781.         file_name_off = file_offet+40;
  782.  
  783.         if (! TestBit(attr, 4) ) //file or folder?
  784.         {      
  785.                 ext1 = strrchr(file_name_off,'.') + file_name_off;
  786.                 if (ext1==file_name_off) ext1 = NULL; //if no extension then show nothing
  787.                 WriteText(
  788.                         7-strlen(ConvertSize64(file.sizelo, file.sizehi))*6+files.x+files.w - 58,
  789.                         files.text_y+y+1,
  790.                         files.font_type,
  791.                         0,
  792.                         ConvertSize64(file.sizelo, file.sizehi)
  793.                 );
  794.                 if (ext1) && (strlen(ext1)<9) WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, 0, ext1);
  795.         }
  796.         else
  797.         {
  798.                 if (!strcmp(file_name_off,"..")) ext1="<up>"; else {
  799.                         ext1="<DIR>";
  800.                         WriteTextCenter(files.x+files.w-140, files.text_y+y+1, 72, 0, ext1);
  801.                 }
  802.         }
  803.         sprintf(#temp_path,"%s/%s",#path,file_name_off);
  804.         DrawIconByExtension(#temp_path, ext1, files.x+4, icon_y, bgcol);
  805.  
  806.         if (TestBit(attr, 1)) || (TestBit(attr, 2)) text_col=0xA6A6B7; //system or hiden?
  807.         if (bgcol!=0xFFFfff)
  808.         {
  809.                 itdir = TestBit(attr, 4);
  810.                 strcpy(#file_name, file_name_off);
  811.                 if (!strcmp(#path,"/")) sprintf(#file_path,"%s%s",#path,file_name_off);
  812.                         else sprintf(#file_path,"%s/%s",#path,file_name_off);
  813.                 if (text_col==0xA6A6B7) text_col=0xFFFFFF;
  814.         }
  815.         if (file.selected) text_col=0xFF0000;
  816.         if (kfont.size.pt==9) || (!kfont.font)
  817.         {
  818.                 if (Form.width>=480)
  819.                 {
  820.                         FileShow.start_x = files.x + 23;
  821.                         FileShow.font_color = text_col;
  822.                         FileShow.area_size_x = files.w - 164;
  823.                         FileShow.text_pointer = file_name_off;
  824.                         FileShow.start_y = files.text_y + y - 3;
  825.                         PathShow_prepare stdcall(#FileShow);
  826.                         PathShow_draw stdcall(#FileShow);
  827.                 }              
  828.         }
  829.         else
  830.         {
  831.                 strcpy(#label_file_name, file_name_off);
  832.                 if (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w)
  833.                 {
  834.                         while (kfont.getsize(kfont.size.pt, #label_file_name) + 141 + 26 > files.w) {
  835.                                 ESBYTE[#label_file_name+strlen(#label_file_name)-1] = NULL;
  836.                         }
  837.                         strcpy(#label_file_name+strlen(#label_file_name)-2, "...");                    
  838.                 }
  839.                 kfont.WriteIntoWindow(files.x + icon_size+7, files.item_h - kfont.height / 2 + y, bgcol, text_col, kfont.size.pt, #label_file_name);
  840.         }
  841.         DrawBar(files.x+files.w-141,y,1,files.item_h,col_list_line); //gray line 1
  842.         DrawBar(files.x+files.w-68,y,1,files.item_h,col_list_line); //gray line 2
  843. }
  844.  
  845.  
  846. void Open_Dir(dword dir_path, redraw){
  847.         int errornum, maxcount, i;
  848.         if (redraw!=ONLY_SHOW)
  849.         {
  850.                 selected_count = 0;
  851.                 if (buf) free(buf);
  852.                 errornum = GetDir(#buf, #files.count, dir_path, DIRS_NOROOT);
  853.                 if (errornum)
  854.                 {
  855.                         history.add(#path);
  856.                         GoBack();
  857.                         Write_Error(errornum);
  858.                         return;
  859.                 }
  860.                 maxcount = sizeof(file_mas)/sizeof(dword)-1;
  861.                 if (files.count>maxcount) files.count = maxcount;
  862.                 if (files.count>0) && (files.cur_y-files.first==-1) files.cur_y=0;
  863.         }
  864.         if (files.count!=-1)
  865.         {
  866.                 if(!_not_draw) if (show_breadcrumb.checked) DrawBreadCrumbs(); else DrawPathBar();
  867.                 history.add(#path);
  868.                 SystemDiscs.Draw();
  869.                 files.visible = files.h / files.item_h;
  870.                 if (files.count < files.visible) files.visible = files.count;
  871.                 if (redraw!=ONLY_SHOW) Sorting();
  872.                 list_full_redraw = true;
  873.                 if (redraw!=ONLY_OPEN)&&(!_not_draw) {DrawStatusBar(); List_ReDraw();}
  874.                 SetCurDir(dir_path);
  875.         }
  876.         if (files.count==-1) && (redraw!=ONLY_OPEN)
  877.         {
  878.                 files.KeyHome();
  879.                 if(!_not_draw) { list_full_redraw=true; DrawStatusBar(); List_ReDraw(); }
  880.         }
  881. }
  882.  
  883. inline Sorting()
  884. {
  885.         dword k=0, l=1;
  886.         dword file_off;
  887.         if (!strcmp(#path,"/")) //do not sort root folder
  888.         {
  889.                 for(k=1;k<files.count;k++;) file_mas[k]=k;
  890.                 count_dir = k;
  891.                 return;
  892.         }
  893.         for (j=files.count-1, file_off=files.count-1*304+buf+32; j>=0; j--, file_off-=304;)  //files | folders
  894.         {
  895.                 if (!show_real_names.checked) strttl(file_off+40);
  896.                 if (TestBit(ESDWORD[file_off],4)) //directory?
  897.                 {
  898.                         file_mas[k]=j;
  899.                         k++;
  900.                 }
  901.                 else
  902.                 {
  903.                         file_mas[files.count-l]=j;
  904.                         l++;
  905.                 }
  906.         }
  907.         count_dir = k;
  908.         //sorting: files first, then folders
  909.         Sort_by_Name(0,k-1);
  910.         if (sort_num==1) Sort_by_Name(k,files.count-1);
  911.         if (sort_num==2) Sort_by_Type(k,files.count-1);
  912.         if (sort_num==3) Sort_by_Size(k,files.count-1);
  913.         //make ".." first item in list
  914.         if (k>0) && (strncmp(file_mas[0]*304+buf+72,"..",2)!=0)
  915.                 for(k--; k>0; k--;) if (!strncmp(file_mas[k]*304+buf+72,"..",2)) {file_mas[k]><file_mas[0]; break;}
  916. }
  917.  
  918.  
  919. void Del_Form()
  920. {
  921.         byte f_count[128];
  922.         int dform_x = files.w - 220 / 2 + files.x;
  923.         if (selected_count==0) && (!strncmp(#file_name,"..",2)) return;
  924.         else
  925.         {
  926.                 if (!files.count) return;
  927.                 DrawEolitePopup(T_YES, T_NO);
  928.                 WriteText(-strlen(T_DELETE_FILE)*3+110+dform_x,175,0x80,system.color.work_text,T_DELETE_FILE);
  929.                 if (selected_count)
  930.                 {
  931.                         sprintf(#f_count,"%s%d%s",DEL_MORE_FILES_1,selected_count,DEL_MORE_FILES_2);
  932.                         WriteText(-strlen(#f_count)*3+110+dform_x,190,0x80,system.color.work_text,#f_count);
  933.                 }
  934.                 else
  935.                 {
  936.                         if (strlen(#file_name)<28)
  937.                         {
  938.                                 WriteText(strlen(#file_name)*3+110+dform_x+2,190,0x80,system.color.work_text,"?");
  939.                                 WriteText(-strlen(#file_name)*3+110+dform_x,190,0x80,system.color.work_text,#file_name);
  940.                         }
  941.                         else
  942.                         {
  943.                                 WriteText(164+dform_x,190,0x80,0,"...?");
  944.                                 ESI = 24;
  945.                                 WriteText(dform_x+20,190,0,0,#file_name);
  946.                         }
  947.                 }              
  948.                 del_active=1;
  949.         }
  950. }
  951.  
  952. void SelectFileByName(dword that_file)
  953. {
  954.         int ind;
  955.         files.KeyHome();
  956.         Open_Dir(#path,ONLY_OPEN);
  957.         if (!show_real_names.checked) strttl(that_file);
  958.         for (ind=files.count-1; ind>=0; ind--;) { if (!strcmp(file_mas[ind]*304+buf+72,that_file)) break; }
  959.         files.cur_y = ind - 1;
  960.         files.KeyDown();
  961.         DrawStatusBar();
  962.         List_ReDraw();
  963. }
  964.  
  965.  
  966. void Dir_Up()
  967. {
  968.         char old_folder_name[4096];
  969.         i=strlen(#path)-1;
  970.         if (i==0) return;
  971.         //path[i]=0x00;
  972.         i = strrchr(#path, '/');
  973.         strcpy(#old_folder_name, #path+i);
  974.         if (i>1) path[i-1]=NULL; else path[i]=NULL;
  975.         SelectFileByName(#old_folder_name);
  976. }
  977.  
  978. void Open(byte rez)
  979. {
  980.         byte temp[4096];
  981.         selected_count = 0;
  982.         if (rez)
  983.         {
  984.                 if (!strncmp(#file_name,"..",3)) return;
  985.                 strcpy(#temp, #file_path);
  986.                 RunProgram(I_Path, #temp);
  987.                 return;
  988.         }
  989.         if (!files.count) return;
  990.         if (!itdir)
  991.         {
  992.                 if (strrchr(#file_name, '.')==0) RunProgram(#file_path, ""); else RunProgram("/sys/@open", #file_path);
  993.         }
  994.         else
  995.         {
  996.                 if (!strncmp(#file_name,"..",3)) { Dir_Up(); return; }
  997.                 strcpy(#path, #file_path);
  998.                 files.first=files.cur_y=0;
  999.                 Open_Dir(#path,WITH_REDRAW);
  1000.         }
  1001. }
  1002.  
  1003. inline fastcall void GoBack()
  1004. {
  1005.         char cur_folder[4096];
  1006.         strcpy(#cur_folder, #path);
  1007.         if (history.back()) {
  1008.                 strcpy(#path, history.current());
  1009.                 SelectFileByName(#cur_folder+strrchr(#cur_folder,'/'));
  1010.         }
  1011. }
  1012.  
  1013. void ShowOpenWithDialog()
  1014. {
  1015.         byte open_param[4097];
  1016.         sprintf(#open_param,"~%s",#file_path);
  1017.         RunProgram("/sys/@open", #open_param);
  1018. }
  1019.  
  1020. void NewElement(byte newf)
  1021. {
  1022.         BDVK element_info;
  1023.         byte del_rezult, copy_rezult, info_result;
  1024.         if (newf)
  1025.         {
  1026.                 sprintf(#temp,"%s/%s",#path,new_file_ed.text);
  1027.                 info_result = GetFileInfo(#temp, #element_info);
  1028.                 switch(new_element_active)
  1029.                 {
  1030.                         case CREATE_FILE:
  1031.                                 if (info_result==5)
  1032.                                 {
  1033.                                         CreateFile(0, 0, #temp);
  1034.                                         if (EAX)
  1035.                                         {
  1036.                                                 if (EAX==5) notify(NOT_CREATE_FILE);
  1037.                                                 else Write_Error(EAX);
  1038.                                         }
  1039.                                 }
  1040.                                 else
  1041.                                 {
  1042.                                         notify(FS_ITEM_ALREADY_EXISTS);
  1043.                                 }
  1044.                                 break;
  1045.                         case CREATE_FOLDER:
  1046.                                 if (info_result==5)
  1047.                                 {
  1048.                                         CreateDir(#temp);
  1049.                                         if (EAX)
  1050.                                         {
  1051.                                                 if (EAX==5) notify(NOT_CREATE_FOLDER);
  1052.                                                 else Write_Error(EAX);
  1053.                                         }
  1054.                                 }
  1055.                                 else
  1056.                                 {
  1057.                                         notify(FS_ITEM_ALREADY_EXISTS);
  1058.                                 }
  1059.                                 break;
  1060.                         case RENAME_ITEM:
  1061.                                 if (info_result==5)
  1062.                                 {
  1063.                                         if (itdir)
  1064.                                         {
  1065.                                                 //rename only empty folders
  1066.                                                 if (del_rezult = DeleteFile(#file_path))
  1067.                                                 {
  1068.                                                         Write_Error(del_rezult);
  1069.                                                         return;
  1070.                                                 }
  1071.                                                 if (CreateDir(#temp)) CreateDir(#file_path);
  1072.                                                 Open_Dir(#path,WITH_REDRAW);
  1073.                                                 SelectFileByName(new_file_ed.text);
  1074.                                         }
  1075.                                         else
  1076.                                         {
  1077.                                                 if (copy_rezult = CopyFile(#file_path,#temp))
  1078.                                                 {
  1079.                                                         Write_Error(copy_rezult);
  1080.                                                 }
  1081.                                                 else
  1082.                                                 {
  1083.                                                         DeleteFile(#file_path);
  1084.                                                         SelectFileByName(new_file_ed.text);
  1085.                                                 }
  1086.                                         }
  1087.                                 }
  1088.                                 else
  1089.                                 {
  1090.                                         notify(FS_ITEM_ALREADY_EXISTS);
  1091.                                 }
  1092.                 }
  1093.                 new_element_active = 0;
  1094.                 Open_Dir(#path,WITH_REDRAW);
  1095.                 SelectFileByName(new_file_ed.text);
  1096.         }
  1097.         new_element_active = 0;
  1098.         Open_Dir(#path,WITH_REDRAW);
  1099. }
  1100.  
  1101. void NewElement_Form(byte crt, dword strng)
  1102. {
  1103.         int dform_x=files.w-220/2+files.x;
  1104.         if (!new_element_active)
  1105.         {
  1106.                 new_element_active = crt;
  1107.                 strcpy(#new_element_name, strng);
  1108.                 new_file_ed.size = new_file_ed.pos = strlen(strng);
  1109.         }
  1110.         if (new_element_active==3) DrawEolitePopup(T_RENAME, T_CANCEL);
  1111.         else DrawEolitePopup(T_CREATE, T_CANCEL);
  1112.         new_file_ed.left = dform_x+10;
  1113.         DrawEditBox(#new_file_ed);
  1114. }
  1115.  
  1116. void FnProcess(byte N)
  1117. {
  1118.         switch(N)
  1119.         {
  1120.                 case 1:
  1121.                         if (!active_about)
  1122.                         {
  1123.                                 about_stak = malloc(4096);
  1124.                                 about_window = CreateThread(#about_dialog,about_stak+4092);
  1125.                                 break;
  1126.                         }
  1127.                         else
  1128.                         {
  1129.                                 ActivateWindow(GetProcessSlot(about_window));
  1130.                         }
  1131.                         break;
  1132.                 case 2:
  1133.                         if (!files.count) break;
  1134.                         NewElement_Form(RENAME_ITEM, #file_name);
  1135.                         break;
  1136.                 case 3:
  1137.                         if (!itdir) RunProgram("/sys/tinypad", #file_path);
  1138.                         break;
  1139.                 case 4:
  1140.                         if (!itdir) RunProgram("/sys/develop/heed", #file_path);
  1141.                         break;
  1142.                 case 5: //refresh cur dir & devs
  1143.                         if (two_panels.checked)
  1144.                         {
  1145.                                 DrawFilePanels();
  1146.                         }
  1147.                         else
  1148.                         {
  1149.                                 Tip(56, T_DEVICES, 55, "-");
  1150.                                 Open_Dir(#path,WITH_REDRAW);
  1151.                                 pause(10);
  1152.                                 SystemDiscs.Get();
  1153.                                 Open_Dir(#path,WITH_REDRAW);
  1154.                                 DrawDeviceAndActionsLeftPanel();                               
  1155.                         }
  1156.                         break;
  1157.                 case 6:
  1158.                         NewElement_Form(CREATE_FOLDER, T_NEW_FOLDER);
  1159.                         break;
  1160.                 case 7:
  1161.                         NewElement_Form(CREATE_FILE, T_NEW_FILE);
  1162.                         break;
  1163.                 case 8:
  1164.                         properties_stak = malloc(8096);
  1165.                         CreateThread(#properties_dialog, properties_stak+8092);
  1166.                         break;
  1167.                 case 10: //F10
  1168.                         if (!active_settings)
  1169.                         {
  1170.                                 settings_stak = malloc(4096);
  1171.                                 settings_window = CreateThread(#settings_dialog, settings_stak+4092);
  1172.                                 break;
  1173.                         }
  1174.                         else
  1175.                         {
  1176.                                 ActivateWindow(GetProcessSlot(settings_window));
  1177.                         }
  1178.                         break;
  1179.         }
  1180. }
  1181.  
  1182. void ChangeActivePanel()
  1183. {
  1184.         llist_copy(#files_active, #files_inactive);
  1185.         llist_copy(#files_inactive, #files);
  1186.         strcpy(#active_path, #inactive_path);
  1187.         strcpy(#inactive_path, #path);
  1188.         DrawFilePanels();
  1189. }
  1190.  
  1191.  
  1192. stop:
  1193.