summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofileselectoritem.h
authorzecke <zecke>2002-10-28 19:55:18 (UTC)
committer zecke <zecke>2002-10-28 19:55:18 (UTC)
commit3ba494eb02e72e1f9a732c46ec8085e843f01eca (patch) (unidiff)
treecdc0e7af342cd0e205ed4ae1c1da92ced3fd5774 /libopie/ofileselector/ofileselectoritem.h
parente9d8023028b7c996d8ff2a68b87dfde19fcfa892 (diff)
downloadopie-3ba494eb02e72e1f9a732c46ec8085e843f01eca.zip
opie-3ba494eb02e72e1f9a732c46ec8085e843f01eca.tar.gz
opie-3ba494eb02e72e1f9a732c46ec8085e843f01eca.tar.bz2
This will probably not compile.. i did not even try to compile it
on my machine I changed the data flow to be more extandable the Olister class is now playing a bigger role it's dependant on doing some assembly of the filepath and changedirs. It now has also to take care of the location bar
Diffstat (limited to 'libopie/ofileselector/ofileselectoritem.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofileselector/ofileselectoritem.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libopie/ofileselector/ofileselectoritem.h b/libopie/ofileselector/ofileselectoritem.h
index 21460c4..81966ae 100644
--- a/libopie/ofileselector/ofileselectoritem.h
+++ b/libopie/ofileselector/ofileselectoritem.h
@@ -9,22 +9,27 @@ public:
9 const QPixmap&, 9 const QPixmap&,
10 const QString& path, 10 const QString& path,
11 const QString& date, 11 const QString& date,
12 const QString& size, 12 const QString& size,
13 const QString& dir, 13 const QString& dir,
14 bool isLocked, 14 bool isLocked,
15 const QString& extra,
15 bool isDir = false); 16 bool isDir = false);
16 ~OFileSelectorItem(); 17 ~OFileSelectorItem();
17 bool isLocked() const; 18 bool isLocked() const;
18 QString directory()const; 19 QString directory()const;
19 bool isDir()const; 20 bool isDir()const;
20 QString path()const; 21 QString path()const;
21 QString key(int id, bool ); 22 QString key(int id, bool );
23 QString extra()const;
22 24
23private: 25private:
24 bool m_locked : 1; 26 bool m_locked : 1;
25 bool m_dir : 1; 27 bool m_dir : 1;
26 QString m_dirStr; 28 QString m_dirStr;
29 QString m_extra;
27 30
31 class Private;
32 Private* d;
28}; 33};
29 34
30#endif 35#endif