From ab54b10083972c3efc85cc8cfa17f97c3d8b37a0 Mon Sep 17 00:00:00 2001 From: "Kirill Lipatov (Leency)" Date: Wed, 24 Feb 2016 16:49:57 +0000 Subject: [PATCH] Eolite 3.5: Breadcrumbs (option settings) git-svn-id: svn://kolibrios.org@6289 a494cfbc-eb01-0410-851d-a64ba20cac60 --- programs/cmm/eolite/Eolite.c | 30 +++++----- programs/cmm/eolite/include/breadcrumbs.h | 64 ++++++++++++++++++++++ programs/cmm/eolite/include/gui.h | 6 +- programs/cmm/eolite/include/settings.h | 24 ++++---- programs/cmm/eolite/include/translations.h | 4 +- 5 files changed, 98 insertions(+), 30 deletions(-) create mode 100644 programs/cmm/eolite/include/breadcrumbs.h diff --git a/programs/cmm/eolite/Eolite.c b/programs/cmm/eolite/Eolite.c index ba134b76dd..c0a9724e4b 100644 --- a/programs/cmm/eolite/Eolite.c +++ b/programs/cmm/eolite/Eolite.c @@ -28,7 +28,8 @@ //Button IDs enum { POPUP_BTN1 = 201, - POPUP_BTN2 = 202 + POPUP_BTN2 = 202, + BREADCRUMB_ID = 300 }; //NewElement options @@ -98,11 +99,11 @@ int sort_num=2, real_files_names_case=false, info_after_copy=false, two_panels=false, + show_breadcrumb=false, active_panel=1; //} settings; edit_box new_file_ed = {171,213,180,0xFFFFFF,0x94AECE,0xFFFFFF,0xFFFFFF,0,248,#new_element_name,#mouse_dd,100000000000010b,6,0}; -PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x0, 0xFFFfff, #path, #temp, 0}; PathShow_data FileShow = {0, 56,215, 6, 100, 0, 0, 0x0, 0xFFFfff, #file_name, #temp, 0}; byte cmd_free=0; #include "include\translations.h" @@ -122,10 +123,11 @@ char *fd_path_eolite_ini_path; #include "include\delete.h" #include "include\about.h" #include "include\properties.h" +#include "include\breadcrumbs.h" void main() { - word id; + dword id; byte count_sl = 0; signed x_old, y_old, dif_x, dif_y, adif_x, adif_y; char can_show, can_select, stats; @@ -343,6 +345,9 @@ void main() DeleteButton(POPUP_BTN1); DeleteButton(POPUP_BTN2); break; + case BREADCRUMB_ID...400: + ClickOnBreadCrumb(id-BREADCRUMB_ID); + break; } break; //Key pressed----------------------------------------------------------------------------- @@ -539,11 +544,12 @@ void draw_window() DrawBar(127, 8, 1, 25, col_graph); for (j=0; j<3; j++) DefineButton(toolbar_buttons_x[j]+2,5+2,31-5,29-5,21+j+BT_HIDE,NULL); for (j=3; j<6; j++) DefineButton(toolbar_buttons_x[j],5,31,29,21+j+BT_HIDE,NULL); - DrawBar(246,0, Form.cwidth - 297,12, col_work); //upper editbox - DrawBar(246,29,Form.cwidth - 297,5, col_work); //lower editbox - DrawRectangle(246,12,Form.cwidth - 303,16,col_graph); - DefineButton(Form.cwidth - 32,6,27,28,51+BT_HIDE+BT_NOFRAME,0); //about - PutPaletteImage(#goto_about,56,34,Form.width-65,0,8,#goto_about_pal); + DrawBar(246,0, Form.cwidth - 246, 34, col_work); + if (!show_breadcrumb) { + DrawRectangle(246,12,Form.cwidth - 303,16,col_graph); + DefineButton(Form.cwidth - 32,6,27,28,51+BT_HIDE+BT_NOFRAME,0); //about + PutPaletteImage(#goto_about,56,34,Form.width-65,0,8,#goto_about_pal); + } //main rectangles DrawRectangle(1,40,Form.cwidth-3,Form.cheight - 42,col_graph); DrawRectangle(0,39,Form.cwidth-1,Form.cheight - 40,col_palette[4]); //bg @@ -753,13 +759,7 @@ void Open_Dir(dword dir_path, redraw){ } if (files.count!=-1) { - if(!_not_draw) - { - PathShow.area_size_x = Form.cwidth-306; - DrawBar(PathShow.start_x-3, PathShow.start_y-4, PathShow.area_size_x+2, 15, 0xFFFfff); - PathShow_prepare stdcall(#PathShow); - PathShow_draw stdcall(#PathShow); - } + if(!_not_draw) if (show_breadcrumb) DrawBreadCrumbs(); else DrawPathBar(); history.add(#path); SystemDiscs.Draw(); files.visible = files.h / files.item_h; diff --git a/programs/cmm/eolite/include/breadcrumbs.h b/programs/cmm/eolite/include/breadcrumbs.h new file mode 100644 index 0000000000..83ce5e9edb --- /dev/null +++ b/programs/cmm/eolite/include/breadcrumbs.h @@ -0,0 +1,64 @@ + +PathShow_data PathShow = {0, 17,250, 6, 250, 0, 0, 0x0, 0xFFFfff, #path, #temp, 0}; +void DrawPathBar() +{ + PathShow.area_size_x = Form.cwidth-306; + DrawBar(PathShow.start_x-3, PathShow.start_y-4, PathShow.area_size_x+2, 15, 0xFFFfff); + PathShow_prepare stdcall(#PathShow); + PathShow_draw stdcall(#PathShow); +} + +void DrawBreadCrumbs() + collection_int breadCrumb; + char PathShow_path[4096]; + obj btn; + int i; + unsigned text_line, area_w; + { + strcat(#PathShow_path, #path); + for (i=0; i<50; i++) DeleteButton(i+BREADCRUMB_ID); + breadCrumb.drop(); + for (i=0; PathShow_path[i]; i++) + { + if (PathShow_path[i]=='/') { + PathShow_path[i] = NULL; + breadCrumb.add(i+1); + } + } + btn.size(246,10,NULL,20); + area_w = Form.cwidth - btn.x - 20; + for (i=0; i18) files.item_h--; else if (id==30) { label.size.pt++; IF(!label.changeSIZE()) label.size.pt--; BigFontsChange(); } else if (id==31) { label.size.pt--; IF(!label.changeSIZE()) label.size.pt++; BigFontsChange(); } EventRedrawWindow(Form.left,Form.top); - DrawSettingsCheckBoxes(); + //DrawSettingsCheckBoxes(); break; case evKey: @@ -64,10 +65,8 @@ void settings_dialog() break; case evReDraw: - DefineAndDrawWindow(Form.left + Form.width/2-10, Form.top + Form.height/2 - 75, 370, 258+GetSkinHeight(),0x34,system.color.work,TITLE_SETT); + DefineAndDrawWindow(Form.left + Form.width/2-10, Form.top + Form.height/2 - 75, 370, 282+GetSkinHeight(),0x34,system.color.work,TITLE_SETT); DrawSettingsCheckBoxes(); - DrawFlatButton(9, 180, strlen(SAVE_PATH_AS_DEFAULT)+3*8, 24, 6, SAVE_PATH_AS_DEFAULT); - DrawFlatButton(9, 216, strlen(EDIT_FILE_ASSOCIATIONS)+3*8, 24, 5, EDIT_FILE_ASSOCIATIONS); } } } @@ -82,12 +81,17 @@ void ExitSettings() void DrawSettingsCheckBoxes() { - CheckBox(10, 13, 20, SHOW_DEVICE_CLASS, show_dev_name); - CheckBox(10, 37, 21, SHOW_REAL_NAMES, real_files_names_case); - CheckBox(10, 61, 22, NOTIFY_COPY_END, info_after_copy); - CheckBox(10, 85, 24, USE_TWO_PANELS, two_panels); - MoreLessBox(10, 115, 25, 26, files.item_h, LIST_LINE_HEIGHT); - if (label.font) MoreLessBox(10, 144, 30, 31, label.size.pt, FONT_SIZE_LABEL); + incn y; + y.n = 0; + CheckBox(10, y.inc(13), 20, SHOW_DEVICE_CLASS, show_dev_name); + CheckBox(10, y.inc(24), 21, SHOW_REAL_NAMES, real_files_names_case); + CheckBox(10, y.inc(24), 22, NOTIFY_COPY_END, info_after_copy); + CheckBox(10, y.inc(24), 24, USE_TWO_PANELS, two_panels); + CheckBox(10, y.inc(24), 32, "Show breadcrumbs", show_breadcrumb); + MoreLessBox(10, y.inc(30), 25, 26, files.item_h, LIST_LINE_HEIGHT); + if (label.font) MoreLessBox(10, y.inc(30), 30, 31, label.size.pt, FONT_SIZE_LABEL); + DrawFlatButton(9, y.inc(35), strlen(SAVE_PATH_AS_DEFAULT)+3*8, 24, 6, SAVE_PATH_AS_DEFAULT); + DrawFlatButton(9, y.inc(35), strlen(EDIT_FILE_ASSOCIATIONS)+3*8, 24, 5, EDIT_FILE_ASSOCIATIONS); } diff --git a/programs/cmm/eolite/include/translations.h b/programs/cmm/eolite/include/translations.h index ed666f9fe7..d5c5d4b297 100644 --- a/programs/cmm/eolite/include/translations.h +++ b/programs/cmm/eolite/include/translations.h @@ -1,5 +1,5 @@ -#define TITLE "Eolite File Manager v3.45" -#define ABOUT_TITLE "EOLITE 3.45" +#define TITLE "Eolite File Manager v3.5" +#define ABOUT_TITLE "EOLITE 3.5" #ifdef LANG_RUS ?define T_FILE "” ©«"