mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
- Finish dnd support. It currently doesn't work with other file managers
(sporadically it works with Konqueror) because fltk always sets text/plain mimetype. - Fix cut/copy/paste to use system clipboard instead of internal arrays. Again, it would work with other fm's with proper mimetype. - Many tweaks to EDE_Browser to make it render properly inside a Fl_Tile. - Add treeview support to Fl_Icon_Browser and implement directory tree in efiler. - Add location bar. - Beggining of multi-view support.
This commit is contained in:
@ -135,6 +135,22 @@ public:
|
||||
void remove_icon(int line);
|
||||
Fl_Image* get_icon(int line);
|
||||
|
||||
// focus management
|
||||
int get_focus() { return lineno(selection()); }
|
||||
void set_focus(int row) { select(row,selected(row)); }
|
||||
|
||||
// tree support
|
||||
void indent(int line, int level);
|
||||
int indent(int line);
|
||||
void collapse(void*l);
|
||||
void expand(void*l);
|
||||
void toggle_collapse(void*l);
|
||||
void collapse(int line);
|
||||
void expand(int line);
|
||||
void toggle_collapse(int line);
|
||||
void collapse_all();
|
||||
void expand_all();
|
||||
int handle(int);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user