mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Better layout of browser, fix hiding
This commit is contained in:
parent
25b80eaffa
commit
3fa8a90a96
@ -217,7 +217,7 @@ static void scroll_cb(Fl_Widget* w, void*) {
|
||||
EDE_Browser::EDE_Browser(int X,int Y,int W,int H,const char *L) : Fl_Icon_Browser(X,Y,W,H),
|
||||
totalwidth_(0), column_header_(0), sort_column(0), sort_type(NO_SORT), sort_direction(false) {
|
||||
|
||||
Fl_Group* thegroup = new Fl_Group(X,Y,W,H);
|
||||
thegroup = new Fl_Group(X,Y,W,H);
|
||||
thegroup->begin();
|
||||
heading = new Heading(0,0,W,buttonheight);
|
||||
heading->box(FL_FLAT_BOX); // draw heading background
|
||||
@ -226,7 +226,7 @@ EDE_Browser::EDE_Browser(int X,int Y,int W,int H,const char *L) : Fl_Icon_Browse
|
||||
heading->hide();
|
||||
heading->parent(this); // for callback
|
||||
|
||||
hscrollbar = new Fl_Scrollbar(1, H-Fl::scrollbar_size()-2, W-Fl::scrollbar_size()-3, Fl::scrollbar_size()); // take account for edges
|
||||
hscrollbar = new Fl_Scrollbar(1, H-Fl::scrollbar_size(), W-Fl::scrollbar_size()-3, Fl::scrollbar_size()); // take account for edges
|
||||
hscrollbar->type(FL_HORIZONTAL);
|
||||
hscrollbar->hide();
|
||||
hscrollbar->parent(this); // for callback
|
||||
@ -407,11 +407,11 @@ void EDE_Browser::resize(int X, int Y, int W, int H) {
|
||||
// show scrollbar
|
||||
hscrollbar->value(hscrollbar->value(), W, 0, totalwidth_);
|
||||
if (!hscrollbar->visible()) {
|
||||
hscrollbar->resize(X+1, Y+H-fsbs-2, W-fsbs-3, fsbs);
|
||||
hscrollbar->resize(X+1, Y+H-fsbs, W-fsbs-3, fsbs);
|
||||
hscrollbar->show();
|
||||
H -= fsbs;
|
||||
} else {
|
||||
hscrollbar->resize(X+1, Y+H-2, W-fsbs-3, fsbs);
|
||||
hscrollbar->resize(X+1, Y+H, W-fsbs-3, fsbs);
|
||||
hscrollbar->redraw();
|
||||
}
|
||||
}
|
||||
|
@ -95,6 +95,8 @@ private:
|
||||
void mqsort(char *labels[], int beg, int end, SortType type); // my implementation of qsort
|
||||
bool sortfn(char *,char*,SortType); // sort function, per type
|
||||
|
||||
Fl_Group* thegroup;
|
||||
|
||||
public:
|
||||
EDE_Browser(int X,int Y,int W,int H,const char *L=0);
|
||||
|
||||
@ -193,6 +195,12 @@ public:
|
||||
}
|
||||
Fl_Icon_Browser::hposition(X);
|
||||
}
|
||||
|
||||
void hide() {
|
||||
heading->hide();
|
||||
thegroup->hide(); /* group */
|
||||
Fl_Widget::hide();
|
||||
}
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user