Subversion Repositories Kolibri OS

Rev

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