summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofileselectoritem.h
Unidiff
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
@@ -12,6 +12,7 @@ public:
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;
@@ -19,12 +20,16 @@ public:
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