- 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:
Vedran Ljubovic
2007-08-01 18:04:35 +00:00
parent 68364591e2
commit a99c55b6f1
8 changed files with 1205 additions and 462 deletions

View File

@ -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