Subversion Repositories Kolibri OS

Rev

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

  1. //Leency 2008-2013
  2.  
  3. //pay attension: >200 this is only file actions, not supported by folders
  4. #ifdef LANG_RUS
  5. char *file_captions[] = {
  6.         "Žâªàëâì",               "Enter",100,
  7.         "Žâªàëâì á ¯®¬®éìî...",  "CrlEnt",201,
  8.         "Žâªàëâì ª ª ⥪áâ",     "F3",202,
  9.         "Žâªàëâì ª ª HEX",       "F4",203,
  10.         "Š®¯¨à®¢ âì",            "Crl+C",104,
  11.         "‚ë१ âì",              "Crl+X",105,
  12.         "‚áâ ¢¨âì",              "Crl+V",106,
  13.         "¥à¥¨¬¥­®¢ âì",         "F2",207,
  14.         "“¤ «¨âì",               "Del",108,
  15.         "Ž¡­®¢¨âì ¯ ¯ªã",        "F5",109,
  16.         "‘¢®©á⢠",              "",110,
  17.         0, 0, 0};
  18. #elif LANG_EST
  19. char *file_captions[] = {
  20.         "Ava",            "Enter",100,
  21.         "Ava ...",        "CrlEnt",201,
  22.         "Vaata tekstina", "F3",202,
  23.         "Vaata HEX",      "F4",203,
  24.         "Kopeeri",        "Crl+C",104,
  25.         "Lõika",          "Crl+X",105,
  26.         "Aseta",          "Crl+V",106,
  27.         "Nimeta ümber",   "F2",207,
  28.         "Kustuta",        "Del",108,
  29.         "Värskenda",      "F5",109,
  30.         "Properties",       "",110,
  31.         0, 0, 0};
  32. #else
  33. char *file_captions[] = {
  34.         "Open",          "Enter",100,
  35.         "Open with...",  "CrlEnt",201,
  36.         "View as text",  "F3",202,
  37.         "View as HEX",   "F4",203,
  38.         "Copy",          "Crl+C",104,
  39.         "Cut",           "Crl+X",105,
  40.         "Paste",         "Crl+V",106,
  41.         "Rename",        "F2",207,
  42.         "Delete",        "Del",108,
  43.         "Refresh",       "F5",109,
  44.         "Properties",       "",110,
  45.         0, 0, 0};
  46. #endif
  47.  
  48. llist menu;
  49. int cur_action_buf;
  50.  
  51. void FileMenu()
  52. {
  53.         mouse mm;
  54.         word key;
  55.         proc_info MenuForm;
  56.         int index;
  57.  
  58.         menu.ClearList();
  59.         menu.SetSizes(0,0,10,0,0,18);
  60.         for (index=0; file_captions[index]!=0; index+=3)
  61.         {
  62.                 if (itdir) && (file_captions[index+2]>=200) continue;
  63.                 if (strlen(file_captions[index])>menu.w) menu.w = strlen(file_captions[index]);
  64.                 menu.count++;
  65.                 menu.visible++;
  66.         }
  67.         menu.w = menu.w + 3 * 6 + 50;
  68.         menu.h = menu.count*menu.line_h;
  69.         SetEventMask(100111b);
  70.         goto _MENU_DRAW;
  71.        
  72.         loop() switch(WaitEvent())
  73.         {
  74.                 case evMouse:
  75.                                 if (!CheckActiveProcess(MenuForm.ID)) ExitProcess();
  76.                                 mm.get();
  77.                                 if (menu.ProcessMouse(mm.x, mm.y)) MenuListRedraw();
  78.                                 if (mm.lkm) {action_buf = cur_action_buf; pause(5); ExitProcess(); }
  79.                                 break;
  80.                                
  81.                 case evKey:
  82.                                 key = GetKey();
  83.                                 if (key==27) ExitProcess();
  84.                                 if (key == 13) {action_buf = cur_action_buf; ExitProcess(); }
  85.                                 if (menu.ProcessKey(key)) MenuListRedraw();
  86.                                 break;
  87.                                
  88.                 case evReDraw: _MENU_DRAW:
  89.                                 if (menu_call_mouse) DefineAndDrawWindow(m.x+Form.left+5, m.y+Form.top+GetSkinHeight(),menu.w+3,menu.h+6,0x01, 0, 0, 0x01fffFFF);
  90.                                 else DefineAndDrawWindow(Form.left+files.x+15, files.line_h*files.current+files.y+Form.top+30,menu.w+3,menu.h+6,0x01, 0, 0, 0x01fffFFF);
  91.                                 GetProcessInfo(#MenuForm, SelfInfo);
  92.                                 DrawRectangle(0,0,menu.w+1,menu.h+2,sc.work_graph);
  93.                                 DrawBar(1,1,menu.w,1,0xFFFfff);
  94.                                 DrawPopupShadow(1,1,menu.w,menu.h,0);
  95.                                 MenuListRedraw();
  96.         }
  97. }
  98.  
  99. void MenuListRedraw()
  100. {
  101.         int start_y=0;
  102.         int index;
  103.         for (index=0; file_captions[index*3]!=0; index++)
  104.         {
  105.                 if ((itdir) && (file_captions[index*3+2]>=200)) continue;
  106.                 DrawBar(1,start_y+2,1,menu.line_h,0xFFFfff);
  107.                 if (start_y/menu.line_h==menu.current)
  108.                 {
  109.                         cur_action_buf = file_captions[index*3+2];
  110.                         DrawBar(2,start_y+2,menu.w-1,menu.line_h,0xFFFfff);
  111.                 }
  112.                 else
  113.                 {
  114.                         DrawBar(2,start_y+2,menu.w-1,menu.line_h,sc.work);
  115.                         WriteText(8,start_y+menu.text_y+3,0x80,0xf2f2f2,file_captions[index*3]);
  116.                 }
  117.                 WriteText(7,start_y+menu.text_y+2,0x80,sc.work_text,file_captions[index*3]);
  118.                 WriteText(-strlen(file_captions[index*3+1])*6-6+menu.w,start_y+menu.text_y+2,0x80,0x888888,file_captions[index*3+1]);
  119.                 start_y+=menu.line_h;
  120.         }      
  121. }