Subversion Repositories Kolibri OS

Rev

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