Subversion Repositories Kolibri OS

Rev

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

  1. //Leency & Veliant 2008-2013
  2. //GNU GPL licence.
  3.  
  4. #ifndef AUTOBUILD
  5. #include "lang.h--"
  6. #endif
  7.  
  8. //libraries
  9. #define MEMSIZE 0xA0000
  10. #include "..\lib\kolibri.h"
  11. #include "..\lib\strings.h"
  12. #include "..\lib\mem.h"
  13. #include "..\lib\dll.h"
  14. #include "..\lib\lib.obj\box_lib.h"
  15. #include "..\lib\file_system.h"
  16. #include "..\lib\figures.h"
  17. #include "..\lib\encoding.h"
  18. #include "..\lib\list_box.h"
  19. #include "..\lib\copyf.h"
  20. //images
  21. #include "imgs\toolbar.txt"
  22. #include "imgs\left_p.txt"
  23.  
  24. #ifdef LANG_RUS
  25.         ?define T_FILE "” ©«"
  26.         ?define T_TYPE "’¨¯"
  27.         ?define T_SIZE " §¬¥à"
  28.         ?define T_NEW_FOLDER "®¢ ï ¯ ¯ª "
  29.         ?define T_NEW_FILE "®¢ë© ä ©«"
  30.         ?define T_DELETE_FILE "‚ë ¤¥©á⢨⥫쭮 å®â¨â¥ 㤠«¨âì"
  31.         ?define T_YES "„ "
  32.         ?define T_NO "¥â"
  33.         ?define T_DEL_ERROR_1 "Žè¨¡ª .  ¯ª  ­¥ ¯ãáâ ï."
  34.         ?define WAIT_DELETING_FOLDER "“¤ «ï¥âáï ¯ ¯ª . ®¤®¦¨â¥..."
  35.         ?define NOT_CREATE_FOLDER "¥ 㤠«®áì ᮧ¤ âì ¯ ¯ªã."
  36.         ?define NOT_CREATE_FILE "¥ 㤠«®áì ᮧ¤ âì ä ©«."
  37.         ?define ERROR_1 "Žè¨¡ª  ¯à¨ § £à㧪¥ ¡¨¡«¨®â¥ª¨ /rd/1/lib/box_lib.obj"
  38.         ?define T_PASTE_WINDOW "Š®¯¨àãî..."
  39.         ?define T_PASTE_WINDOW_TEXT "Š®¯¨àã¥âáï ä ©«:"
  40.         ?define T_CANCEL_PASTE "Š®¯¨à®¢ ­¨¥ ¯à¥ªà é¥­®.  ¯ª  ᪮¯¨à®¢ ­  ­¥ ¯®«­®áâìî."
  41. #elif LANG_EST
  42.         ?define T_FILE "Fail"
  43.         ?define T_TYPE "Tüüp"
  44.         ?define T_SIZE "Suurus"
  45.         ?define T_NEW_FOLDER "Uus kataloog"
  46.         ?define T_NEW_FILE "Uus fail"
  47.         ?define T_DELETE_FILE "Kas sa tahad tõesti kustutada"
  48.         ?define T_YES "Jah"
  49.         ?define T_NO "Ei"
  50.         ?define T_DEL_ERROR_1 "Viga. Kataloog ei ole tühi."
  51.         ?define WAIT_DELETING_FOLDER "Deleting folder. Please, wait..."
  52.         ?define NOT_CREATE_FOLDER "Kataloogi ei saa luua."
  53.         ?define NOT_CREATE_FILE "Faili ei saa luua."
  54.         ?define ERROR_1 "Viga teegi laadimisel /rd/1/lib/box_lib.obj"
  55.         ?define T_PASTE_WINDOW "Kopeerin..."
  56.         ?define T_PASTE_WINDOW_TEXT "Kopeerin faili:"
  57.         ?define T_CANCEL_PASTE "Copy process terminated. Folder copied incompletely."
  58. #else
  59.         ?define T_FILE "File"
  60.         ?define T_TYPE "Type"
  61.         ?define T_SIZE "Size"
  62.         ?define T_NEW_FOLDER "New folder"
  63.         ?define T_NEW_FILE "New file"
  64.         ?define T_DELETE_FILE "Do you really want to delete"
  65.         ?define T_YES "Yes"
  66.         ?define T_NO "No"
  67.         ?define T_DEL_ERROR_1 "Error. Folder isn't empty."
  68.         ?define WAIT_DELETING_FOLDER "Deleting folder. Please, wait..."
  69.         ?define NOT_CREATE_FOLDER "Folder can not be created."
  70.         ?define NOT_CREATE_FILE "File can not be created."
  71.         ?define ERROR_1 "Error while loading library /rd/1/lib/box_lib.obj"
  72.         ?define T_PASTE_WINDOW "Copying..."
  73.         ?define T_PASTE_WINDOW_TEXT "Copying file:"
  74.         ?define T_CANCEL_PASTE "Copy process terminated. Folder copied incompletely."
  75. #endif
  76.  
  77. enum {ONLY_SHOW, WITH_REDRAW, ONLY_OPEN}; //OpenDir
  78.  
  79. #define TITLE "Eolite File Manager v1.98.7"
  80. #define ABOUT_TITLE "Eolite v1.98.7"
  81. dword col_work    = 0xE4DFE1;
  82. dword col_border  = 0x9098B0; //A0A0B8; //0x819FC5;
  83. dword col_padding = 0xC8C9C9;
  84. dword col_selec   = 0x94AECE;
  85. dword col_lpanel  = 0x00699C;
  86.  
  87. int toolbar_buttons_x[7]={9,46,85,134,167,203};
  88. char tmp_disk_del_param[3]="d0";
  89. struct path_string { char Item[4096]; };
  90.  
  91. int active_about=0;
  92.  
  93. llist files;
  94.  
  95. byte
  96.         path[4096],
  97.         file_path[4096],
  98.         file_name[256],
  99.         temp[4096];      
  100. byte
  101.         rename_active=0,
  102.         del_active=0,
  103.         show_dev_name=1,
  104.         sort_num=2,
  105.         itdir;
  106.  
  107. proc_info Form;
  108. mouse m;
  109. int mouse_dd, scroll_used, scroll_size, sorting_arrow_x;
  110. dword buf, off;
  111. dword file_mas[6898];
  112. int j, i;
  113. int action_buf;
  114.  
  115. edit_box edit2 = {250,213,80,0xFFFFCC,0x94AECE,0xFFFFCC,0xffffff,0,248,#file_name,#mouse_dd,64,6,6};
  116. PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x0, 0xFFFfff, #path, #temp, 0};
  117. PathShow_data FileShow = {0, 56,215, 6, 100, 0, 0, 0x0, 0xFFFfff, #file_name, #temp, 0};
  118.  
  119. #include "include\copypaste.h"
  120. #include "include\some_code.h"
  121. #include "include\sorting.h"
  122. #include "include\icons_f.h"
  123. #include "include\ini.h"
  124. #include "include\left_panel.h"
  125. #include "include\history.h"
  126. #include "include\file_menu.h"
  127. #include "include\about_dialog.h"
  128.  
  129. void main()
  130. {
  131.         word key, id, can_show, can_select, m_selected;
  132.  
  133.         files.line_h=18;
  134.         mem_Init();
  135.         if (load_dll2(boxlib, #box_lib_init,0)!=0) notify(ERROR_1);
  136.         SystemDiscsGet();
  137.         GetIni(1);     
  138.         if (param)
  139.         {
  140.                 strcpy(#path, #param);
  141.                 if (path[strlen(#path)-1]!='/') chrcat(#path, '/'); //add "/" to the end of the string
  142.         }
  143.         else
  144.         {
  145.                 strcpy(#path, "/rd/1/");               
  146.         }
  147.         Open_Dir(#path,ONLY_OPEN);
  148.         SetEventMask(0x27);
  149.         loop() switch(WaitEvent())
  150.         {
  151.                 case evMouse:
  152.                         IF (del_active) break;         
  153.                         id=GetProcessSlot(Form.ID);
  154.                         IF (id!=GetActiveProcess()) || (Form.status_window>2) break;
  155.                         IF (rename_active) { edit_box_mouse stdcall(#edit2); break; }
  156.                        
  157.                         m.get();
  158.  
  159.                         if (m.x > files.x) && (m.x < files.x + files.w) && (m.y > files.y) && (m.y < files.y+files.h) && (!can_select)
  160.                         {
  161.                                 m_selected = m.y - 57 / files.line_h;
  162.                                 if (m.lkm) can_select = 1;
  163.                                 if (m.pkm)
  164.                                 {
  165.                                         can_show = 1;
  166.                                         if (m.y - 57 / files.line_h != files.current) can_select = 1;
  167.                                 }
  168.                         }
  169.  
  170.                         //select/open file {
  171.                         if (!m.lkm) && (!m.pkm) && (can_select)
  172.                         {
  173.                                 can_select = 0;
  174.                                 if (m.y>=57)
  175.                                 {
  176.                                         id = m.y - 57 / files.line_h;
  177.                                         if (id!=m_selected)
  178.                                         {
  179.                                                 can_show=0;
  180.                                                 break;
  181.                                         }
  182.                                         if (files.current!=id)
  183.                                         {
  184.                                                 if (id<files.visible) List_Current(id-files.current);
  185.                                         }
  186.                                         else
  187.                                                 Open();
  188.                                 }
  189.                         };
  190.                         // } select/open file
  191.  
  192.                         //file menu {
  193.                         if (!m.pkm) && (!m.lkm) && (can_show)
  194.                         {
  195.                                 can_show = 0;
  196.                                 if (m.y>=57)
  197.                                 {
  198.                                         SwitchToAnotherThread();
  199.                                         CreateThread(#FileMenu,#menu_stak);
  200.                                 }
  201.                                 break;
  202.                         }
  203.                         // } file menu
  204.  
  205.                         if (m.vert)
  206.                         {
  207.                                 files.MouseScroll(m.vert);
  208.                                 List_ReDraw();
  209.                                 break;
  210.                         }
  211.  
  212.                         if (m.x>=Form.width-26) && (m.x<=Form.width-6) && (m.y>40) && (m.y<57)
  213.                         {
  214.                                 IF (m.lkm==1) DrawRectangle3D(onLeft(26,0),41,14,14,0xC7C7C7,0xFFFFFF);
  215.                                 WHILE (m.lkm==1) && (files.first>0)
  216.                                 {
  217.                                         pause(8);
  218.                                         files.first--;
  219.                                         List_ReDraw();
  220.                                         m.get();
  221.                                 }
  222.                                 DrawRectangle3D(onLeft(26,0),41,14,14,0xFFFFFF,0xC7C7C7);
  223.                         }
  224.  
  225.                         if (m.x>=Form.width-26) && (m.x<=Form.width-6) && (m.y>onTop(22,0)+1) && (m.y<onTop(22,0)+16)
  226.                         {
  227.                                 IF (m.lkm==1) DrawRectangle3D(onLeft(26,0),onTop(21,0),14,14,0xC7C7C7,0xFFFFFF);
  228.                                 while (m.lkm==1) && (files.first<files.count-files.visible)
  229.                                 {
  230.                                         pause(8);
  231.                                         files.first++;
  232.                                         List_ReDraw();
  233.                                         m.get();
  234.                                 }
  235.                                 DrawRectangle3D(onLeft(26,0),onTop(21,0),14,14,0xFFFFFF,0xC7C7C7);
  236.                         }
  237.  
  238.                         //Scrooll
  239.                         if (!m.lkm) && (scroll_used) { scroll_used=NULL; Scroll(); }
  240.                         if (m.x>=Form.width-26) && (m.x<=Form.width-6) && (m.y>56) && (m.y<Form.height) && (m.lkm) && (!scroll_used) {scroll_used=1;Scroll();}
  241.                        
  242.                         if (scroll_used)
  243.                         {
  244.                                 IF (scroll_size/2+57>m.y) || (m.y<0) || (m.y>4000) m.y=scroll_size/2+57; //anee eo?ni? iaa ieiii
  245.                                 id=files.first;
  246.                                 j= scroll_size/2;
  247.                                 files.first = m.y -j -57 * files.count;
  248.                                 files.first /= onTop(22,57);
  249.                                 IF (files.visible+files.first>files.count) files.first=files.count-files.visible;
  250.                                 IF (id!=files.first) List_ReDraw();
  251.                         }
  252.                         break;  
  253. //Button pressed-----------------------------------------------------------------------------
  254.                 case evButton:
  255.                         id=GetButtonID();
  256.                         if (id==1) ExitProcess();
  257.                         if (rename_active) break;
  258.                         if (del_active)
  259.                         {
  260.                                 IF (id==301) || (id==302) Del_File(302-id);
  261.                                 break;
  262.                         }
  263.                        
  264.                         switch(id)
  265.                         {
  266.                                 case 21: //Back
  267.                                                 GoBack();
  268.                                                 break;
  269.                                 case 22: //Forward
  270.                                                 if (HistoryPath(GO_FORWARD))
  271.                                                 {
  272.                                                         files.first=files.current=NULL; //aaa?o nienea
  273.                                                         Open_Dir(#path,WITH_REDRAW);
  274.                                                 }
  275.                                                 break;
  276.                                 case 23: //up!
  277.                                                 Dir_Up();
  278.                                                 break;
  279.                                 case 24: //cut
  280.                                                 Copy(#file_path, CUT);
  281.                                                 break;
  282.                                 case 25: //copy
  283.                                                 Copy(#file_path, NOCUT);
  284.                                                 break;
  285.                                 case 26: //paste
  286.                                                 CreateThread(#Paste,#copy_stak);
  287.                                                 break;
  288.                                 case 31...33: //sort
  289.                                                 IF(sort_num==1) DrawFilledBar(sorting_arrow_x,42,6,10);
  290.                                                 IF(sort_num==2) DrawFilledBar(sorting_arrow_x,42,6,10);
  291.                                                 IF(sort_num==3) DrawFilledBar(sorting_arrow_x,42,6,10);
  292.                                                 sort_num=id-30;
  293.                                                 Open_Dir(#path,WITH_REDRAW);
  294.                                                 break;
  295.                                 case 50...60: //Actions
  296.                                                 FnProcess(id-50);
  297.                                                 break;
  298.                                 case 100...120:
  299.                                         DEVICE_MARK:
  300.                                                 DrawRectangle(17,id-100*16+74,159,16, 0); //auaaeaiea
  301.                                                 strcpy(#path, #disk_list[id-100].Item);
  302.                                                 files.first=files.current=0;
  303.                                                 Open_Dir(#path,WITH_REDRAW);
  304.                                                 pause(5);
  305.                                                 DrawRectangle(17,id-100*16+74,159,16, 0xFFFFFF);
  306.                                                 break;
  307.                                 case 130...160:
  308.                                                 tmp_disk_del_param[1]=disk_list[id-130].Item[4];
  309.                                                 RunProgram("/sys/tmpdisk", #tmp_disk_del_param);
  310.                                                 pause(10);
  311.                                                 SystemDiscsGet();
  312.                                                 Open_Dir(#path,WITH_REDRAW);
  313.                                                 DrawLeftPanel();
  314.                                                 break;
  315.                         }
  316.                         break;
  317. //Key pressed-----------------------------------------------------------------------------
  318.                 case evKey:
  319.                         key = GetKey();
  320.                         if (Form.status_window>2) break;
  321.                         IF (del_active)
  322.                         {
  323.                                 IF (key==013) Del_File(true);
  324.                                 IF (key==027) Del_File(false);
  325.                                 break;
  326.                         }
  327.                         IF (edit2.flags!=64) && (key!=13) && (key!=27)
  328.                         {
  329.                                 EAX=key<<8;
  330.                                 edit_box_key stdcall (#edit2);
  331.                                 break;
  332.                         }
  333.                         switch (key)
  334.                         {
  335.                                         case 209...217:
  336.                                                         id=key-110;
  337.                                                         IF (id-100>=disc_num) break;
  338.                                                         GOTO DEVICE_MARK;
  339.                                         case 008:
  340.                                                         //GoBack();
  341.                                                         Dir_Up();
  342.                                                         break;
  343.                                         case 004: //Ctrl+D set as bg
  344.                                                         strcpy(#temp, "\\S__");
  345.                                                         strcat(#temp, #file_path);
  346.                                                         RunProgram("/sys/media/kiv", #temp);
  347.                                                         break;
  348.                                         case 014: //Ctrl+N new window
  349.                                                         IF (Form.left==98) MoveSize(Form.left-20,Form.top-20,OLD,OLD);
  350.                                                         RunProgram("/sys/File Managers/Eolite", #path);
  351.                                                         break;
  352.                                         case 024: //Ctrl+X
  353.                                                         Copy(#file_path, CUT);
  354.                                                         break;
  355.                                         case 003: //Ctrl+C
  356.                                                         Copy(#file_path, NOCUT);
  357.                                                         break;
  358.                                         case 022: //Ctrl+V
  359.                                                         CreateThread(#Paste,#copy_stak);
  360.                                                         break;
  361.                                         case 027: //Esc
  362.                                                         IF (rename_active==1) ReName(false);
  363.                                                         break;
  364.                                         case 013: //Enter
  365.                                                         IF (rename_active==1) {ReName(true); break;}
  366.                                                         Open();
  367.                                                         break;
  368.                                         case 178: //up
  369.                                                         List_Current(-1);
  370.                                                         break;
  371.                                         case 177: //down
  372.                                                         List_Current(1);
  373.                                                         break;
  374.                                         case 180: //home
  375.                                                         files.first=0;
  376.                                                         files.current=0;
  377.                                                         List_ReDraw();
  378.                                                         break;
  379.                                         case 181: //end
  380.                                                         files.first = files.count - files.visible;
  381.                                                         files.current = files.visible - 1;
  382.                                                         List_ReDraw();
  383.                                                         break;
  384.                                         case 183: //Page Down
  385.                                                         List_Current(files.visible-1);
  386.                                                         break;
  387.                                         case 184: //Page Up
  388.                                                         List_Current(-files.visible+1);
  389.                                                         break;
  390.                                         case 182: //del
  391.                                                         Del_Form();
  392.                                                         break;
  393.                                         case 050...059: //F1-F10
  394.                                                         FnProcess(key-49);
  395.                                                         break;
  396.                                         default:    
  397.                                                         for (i=files.current+files.first+1; i<files.count; i++)
  398.                                                         {
  399.                                                                 strcpy(#temp, file_mas[i]*304+buf+72);
  400.                                                                 IF (temp[0]==key) || (temp[0]==key-32)
  401.                                                                 {
  402.                                                                         List_Current(i-files.current-files.first);
  403.                                                                         break;
  404.                                                                 }
  405.                                                         }
  406.                         }                        
  407.                         break;
  408.                 case evReDraw:
  409.                         if (action_buf) { menu_action(action_buf); action_buf=0;}
  410.                         draw_window();
  411.         }
  412. }
  413.  
  414. void menu_action(dword id)
  415. {
  416.         if (id==COPY_PASTE_END)
  417.         {
  418.                 FnProcess(5);
  419.                 SelectFile(#copy_to+strrchr(#copy_to,'/'));
  420.         }
  421.         if (id==100) Open();
  422.         if (id==201) notify("Not compleated yet");
  423.         if (id==202) FnProcess(3); //F3
  424.         if (id==203) FnProcess(4); //F4
  425.         if (id==104) Copy(#file_path, NOCUT);
  426.         if (id==105) Copy(#file_path, CUT);
  427.         if (id==106) CreateThread(#Paste,#copy_stak);
  428.         if (id==207) FnProcess(2);
  429.         if (id==108) Del_Form();
  430.         if (id==109) FnProcess(5);
  431. }
  432.  
  433.  
  434. void draw_window()
  435. {
  436.         DefineAndDrawWindow(40,20,550,500,0x73,col_work,TITLE);
  437.         GetProcessInfo(#Form, SelfInfo);
  438.         if (Form.status_window>2) return;
  439.         files.SetSizes(192, 57, onLeft(192,27), onTop(57,6), disc_num*16+195,files.line_h);
  440.         if (Form.height < files.min_h) MoveSize(OLD,OLD,OLD,files.min_h);
  441.         if (Form.width<480) MoveSize(OLD,OLD,480,OLD);
  442.         GetProcessInfo(#Form, SelfInfo); //if win_size changed
  443.  
  444.         PutPaletteImage(#toolbar,246,34,0,0,8,#toolbar_pal);
  445.         DrawBar(127, 8, 1, 25, col_border);
  446.         for (j=0; j<3; j++) DefineButton(toolbar_buttons_x[j]+2,5+2,31-5,29-5,21+j+BT_HIDE,col_work);
  447.         for (j=3; j<6; j++) DefineButton(toolbar_buttons_x[j],5,31,29,21+j+BT_HIDE,col_work);
  448.         DrawBar(246,0,onLeft(246,60),12, col_work); //upper editbox
  449.         DrawBar(246,29,onLeft(246,60),5,col_work);  //under editbox
  450.         DrawRectangle(246,12,onLeft(66,246),16,col_border);
  451.         DefineButton(onLeft(34,0),6,27,28,51+BT_HIDE+BT_NOFRAME,0); //about
  452.         PutPaletteImage(#goto_about,56,34,Form.width-65,0,8,#goto_about_pal);
  453.         //main rectangles
  454.         DrawRectangle(1,40,Form.cwidth-3,onTop(46,0),col_border);
  455.         DrawRectangle(0,39,Form.cwidth-1,onTop(44,0),col_palette[4]); //bg
  456.         for (i=0; i<5; i++) DrawBar(0, 34+i, Form.cwidth, 1, col_palette[8-i]);
  457.         DrawLeftPanel();
  458.         //ListBox
  459.         DrawFlatButton(files.x,40,onLeft(files.x,168),16,31,col_work,T_FILE);
  460.         DrawFlatButton(onLeft(168,0),40,73,16,32,col_work,T_TYPE);
  461.         DrawFlatButton(onLeft(95,0),40,68,16,33,col_work,T_SIZE);
  462.         DrawBar(onLeft(27,0),57,1,onTop(22,57),col_border); //line to the left from the scroll
  463.         DrawFlatButton(onLeft(27,0),40,16,16,0,col_work,"\x18");
  464.         DrawFlatButton(onLeft(27,0),onTop(22,0),16,16,0,col_work,"\x19");
  465.         Open_Dir(#path,ONLY_SHOW);
  466.         if (del_active) Del_Form();
  467.         //if (itdir) ShowMessage(WAIT_DELETING_FOLDER, 0);
  468.         if (rename_active) FnProcess(2);
  469. }
  470.  
  471.  
  472. void KEdit()
  473. {
  474.         if (Form.width<480) return;
  475.         PathShow.area_size_x = Form.cwidth-306;
  476.         DrawBar(PathShow.start_x-3, PathShow.start_y-4, PathShow.area_size_x+2, 15, 0xFFFfff);
  477.         PathShow_prepare stdcall(#PathShow);
  478.         PathShow_draw stdcall(#PathShow);
  479. }
  480.  
  481.  
  482. void List_Current(int cur)
  483. {
  484.         if (cur<=0) //up
  485.         {
  486.                 IF (files.first==0) && (files.current<=0) return;
  487.                 IF (-cur-1<files.current)
  488.                 {
  489.                         Line_ReDraw(0xFFFFFF, files.current);
  490.                         files.current+=cur;
  491.                         Line_ReDraw(col_selec, files.current);
  492.                         return;
  493.                 }
  494.                 ELSE
  495.                 {
  496.                         IF (-cur<files.first) files.first+=cur; ELSE files.first=0;
  497.                         files.current=0;
  498.                         List_ReDraw();
  499.                         return;
  500.                 }
  501.         }
  502.         else  //down
  503.         {
  504.                 IF (files.first==files.count-files.visible) && (files.current==files.visible-1) return;
  505.                 IF (files.visible-files.current>cur)
  506.                 {
  507.                         Line_ReDraw(0xFFFFFF, files.current);
  508.                         files.current+=cur;
  509.                         Line_ReDraw(col_selec, files.current);
  510.                         return;
  511.                 }
  512.                 else
  513.                 {
  514.                         IF(files.first+files.current+cur>=files.count)
  515.                         {
  516.                                 files.first=files.count-files.visible;
  517.                                 files.current=cur-files.first+files.current;
  518.                                 }
  519.                         ELSE
  520.                         {
  521.                                 files.first+=cur+files.current-files.visible+1;
  522.                                 files.current=files.visible-1;
  523.                         }
  524.                        
  525.                         IF (files.current<0) || (files.current>files.visible)
  526.                         {
  527.                                 files.current=files.visible-1;
  528.                         }
  529.                         List_ReDraw();
  530.                 }
  531.         }
  532. }
  533.  
  534.  
  535. void List_ReDraw()
  536. {
  537.         int paint_y;
  538.         //we are in the end of the list => maximize window => there will be white lines after the last element
  539.         if (files.count-files.first<files.visible) || (files.current>files.visible-1)
  540.         { files.first=files.count-files.visible; files.current=files.visible-1; }
  541.         for (j=0; j<files.visible; j++) if (files.current!=j) Line_ReDraw(0xFFFFFF, j); else Line_ReDraw(col_selec, files.current);
  542.         //in the bottom
  543.         paint_y = j * files.line_h + files.y;
  544.         DrawBar(files.x,paint_y,files.w,onTop(paint_y,6),0xFFFFFF);
  545.         DrawBar(Form.cwidth-159,paint_y,1,onTop(paint_y,6),col_work);
  546.         DrawBar(Form.cwidth-86,paint_y,1,onTop(paint_y,6),col_work);
  547.         Scroll();
  548. }
  549.  
  550.  
  551. void Line_ReDraw(dword color, filenum){
  552.         dword text_col=0,
  553.               name_len=0,
  554.               attr,
  555.               y=filenum*files.line_h+57;
  556.         DrawBar(files.x,y,3,files.line_h,color);
  557.         DrawBar(files.x+19,y,files.w-19,files.line_h,color);
  558.         DrawBar(files.x+3,y+17,16,1,color);
  559.         if (files.line_h>18) DrawBar(files.x+3,y+18,16,files.line_h-18,color);
  560.         if (files.line_h>15) DrawBar(files.x+3,y,16,files.line_h-15,color);
  561.  
  562.         off=file_mas[filenum+files.first]*304 + buf+72;
  563.         attr = ESDWORD[off - 40];
  564.  
  565.         if (! TestBit(attr, 4) ) //file or folder?
  566.         {      
  567.                 Put_icon(off+_strrchr(off,'.'), files.line_h/2-7+y, color);
  568.                 WriteText(7-strlen(ConvertMemSize(ESDWORD[off-8]))*6+onLeft(75,0),files.line_h-6/2+y,0x80,0,ConvertMemSize(ESDWORD[off-8])); //size
  569.         }
  570.         else
  571.                 if (!strcmp("..",off))
  572.                         Put_icon("..", files.line_h/2-7+y, color);
  573.                 else
  574.                         Put_icon("<DIR>", files.line_h/2-7+y, color);
  575.         if ( TestBit(attr, 1) ) || ( TestBit(attr, 2) ) text_col=0xA6A6B7; //system or hiden?
  576.         if (color!=0xFFFfff)
  577.         {
  578.                 itdir = TestBit(attr, 4);
  579.                 strcpy(#file_name, off);
  580.                 strcpy(#file_path, #path);
  581.                 strcat(#file_path, #file_name);
  582.                 if (text_col==0xA6A6B7) text_col=0xFFFFFF;
  583.         }
  584.         if (Form.width>=480)
  585.         {
  586.                 FileShow.start_x = files.x + 23;
  587.                 FileShow.font_color = text_col;
  588.                 FileShow.area_size_x = Form.width - 380;
  589.                 FileShow.text_pointer = off;
  590.                 FileShow.start_y = files.line_h/2-3+y;
  591.                 PathShow_prepare stdcall(#FileShow);
  592.                 PathShow_draw stdcall(#FileShow);
  593.         }
  594.         DrawBar(Form.cwidth-159,y,1,files.line_h,col_work); //gray line 1
  595.         DrawBar(Form.cwidth-86,y,1,files.line_h,col_work); //gray line 2
  596. }
  597.  
  598.  
  599. void Open_Dir(dword dir_path, redraw){
  600.         int errornum, maxcount;
  601.  
  602.         if (redraw!=ONLY_SHOW)
  603.         {
  604.                 if (ESBYTE[dir_path+1]!='\0') ESBYTE[dir_path+strlen(dir_path)-1] = '\0';
  605.                 if (buf) free(buf);
  606.                 errornum = GetDir(#buf, #files.count, dir_path, DIRS_NOROOT);
  607.                 if (ESBYTE[dir_path+1]!='\0') chrcat(dir_path, '/');
  608.                 if (errornum)
  609.                 {
  610.                         HistoryPath(ADD_NEW_PATH);
  611.                         GoBack();
  612.                         Write_Error(errornum);
  613.                         return;
  614.                 }
  615.                 maxcount = sizeof(file_mas)/sizeof(dword)-1;
  616.                 if (files.count>maxcount) files.count = maxcount;              
  617.         }
  618.         if (files.count!=-1)
  619.         {
  620.                 KEdit();
  621.                 HistoryPath(ADD_NEW_PATH);
  622.                 files.visible = files.h / files.line_h;
  623.                 IF (files.count < files.visible) files.visible = files.count;
  624.                 IF (sort_num==1) sorting_arrow_x = Form.width+60/2;
  625.                 IF (sort_num==2) sorting_arrow_x = Form.width-115;
  626.                 IF (sort_num==3) sorting_arrow_x = strlen(T_SIZE)*3-30+files.x+files.w;
  627.                 WriteText(sorting_arrow_x,45,0x80,col_border,"\x19");
  628.                 IF (redraw!=ONLY_SHOW) Sorting();
  629.                 IF (redraw!=ONLY_OPEN) List_ReDraw();
  630.         }
  631.         IF (files.count==-1) && (redraw!=ONLY_OPEN) {files.visible=files.count=0; List_ReDraw();}
  632. }
  633.  
  634.  
  635. inline Sorting()
  636. {
  637.         dword k=0, l=1;
  638.         int i;
  639.         if (!strcmp(#path,"/")) //do not sort
  640.         {
  641.                 FOR(k=1;k<files.count;k++;) file_mas[k]=k;
  642.                 return;
  643.         }
  644.         FOR (j=files.count-1, off=files.count-1*304+buf+32; j>=0; j--, off-=304;)  //files | folders
  645.         {
  646.                 strttl(off+40);
  647.                 if (TestBit(ESDWORD[off],4)) //directory?
  648.                 {
  649.                         file_mas[k]=j;
  650.                         k++;
  651.                 }
  652.                 else
  653.                 {
  654.                         file_mas[files.count-l]=j;
  655.                         l++;
  656.                 }
  657.         }
  658.         //sorting: files first, then folders
  659.         Sort_by_Name(0,k-1);
  660.         IF (sort_num==1) Sort_by_Name(k,files.count-1);
  661.         IF (sort_num==2) Sort_by_Type(k,files.count-1);
  662.         IF (sort_num==3) Sort_by_Size(k,files.count-1);
  663.         //".." should be first
  664.         IF (k>0) && (strcmp(file_mas[0]*304+buf+72,"..")!=0)
  665.                 FOR(k--; k>0; k--;) IF (!strcmp(file_mas[k]*304+buf+72,"..")) {file_mas[k]><file_mas[0]; break;}
  666. }
  667.  
  668.  
  669. void Del_Form()
  670. {
  671.         int dform_x=files.w-220/2+files.x;
  672.         if (strcmp(#file_name,".")==0) || (strcmp(#file_name,"..")==0) return;
  673.         if (del_active==2)
  674.         {
  675.                 if (itdir) ShowMessage(WAIT_DELETING_FOLDER, 0);
  676.         }
  677.         else
  678.         {
  679.                 if (!files.count) return;
  680.                 DrawPopup(dform_x,160,220,80,1,col_work,col_border);
  681.                 WriteText(-strlen(T_DELETE_FILE)*3+110+dform_x,175,0x80,0,T_DELETE_FILE);
  682.                 IF (strlen(#file_name)<28)
  683.                 {
  684.                         WriteText(strlen(#file_name)*3+110+dform_x+2,190,0x80,0,"?");
  685.                         WriteText(-strlen(#file_name)*3+110+dform_x,190,0x80,0,#file_name);
  686.                 }
  687.                 else
  688.                 {
  689.                         WriteText(164+dform_x,190,0x80,0,"...?");
  690.                         ESI = 24;
  691.                         WriteText(dform_x+20,190,0,0,#file_name);
  692.                 }
  693.                 DrawFlatButton(dform_x+27,208,70,20,301,0xFFB6B5,T_YES);
  694.                 DrawFlatButton(dform_x+120,208,70,20,302,0xC6DFC6,T_NO);               
  695.                 del_active=1;
  696.         }
  697. }
  698.  
  699. int del_error;
  700. int Del_File2(dword way)
  701. {    
  702.         dword dirbuf, fcount, i, filename;
  703.         int error;
  704.         char del_from[4096];
  705.         if (isdir(way))
  706.         {
  707.                 if (error = GetDir(#dirbuf, #fcount, way, DIRS_ONLYREAL)) del_error = error;
  708.                 for (i=0; i<fcount; i++)
  709.                 {
  710.                         if (CheckEvent()==evReDraw) draw_window();
  711.                         filename = i*304+dirbuf+72;
  712.                         strcpy(#del_from, way);
  713.                         chrcat(#del_from, '/');
  714.                         strcat(#del_from, filename);
  715.                         if ( TestBit(ESDWORD[filename-40], 4) )
  716.                                 Del_File2(#del_from);
  717.                         else
  718.                         {
  719.                                 if (error = DeleteFile(#del_from)) del_error = error;
  720.                         }
  721.                 }
  722.         }
  723.         if (error = DeleteFile(way)) del_error = error;
  724. }
  725.  
  726.  
  727. void Del_File(byte dodel)
  728. {  
  729.         if (dodel==true)
  730.         {
  731.                 del_active=2;
  732.                 if (itdir) ShowMessage(WAIT_DELETING_FOLDER, 0);
  733.                 del_error = 0;
  734.                 Del_File2(#file_path);
  735.                 if (del_error) Write_Error(del_error);
  736.         }
  737.         del_active=0;
  738.         DeleteButton(301);
  739.         DeleteButton(302);
  740.         Open_Dir(#path,WITH_REDRAW);
  741. }
  742.  
  743.  
  744. void ReName(byte rename)
  745. {
  746.         int del_rezult, copy_rezult;
  747.         char edit_name[256];
  748.         rename_active=0;
  749.         edit2.flags=64;
  750.         if (rename==true)
  751.         {
  752.                 strcpy(#temp, #path);
  753.                 strcpy(#edit_name, #file_name); //save edit name to select it later
  754.                 strcat(#temp, #file_name);
  755.                 if (strcmp(#file_path,#temp)!=0) && (file_name)
  756.                 if (itdir)
  757.                 {
  758.                         if (del_rezult = DeleteFile(#file_path))
  759.                         {
  760.                                 Write_Error(del_rezult);
  761.                                 ShowMessage(T_DEL_ERROR_1, 150);
  762.                                 return;
  763.                         }
  764.                         if (CreateDir(#temp)) CreateDir(#file_path);
  765.                         Open_Dir(#path,WITH_REDRAW);
  766.                         SelectFile(#edit_name);
  767.                 }
  768.                 else
  769.                 {
  770.                         if (copy_rezult = CopyFile(#file_path,#temp))
  771.                         {
  772.                                 Write_Error(copy_rezult);
  773.                         }
  774.                         else
  775.                         {
  776.                                 Del_File(true);
  777.                                 SelectFile(#edit_name);
  778.                         }
  779.                 }
  780.         }
  781.         Line_ReDraw(col_selec,files.current);
  782. }
  783.  
  784.  
  785. void SelectFile(dword that_file)
  786. {
  787.         files.first=files.current=0;
  788.         Open_Dir(#path,ONLY_OPEN);
  789.         strttl(that_file);
  790.         for (i=files.count-1; i>=0; i--;)
  791.                 if (!strcmp(file_mas[i]*304+buf+72,that_file)) break;
  792.         List_Current(i);
  793.         List_ReDraw();
  794. }
  795.  
  796.  
  797. void Dir_Up()
  798. {
  799.         char cur_folder[4096];
  800.         i=strlen(#path)-1;
  801.         if (i==0) return;
  802.         path[i]=0x00;
  803.         i = strrchr(#path, '/');
  804.         strcpy(#cur_folder, #path+i);
  805.         path[i]=0x00;
  806.         SelectFile(#cur_folder);
  807. }
  808.  
  809. void Open()
  810. {
  811.         if (!files.count) return;
  812.         if (!itdir)
  813.         {
  814.                 GetIni(0);
  815.         }
  816.         else
  817.         {
  818.                 if (!strcmp(#file_name,"..")) { Dir_Up(); return; }
  819.                 strcpy(#path, #file_path);
  820.                 if (path[strlen(#path)-1]!='/') chrcat(#path, '/'); //need "/" in the end
  821.                 files.first=files.current=0;
  822.                 Open_Dir(#path,WITH_REDRAW);
  823.         }
  824. }
  825.  
  826.  
  827. inline fastcall void GoBack()
  828. {
  829.         char cur_folder[4096];
  830.         strcpy(#cur_folder, GetCurrentFolder());
  831.         if (HistoryPath(GO_BACK)) SelectFile(#cur_folder);
  832. }
  833.  
  834. void FnProcess(char N)
  835. {
  836.         switch(N)
  837.         {
  838.                 case 1:
  839.                         SwitchToAnotherThread();
  840.                         CreateThread(#about_dialog,#about_stak);
  841.                         break;
  842.                 case 2:
  843.                         if (!files.count) break;
  844.                         edit2.flags = 100000000000010b; //set active
  845.                         edit2.left = files.x + 21;
  846.                         edit2.width = files.w - 26;
  847.                         edit2.top=files.current*files.line_h+59;
  848.                         edit2.size=edit2.pos=strlen(#file_name);
  849.                         edit_box_draw  stdcall (#edit2);
  850.                         DrawBar(edit2.left,files.current*files.line_h+58,edit2.width+1,1,0xFFFFCC); //bg
  851.                         rename_active=1;
  852.                         break;
  853.                 case 3:
  854.                         IF (!itdir) RunProgram("/sys/tinypad", #file_path);
  855.                         break;
  856.                 case 4:
  857.                         IF (!itdir) RunProgram("/sys/develop/heed", #file_path);
  858.                         break;
  859.                 case 5: //refresh cur dir & devs
  860.                         Tip(56, T_DEVICES, 55, "-");
  861.                         Open_Dir(#path,WITH_REDRAW);
  862.                         pause(10);
  863.                         GetIni(1);
  864.                         SystemDiscsGet();
  865.                         Open_Dir(#path,WITH_REDRAW);
  866.                         DrawLeftPanel();
  867.                         break;
  868.                 case 6:
  869.                         strcpy(#temp, #path);
  870.                         strcat(#temp, T_NEW_FOLDER);
  871.                         CreateDir(#temp);
  872.                         if (!EAX){
  873.                                 SelectFile(T_NEW_FOLDER);
  874.                                 FnProcess(2);
  875.                         }
  876.                         else
  877.                         {
  878.                                 Write_Error(EAX);
  879.                                 ShowMessage(NOT_CREATE_FOLDER, 150);
  880.                         }
  881.                         break;
  882.                 case 7:
  883.                         strcpy(#temp, #path);
  884.                         strcat(#temp, T_NEW_FILE);
  885.                         WriteFile(0, 0, #temp);
  886.                         if (!EAX){
  887.                                 SelectFile(T_NEW_FILE);
  888.                                 FnProcess(2);
  889.                         }
  890.                         else
  891.                         {
  892.                                 Write_Error(EAX);
  893.                                 ShowMessage(NOT_CREATE_FILE, 150);
  894.                         }
  895.                         break;
  896.                 case 10: //F10
  897.                         RunProgram(EDITOR_PATH, abspath("Eolite.ini"));
  898.                         break;
  899.         }
  900. }
  901.  
  902.  
  903. stop:
  904.  
  905. char about_stak[512];
  906. char menu_stak[512];
  907. char copy_stak[4096];
  908.