aboutsummaryrefslogtreecommitdiff
path: root/gui/browser.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/browser.h')
-rw-r--r--gui/browser.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/gui/browser.h b/gui/browser.h
index a07f169eb3..015d0d536a 100644
--- a/gui/browser.h
+++ b/gui/browser.h
@@ -26,6 +26,8 @@
#include "common/list.h"
class ListWidget;
+class StaticTextWidget;
+
class FilesystemNode;
class FSList;
@@ -35,11 +37,16 @@ class BrowserDialog : public Dialog {
public:
BrowserDialog(NewGui *gui);
+ virtual void open();
+ virtual void handleCommand(CommandSender *sender, uint32 cmd, uint32 data);
+
protected:
ListWidget *_fileList;
+ StaticTextWidget*_currentPath;
FilesystemNode *_node;
- FSList *_content;
+ FSList *_nodeContent;
+ void updateListing();
};
#endif