Subversion Repositories Kolibri OS

Rev

Rev 9516 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1.  
  2. //===================================================//
  3. //                                                   //
  4. //                     SCROLL                        //
  5. //                                                   //
  6. //===================================================//
  7.  
  8. void DrawScroll(bool _scroll_used) {
  9.         dword i;
  10.  
  11.         dword sc_x = files.x + files.w;
  12.         dword sc_y = files.y;
  13.         dword sc_h = files.h - 16;
  14.         dword sc_slider_y;
  15.         dword sc_center;
  16.  
  17.         if (files.count<=0)
  18.         {
  19.                 sc_slider_y = sc_y - 1;
  20.                 sc_slider_h = sc_h + 1;
  21.         } else {
  22.                 sc_slider_y = files.first * sc_h / files.count + sc_y - 1;
  23.                 sc_slider_h = sc_h * files.visible - files.visible / files.count + 2;
  24.                 if (sc_slider_h < 20) {
  25.                         sc_slider_h = 20; //set minimal scroll height
  26.                 }
  27.                 if (sc_slider_h > sc_h-sc_slider_y+56) || (files.first+files.visible>=files.count) {
  28.                         sc_slider_y= sc_y + sc_h - sc_slider_h; //fix for the very long list
  29.                 }
  30.         }
  31.         //slider
  32.         DrawRectangle(sc_x,sc_slider_y,16,sc_slider_h,sc.line);
  33.         sc_x++;
  34.         DrawRectangle3D(sc_x,sc_slider_y+1,14,sc_slider_h-2, sc.light , sc.dark);
  35.         for (i=0; i<13; i++) {
  36.                 if (!_scroll_used) EDX = col.work_gradient[13-i]; else EDX = col.work_gradient[i];
  37.                 DrawBar(sc_x + 1 + i, sc_slider_y+2, 1, sc_slider_h-3, EDX);
  38.         }
  39.  
  40.         sc_center = sc_slider_h / 2 + sc_slider_y;
  41.  
  42.         DrawBar(sc_x+2, sc_center,   10, 1, sc.line);
  43.         DrawBar(sc_x+3, sc_center-3, 8,  1, EDX);
  44.         DrawBar(sc_x+3, sc_center+3, 8,  1, EDX);
  45.  
  46.         DrawBar(sc_x+3, sc_center+1, 10, 1, sc.light);
  47.         DrawBar(sc_x+4, sc_center-2, 8,  1, EDX);
  48.         DrawBar(sc_x+4, sc_center+4, 8,  1, EDX);
  49.  
  50.         //area before slider
  51.         if (sc_slider_y > sc_y + 1)
  52.         {
  53.                 DrawBar(sc_x,   sc_y,   15, 1, col.slider_bg_left);
  54.                 DrawBar(sc_x,   sc_y+1,  1, sc_slider_y-sc_y-1, col.slider_bg_left);
  55.                 DrawBar(sc_x+1, sc_y+1, 14, sc_slider_y-sc_y-1, col.slider_bg_big);
  56.         }
  57.         //area after slider
  58.         if (sc_h-sc_slider_h+sc_y-2>sc_slider_y)
  59.         {
  60.                 DrawBar(sc_x,   sc_slider_y + sc_slider_h+1, 15, 1, col.slider_bg_left);
  61.                 DrawBar(sc_x,   sc_slider_y + sc_slider_h+2,  1, sc_h-sc_slider_h-sc_slider_y+sc_y-2, col.slider_bg_left);
  62.                 DrawBar(sc_x+1, sc_slider_y + sc_slider_h+2, 14, sc_h-sc_slider_h-sc_slider_y+sc_y-2, col.slider_bg_big);
  63.         }
  64. }
  65.  
  66. //===================================================//
  67. //                                                   //
  68. //                  FLAT BUTTONS                     //
  69. //                                                   //
  70. //===================================================//
  71.  
  72. void DrawFlatButtonSmall(dword x,y,width,height,id,text)
  73. {
  74.         DrawRectangle(x,y,width,height,sc.line);
  75.         DrawRectangle3D(x+1,y+1,width-2,height-2, sc.light, sc.dark);
  76.         PutPixel(x+width-1, y+1, sc.dark);
  77.         DrawFilledBar(x+2, y+2, width-3, height-3);
  78.         if (id) DefineHiddenButton(x+1,y+1,width-2,height-2,id);
  79.         WriteText(-strlen(text)*6+width/2+x+1,height/2+y-3,0x80,sc.work_text,text);
  80. }
  81.  
  82. void DrawFilledBar(dword x, y, w, h)
  83. { int i; for (i=0; i<h; i++) DrawBar(x, y+h-i-1, w, 1, col.work_gradient[i]); }
  84.  
  85. void DrawFuncButton(dword x,y,width,id,number,text)
  86. {
  87.         #define FW 12
  88.         #define FH 16
  89.         int numw = calc(number/10)*6+FW;
  90.         if (skin_is_dark()) {
  91.                 DrawFlatButtonSmall(x,y,width,FH,id,text);
  92.                 return;
  93.         }
  94.         DrawRectangle(x,y,width,FH,sc.line);
  95.         DrawRectangle3D(x+1,y+1,width-2,FH-2, 0x97D194, 0x00A100);
  96.         PutPixel(x+width-1, y+1, sc.dark);
  97.         DrawBar(x+2, y+2, numw, FH-2, 0x6060FF);
  98.         WriteText(x+6,FH/2+y-2,0x80,0x444444,itoa(number));
  99.         $sub ebx, 1 <<16 + 1
  100.         $add ecx, 0xFFFfff-0x444444
  101.         $int 64
  102.         DrawBar(x+2+numw, y+2, width-3-numw, FH-3, 0x00AA00);
  103.         DefineHiddenButton(x+1,y+1,width-2,FH-2,id);
  104.         WriteText(-strlen(text)*6+width/2+x+8,FH/2+y-2,0x80,0x444444,text);
  105.         $sub ebx, 1 <<16 + 1
  106.         $add ecx, 0xFFFfff-0x444444
  107.         $int 64
  108. }
  109.  
  110. //===================================================//
  111. //                                                   //
  112. //                     LEFT PANEL                    //
  113. //                                                   //
  114. //===================================================//
  115.  
  116. void Tip(int y, dword caption, id, arrow)
  117. {
  118.         DrawBar(SB_BLOCKX,y,SB_BLOCKW,1,col.list_bg);
  119.         DrawBar(SB_BLOCKX,y+1,1,16,sc.light);
  120.         DrawFilledBar(SB_BLOCKX+1, y+1, SB_BLOCKW-1, 16);
  121.         DrawBar(SB_BLOCKX,y+SB_BLOCKX,SB_BLOCKW,1,sc.line);
  122.         WriteText(SB_BLOCKX+8,y+5,0x80,col.list_gb_text,caption);
  123.         if (id) DefineButton(159,y+1,16,16,id+BT_HIDE+BT_NOFRAME,0); //arrow button
  124.         WriteText(165,y+5,0x80,col.list_gb_text,arrow); //arrow
  125. }
  126.  
  127. void ActionsDraw(int actions_y)
  128. {
  129.         int i;
  130.         Tip(actions_y-18, T_ACTIONS, 77, "");
  131.         for (i=0; actions[i*3]!=0; i++, actions_y+=DEV_H)
  132.         {
  133.                 DrawBar(SB_BLOCKX,actions_y,SB_BLOCKW,DEV_H,0xFFFFFF); //áåëîå
  134.                 DefineButton(SB_BLOCKX,actions_y,SB_BLOCKW-1,DEV_H,actions[i*3]+BT_HIDE,0xE4DFE1);
  135.                 WriteText(45,actions_y+4,0x80,0,actions[i*3+1]);
  136.                 WriteText(-strlen(actions[i*3+2])*6+SIDEBAR_W-SBPAD-7,actions_y+4,0x80,0x999999,actions[i*3+2]);
  137.                 PutImage(23,actions_y+2, 14,13, i*14*13*3+#factions);
  138.         }
  139. }
  140.  
  141. void DrawLeftPanelBg(int actions_y)
  142. {
  143.         int start_y = actions_y+159;
  144.         int area_h;
  145.         DrawBar(2,41,SIDEBAR_W-2,SBPAD,waves_pal[0]);    //above devices block
  146.         DrawBar(SB_BLOCKX,actions_y+75,SB_BLOCKW,SBPAD,EDX);  //below devices block
  147.         DrawBar(2,56,SBPAD,actions_y+103,EDX);   //on the left
  148.         DrawBar(SIDEBAR_W-SBPAD,56,SBPAD,actions_y+103,EDX); //on the right
  149.         area_h = Form.cheight-start_y-2 - status_bar_h;
  150.         if (area_h < 268){
  151.                 PutPaletteImage(#blue_hl, 190, area_h, 2, start_y, 8, #waves_pal);
  152.         } else {
  153.                 DrawBar(2,start_y,SIDEBAR_W-2, area_h-268, waves_pal[0]);
  154.                 PutPaletteImage(#blue_hl, 190, 268, 2, Form.cheight-270-status_bar_h, 8, #waves_pal);
  155.         }
  156.         PutShadow(SB_BLOCKX,actions_y+75,SB_BLOCKW,1,1,3);
  157.         PutShadow(SB_BLOCKX+1,actions_y+75+1,SB_BLOCKW-2,1,1,1);
  158.         PutShadow(SB_BLOCKX,start_y,SB_BLOCKW,1,1,3);
  159.         PutShadow(SB_BLOCKX+1,start_y+1,SB_BLOCKW-2,1,1,1);
  160. }
  161.  
  162. //===================================================//
  163. //                                                   //
  164. //                     PATHBAR                       //
  165. //                                                   //
  166. //===================================================//
  167.  
  168. char work_area_pointer[1024];
  169. PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x000000, 0xFFFFCC, NULL, #work_area_pointer, 0};
  170. void DrawPathBar()
  171. {
  172.         if (efm) {
  173.                 DrawPathBarKfm();
  174.         } else {
  175.                 DrawPathEolite();
  176.         }
  177. }
  178.  
  179. void DrawPathEolite()
  180. {
  181.         PathShow.text_pointer = location[0];
  182.         PathShow.area_size_x = Form.cwidth-300;
  183.         DrawBar(PathShow.start_x-3, PathShow.start_y-6, PathShow.area_size_x+3, 19, col.odd_line);
  184.         DrawRectangle(PathShow.start_x-4,PathShow.start_y-7,PathShow.area_size_x+4,20,sc.line);
  185.         DefineHiddenButton(PathShow.start_x-4+1,PathShow.start_y-7+1,PathShow.area_size_x+4-2,20-2,BTN_PATH);
  186.         DrawBar(PathShow.start_x-4, PathShow.start_y+14, PathShow.area_size_x+5+18, 1, sc.light);
  187.  
  188.         DrawFlatButtonSmall(PathShow.start_x+PathShow.area_size_x,PathShow.start_y-7,18,20, BTN_BREADCRUMB, "\x19");
  189.  
  190.         PathShow.font_color = col.list_gb_text;
  191.         PathShow_prepare stdcall(#PathShow);
  192.         PathShow_draw stdcall(#PathShow);
  193. }
  194.  
  195. void DrawPathBarKfm()
  196. {
  197.         dword back_color, text_color;
  198.         int draw_x, draw_w;
  199.         int i=0;
  200.         if (!Form.cwidth) return;
  201.  
  202.         if (skin_is_dark()) {
  203.                 back_color = col.odd_line;
  204.                 text_color = col.list_gb_text;
  205.         } else {
  206.                 back_color = 0xFFFFCC;
  207.                 text_color = 0x222222;
  208.         }
  209.         draw_x = 3 + DDW;
  210.         draw_w = Form.cwidth/2 - draw_x - 17;
  211.         do {
  212.                 DrawBar(draw_x, SELECTY-1, draw_w-KFM2_DEVH+1, 1, sc.line);
  213.                 DrawBar(draw_x, SELECTY,   draw_w-KFM2_DEVH+1, KFM2_DEVH, back_color);
  214.                 DefineHiddenButton(draw_x, SELECTY, draw_w-KFM2_DEVH, KFM2_DEVH-1, BTN_PATH+i);
  215.                 DrawBar(draw_x, SELECTY+KFM2_DEVH, draw_w-KFM2_DEVH+1, 1, sc.line);
  216.                 kfont.WriteIntoWindow(draw_x + 3, math.max(KFM2_DEVH-kfont.height/2+SELECTY,0),
  217.                         back_color, text_color, kfont.size.pt, location[i]+strrchr(location[i], '/'));
  218.                 DrawFlatButtonSmall(draw_x+draw_w-KFM2_DEVH+1, SELECTY-1, KFM2_DEVH-1, KFM2_DEVH+1, BTN_BREADCRUMB+i, "\x19");
  219.                 draw_x = Form.cwidth/2 + DDW + 1;
  220.                 draw_w = Form.cwidth - draw_x - 2;
  221.                 i++;
  222.         } while (i<2);
  223. }
  224.  
  225. //===================================================//
  226. //                                                   //
  227. //                   BREADCRUMBS                     //
  228. //                                                   //
  229. //===================================================//
  230.  
  231. void DrawBreadCrumbs()
  232.  collection_int breadCrumb=0;
  233.  char PathShow_path[4096];
  234.  int btnx, btnw;
  235.  int i;
  236.  {
  237.         breadCrumb.drop();
  238.         strcpy(#PathShow_path, "/<root>");
  239.         if (ESBYTE[path+1]) {
  240.                 strcat(#PathShow_path, path);
  241.         }
  242.         for (i=0; (PathShow_path[i]) && (i<sizeof(PathShow_path)-1); i++)
  243.         {
  244.                 if (PathShow_path[i]=='/') {
  245.                         PathShow_path[i] = NULL;
  246.                         breadCrumb.add(i+1);
  247.                 }
  248.         }
  249.         breadCrumb.add(i+1);
  250.  
  251.         if (!efm) {
  252.                 btnx = 250-4;
  253.                 btnw = Form.cwidth-278;
  254.         } else {
  255.                 btnx = Form.cwidth/2-2*active_panel + DDW + 2;
  256.                 btnw = 35*active_panel + Form.cwidth/2 - 17 - DDW - 2;
  257.         }
  258.  
  259.         for (i=0; i<breadCrumb.count-1; i++) {
  260.                 EDI = breadCrumb.get(i) + #PathShow_path;
  261.                 DrawFlatButtonSmall(btnx, KFM2_DEVH-1*i+SELECTY+KFM2_DEVH,
  262.                         btnw, KFM2_DEVH, i+BREADCRUMB_ID, EDI);
  263.         }
  264. }
  265.  
  266. void ClickOnBreadCrumb(unsigned clickid)
  267. {
  268.         int i, slashpos = path;
  269.         if (!clickid) {
  270.                 ESBYTE[path+1] = '\0';
  271.         } else {
  272.                 for (i=1; i!=clickid+2; i++) {
  273.                         slashpos=strchr(slashpos,'/')+1;
  274.                 }
  275.                 ESBYTE[slashpos-1] = '\0';             
  276.         }
  277.         OpenDir(WITH_REDRAW);
  278. }
  279.  
  280. //===================================================//
  281. //                                                   //
  282. //                       MISC                        //
  283. //                                                   //
  284. //===================================================//
  285.  
  286. int DrawEolitePopup(dword b1_text, b2_text)
  287. {
  288.         int popin_x = files.w - POPIN_W / 2 + files.x ;
  289.         DrawPopup(popin_x, 160, POPIN_W, 95, 1, sc.work, sc.line);
  290.         DrawCaptButton(popin_x+23+000, 215, 100, 26, POPUP_BTN1, sc.button, sc.button_text, b1_text);
  291.         DrawCaptButton(popin_x+23+114, 215, 100, 26, POPUP_BTN2, sc.button, sc.button_text, b2_text);
  292.         popin_text.left = popin_x+30;
  293.         if (popin_string[0] != -1) DrawEditBox(#popin_text);
  294.         return popin_x;
  295. }
  296.  
  297. void DrawDot(dword x,y) {
  298.         dword col_pxl = MixColors(sc.line, sc.work, 60);
  299.         DrawBar(x+1,y,2,4,sc.line);
  300.         DrawBar(x,y+1,4,2,sc.line);
  301.         PutPixel(x,y,col_pxl);
  302.         PutPixel(x+3,y,EDX);
  303.         PutPixel(x,y+3,EDX);
  304.         PutPixel(x+3,y+3,EDX);
  305. }