-rw-r--r-- | libopie/TODO | 5 | ||||
-rw-r--r-- | libopie/ofileselector.h | 33 |
2 files changed, 34 insertions, 4 deletions
diff --git a/libopie/TODO b/libopie/TODO index 98baf72..22d8088 100644 --- a/libopie/TODO +++ b/libopie/TODO @@ -10,2 +10,7 @@ - new Dirs created inside the listview + - implemenent the compability functions + - implement close and new icons + - have a persistent QWidgetStack so we can add plugins + - mode switching + - better Layout handling diff --git a/libopie/ofileselector.h b/libopie/ofileselector.h index 8173d76..5c38ac4 100644 --- a/libopie/ofileselector.h +++ b/libopie/ofileselector.h @@ -72,6 +72,28 @@ class OFileSelector : public QWidget { enum Mode {OPEN=1, SAVE=2, FILESELECTOR=4, DIR=8 }; - enum Selector{NORMAL=1, EXTENDED = 2, EXTENDED_ALL =4 }; + enum Selector{NORMAL=0, EXTENDED = 1, EXTENDED_ALL =2 }; enum View { DIRS = 1, FILES = 2, TREE = 4, ICON = 8 }; - OFileSelector(QWidget *wid, int mode, int selector, const QString &dirName, const QString &fileName = QString::null, const QStringList &mimetypes = QStringList() ); + + OFileSelector(QWidget *wid, int mode, int selector, + const QString &dirName, + const QString &fileName = QString::null, + const QStringList &mimetypes = QStringList() ); + + + OFileSelector(const QString &mimeFilter, QWidget *parent, + const char *name, bool newVisible = TRUE, + bool closeVisible = FALSE ) { }; + ~OFileSelector() {}; + + // currently only for the FILESELECTOR Mode + void setNewVisible( bool /*b*/ ) { }; + void setCloseVisible(bool /*b*/ ) { }; + + // end file selector mode + // deprecated + void reread() { reparse(); }; + // make sure not to leak please + const DocLnk *selected(); + // end deprecated + bool isToolbarVisible() const { return m_shTool; }; @@ -182,2 +204,5 @@ class OFileSelector : public QWidget { QLabel *m_fnLabel; + + bool m_shClose : 1; + bool m_shNew : 1; bool m_shTool:1; @@ -218,4 +243,4 @@ private slots: virtual void slotContextMenu( QListViewItem *item); - // listview crap see above - // PopupMenu crap + // listview above + // popup below virtual void slotChangedDir(); |