summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofilelistview.h
Unidiff
Diffstat (limited to 'libopie/ofileselector/ofilelistview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofileselector/ofilelistview.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/libopie/ofileselector/ofilelistview.h b/libopie/ofileselector/ofilelistview.h
index a83d70d..c8cdfd1 100644
--- a/libopie/ofileselector/ofilelistview.h
+++ b/libopie/ofileselector/ofilelistview.h
@@ -2,6 +2,7 @@
2#define OPIE_FILE_LIST_VIEW_H 2#define OPIE_FILE_LIST_VIEW_H
3 3
4#include <qlistview.h> 4#include <qlistview.h>
5#include <qpixmap.h>
5 6
6#include "ofileview.h" 7#include "ofileview.h"
7 8
@@ -12,23 +13,30 @@ public:
12 ~OFileListView(); 13 ~OFileListView();
13 14
14 void clear(); 15 void clear();
15 void addFile( const QString& mine, 16 void addFile( const QPixmap&,
17 const QString& mine,
16 QFileInfo* info, 18 QFileInfo* info,
17 bool isSymlink = FALSE ); 19 bool isSymlink = FALSE );
18 20
19 void addFile( const QString& mime, 21 void addFile( const QPixmap&,
22 const QString& mime,
20 const QString& dir, 23 const QString& dir,
21 const QString& file, 24 const QString& file,
22 bool = false ); 25 bool = false );
23 26
24 void addDir( const QString& mime, 27 void addDir( const QPixmap&,
28 const QString& mime,
25 QFileInfo* info, bool = FALSE ); 29 QFileInfo* info, bool = FALSE );
26 void addDir( const QString& mime, const QString& dir, 30
31 void addDir( const QPixmap&,
32 const QString& mime, const QString& dir,
27 const QString& file, bool = FALSE ); 33 const QString& file, bool = FALSE );
28 34
29 void addSymlink( const QString& mime, 35 void addSymlink( const QPixmap&,
36 const QString& mime,
30 QFileInfo* info, bool = FALSE ); 37 QFileInfo* info, bool = FALSE );
31 void addSymlink( const QString& mine, const QString& path, 38 void addSymlink( const QPixmap&,
39 const QString& mine, const QString& path,
32 const QString& file, bool isSymlink = FALSE ); 40 const QString& file, bool isSymlink = FALSE );
33 void cd( const QString& path ); 41 void cd( const QString& path );
34 QWidget* widget(); 42 QWidget* widget();