Subversion Repositories Kolibri OS

Rev

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

  1. //Leency 2013
  2.  
  3. llist app_list;
  4. struct app_list_string { char item[1024]; char ext[5]; };
  5. app_list_string app_paths[100];
  6.  
  7. int GetListOfPrograms()
  8. {
  9.         byte section[32], parametr[32], option[256], InfType=0;
  10.         char bukva[2];
  11.         int tj, ti;
  12.         static dword buff, fsize;
  13.  
  14.         free(buff);
  15.         if (!GetFile(#buff, #fsize, abspath("Eolite.ini")))
  16.         {
  17.                 notify("Eolite.ini not found. Don't know any programm.");
  18.                 return -1;
  19.         }
  20.  
  21.         for (tj=0; tj<fsize; tj++;)
  22.         {  
  23.                 bukva = ESBYTE[buff+tj];
  24.                 switch (bukva)
  25.                 {
  26.                         case ';': InfType=COMMENT; break;                              
  27.                         case '[': InfType=SECTION; section=NULL; break;
  28.                         case ']': InfType=PARAM; break;
  29.                         case '=': InfType=OPTION; break;
  30.                         case 0x0a:
  31.                         case 0x0d:
  32.                                 if (!strcmp(#section,"Associations")) && (option) && (InfType!=COMMENT)
  33.                                 {
  34.                                         for (ti=0; ti<app_list.count; ti++) //do not add duplications
  35.                                         {
  36.                                                 if (strcmp(#app_paths[ti].item, #option)==0) goto _OUT;
  37.                                         }
  38.                                         if (kolibrios_drive==false) && (strstr(#option,"kolibrios/")!=0) goto _OUT;
  39.                                         strcpy(#app_paths[app_list.count].item, #option);
  40.                                         if (strlen(#parametr)<=5) && (parametr[0]) strcpy(#app_paths[app_list.count].ext, #parametr);
  41.                                         else strcpy(#app_paths[app_list.count].ext, "kex");
  42.                                         app_list.count++;
  43.                                 }
  44.                                 _OUT:
  45.                                 InfType=PARAM;
  46.                                 parametr=option=NULL;
  47.                                 break;
  48.                         default:
  49.                                 IF (InfType==SECTION) chrcat(#section, bukva);
  50.                                 IF (InfType==PARAM) chrcat(#parametr, bukva);
  51.                                 IF (InfType==OPTION) chrcat(#option, bukva);
  52.                 }
  53.         }
  54. }
  55.  
  56.  
  57.  
  58. void OpenWith()
  59. {
  60.         #define WIN_W 290
  61.         #define OPEN_LIST_VISIBLE_N 12
  62.         #define OPEN_LIST_LINE_H 20
  63.         #define PANEL_H 40
  64.         #define PADDING 8
  65.         int WIN_H;
  66.         mouse mm;
  67.         word key;
  68.         proc_info MenuForm;
  69.  
  70.         app_list.ClearList();
  71.         if (!app_list.count) if (GetListOfPrograms()==-1) return;
  72.         app_list.SetSizes(PADDING,PANEL_H+1,WIN_W-PADDING-PADDING,OPEN_LIST_VISIBLE_N*OPEN_LIST_LINE_H,150,OPEN_LIST_LINE_H);
  73.         SetEventMask(100111b);
  74.         goto _APP_LIST_DRAW;
  75.  
  76.         loop() switch(WaitEvent())
  77.         {
  78.                 case evMouse:
  79.                                 if (!CheckActiveProcess(MenuForm.ID)) ExitProcess();
  80.                                 mm.get();
  81.                                 if (mm.vert) && (app_list.MouseScroll(mm.vert)) DrawAppList();
  82.                                 if (app_list.ProcessMouse(mm.x, mm.y)) DrawAppList();
  83.                                 if (app_list.MouseOver(mm.x, mm.y)) && (mm.lkm)
  84.                                 {
  85.                                         RunProgram(#app_paths[app_list.current].item, #file_path);
  86.                                         ExitProcess();
  87.                                 }
  88.  
  89.                                 break;
  90.                                
  91.                 case evKey:
  92.                                 key = GetKey();
  93.                                 if (key==27) ExitProcess();
  94.                                 if (key==13) { RunProgram(#app_paths[app_list.current].item, #file_path); ExitProcess(); }
  95.                                 if (app_list.ProcessKey(key)) DrawAppList();
  96.                                 break;
  97.                                
  98.                 case evReDraw: _APP_LIST_DRAW:
  99.                                 WIN_H = app_list.h+PANEL_H+PADDING+2;
  100.                                 DefineAndDrawWindow(files.w-WIN_W/2+files.x+Form.left+6,
  101.                                 files.h-WIN_H/2+files.y+Form.top+GetSkinHeight(),WIN_W+1,WIN_H,0x01, 0, 0, 0x01fffFFF);
  102.                                 GetProcessInfo(#MenuForm, SelfInfo);
  103.                                 DrawPopup(0,0,MenuForm.width-2,MenuForm.height-2,0, sc.work, sc.work_graph);
  104.                                 DrawRectangle(app_list.x-1, app_list.y-2, app_list.w+1, app_list.h+2, sc.work_graph);
  105.  
  106.                                 Put_icon(#file_name+_strrchr(#file_name,'.'), 10, 13, sc.work, 0);
  107.                                 WriteText(35,10, 0x80, sc.work_text, T_SELECT_APP_TO_OPEN_WITH);
  108.                                 WriteText(35,23, 0x80, sc.work_text, #file_name);
  109.  
  110.                                 DrawAppList();
  111.         }
  112. }
  113.  
  114. void DrawAppList()
  115. {
  116.         #define SCROLL_WIDTH 5
  117.         llist tiny_scroll;
  118.         dword index, col_bg;
  119.         for (index = 0; (index<app_list.visible) && (index+app_list.first<app_list.count); index++)
  120.         {
  121.                 if (index+app_list.first==app_list.current) col_bg = col_selec; else col_bg = 0xFFFfff;
  122.                 DrawBar(app_list.x, index*app_list.line_h+app_list.y, app_list.w, app_list.line_h, col_bg);
  123.                 Put_icon(#app_paths[index+app_list.first].ext, app_list.x+4, index*app_list.line_h+app_list.y+2, col_bg, 6);
  124.                 WriteText(app_list.x+25, index*app_list.line_h+app_list.y+7, 0x80, 0, #app_paths[index+app_list.first].item);
  125.         }
  126.         tiny_scroll.x = app_list.x+app_list.w-SCROLL_WIDTH-1;
  127.         tiny_scroll.h = app_list.h * app_list.visible / app_list.count;
  128.         tiny_scroll.y = app_list.h * app_list.first / app_list.count + app_list.y;
  129.         debugi(tiny_scroll.y + tiny_scroll.h - app_list.y - app_list.h);
  130.         if (tiny_scroll.y + tiny_scroll.h - app_list.y - app_list.h >= 0) tiny_scroll.y = app_list.y + app_list.h - tiny_scroll.h-1;
  131.         DrawBar(tiny_scroll.x, tiny_scroll.y, SCROLL_WIDTH, tiny_scroll.h, 0x555555); //scroll
  132. }