summaryrefslogtreecommitdiff
path: root/libopie
authorzecke <zecke>2002-04-27 22:33:52 (UTC)
committer zecke <zecke>2002-04-27 22:33:52 (UTC)
commit392596c06dedf8ddaea7c55745460e631073d15a (patch) (unidiff)
treecbd3de42d37e8144f8bca2436fb20ae3df8d4c38 /libopie
parent2dc8c64cfa30a199e4ebd45618e726e9ffc6f7dc (diff)
downloadopie-392596c06dedf8ddaea7c55745460e631073d15a.zip
opie-392596c06dedf8ddaea7c55745460e631073d15a.tar.gz
opie-392596c06dedf8ddaea7c55745460e631073d15a.tar.bz2
backward compability functions and TODO update
Diffstat (limited to 'libopie') (more/less context) (show whitespace changes)
-rw-r--r--libopie/TODO5
-rw-r--r--libopie/ofileselector.h33
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 @@
10 - new Dirs created inside the listview 10 - new Dirs created inside the listview
11 - implemenent the compability functions
12 - implement close and new icons
13 - have a persistent QWidgetStack so we can add plugins
14 - mode switching
15 - better Layout handling
11 16
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 {
72 enum Mode {OPEN=1, SAVE=2, FILESELECTOR=4, DIR=8 }; 72 enum Mode {OPEN=1, SAVE=2, FILESELECTOR=4, DIR=8 };
73 enum Selector{NORMAL=1, EXTENDED = 2, EXTENDED_ALL =4 }; 73 enum Selector{NORMAL=0, EXTENDED = 1, EXTENDED_ALL =2 };
74 enum View { DIRS = 1, FILES = 2, TREE = 4, ICON = 8 }; 74 enum View { DIRS = 1, FILES = 2, TREE = 4, ICON = 8 };
75 OFileSelector(QWidget *wid, int mode, int selector, const QString &dirName, const QString &fileName = QString::null, const QStringList &mimetypes = QStringList() ); 75
76 OFileSelector(QWidget *wid, int mode, int selector,
77 const QString &dirName,
78 const QString &fileName = QString::null,
79 const QStringList &mimetypes = QStringList() );
80
81
82 OFileSelector(const QString &mimeFilter, QWidget *parent,
83 const char *name, bool newVisible = TRUE,
84 bool closeVisible = FALSE ) { };
85
76 ~OFileSelector() {}; 86 ~OFileSelector() {};
87
88 // currently only for the FILESELECTOR Mode
89 void setNewVisible( bool /*b*/ ) { };
90 void setCloseVisible(bool /*b*/ ) { };
91
92 // end file selector mode
93 // deprecated
94 void reread() { reparse(); };
95 // make sure not to leak please
96 const DocLnk *selected();
97 // end deprecated
98
77 bool isToolbarVisible() const { return m_shTool; }; 99 bool isToolbarVisible() const { return m_shTool; };
@@ -182,2 +204,5 @@ class OFileSelector : public QWidget {
182 QLabel *m_fnLabel; 204 QLabel *m_fnLabel;
205
206 bool m_shClose : 1;
207 bool m_shNew : 1;
183 bool m_shTool:1; 208 bool m_shTool:1;
@@ -218,4 +243,4 @@ private slots:
218 virtual void slotContextMenu( QListViewItem *item); 243 virtual void slotContextMenu( QListViewItem *item);
219 // listview crap see above 244 // listview above
220 // PopupMenu crap 245 // popup below
221 virtual void slotChangedDir(); 246 virtual void slotChangedDir();