summaryrefslogtreecommitdiff
path: root/noncore/graphics/opie-eye/gui/filesystem.h
Unidiff
Diffstat (limited to 'noncore/graphics/opie-eye/gui/filesystem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/graphics/opie-eye/gui/filesystem.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/noncore/graphics/opie-eye/gui/filesystem.h b/noncore/graphics/opie-eye/gui/filesystem.h
new file mode 100644
index 0000000..a29ad87
--- a/dev/null
+++ b/noncore/graphics/opie-eye/gui/filesystem.h
@@ -0,0 +1,34 @@
1/*
2 * GPLv2 zecke@handhelds.org
3 * No WArranty...
4 */
5
6#ifndef PHUNK_FILE_SYSTEM_H
7#define PHUNK_FILE_SYSTEM_H
8
9#include <qtoolbutton.h>
10#include <qmap.h>
11
12class QPopupMenu;
13class StorageInfo;
14class PFileSystem : public QToolButton {
15 Q_OBJECT
16public:
17 PFileSystem( QToolBar* );
18 ~PFileSystem();
19
20signals:
21 void changeDir( const QString& );
22
23private slots:
24 void slotSelectDir( int );
25 void changed();
26
27private:
28 QPopupMenu* m_pop;
29 StorageInfo *m_storage;
30 QMap<QString, QString> m_dev;
31};
32
33
34#endif