summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofilelistview.h
Side-by-side diff
Diffstat (limited to 'libopie/ofileselector/ofilelistview.h') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/ofileselector/ofilelistview.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/libopie/ofileselector/ofilelistview.h b/libopie/ofileselector/ofilelistview.h
deleted file mode 100644
index f2eac57..0000000
--- a/libopie/ofileselector/ofilelistview.h
+++ b/dev/null
@@ -1,69 +0,0 @@
-#ifndef OPIE_FILE_LIST_VIEW_H
-#define OPIE_FILE_LIST_VIEW_H
-
-#include <qlistview.h>
-#include <qpixmap.h>
-
-#include "ofileview.h"
-
-class OFileListView : public QListView, public OFileView {
- Q_OBJECT
-public:
- OFileListView( QWidget* parent, OFileSelector* );
- ~OFileListView();
-
- void clear();
- void addFile( const QPixmap&,
- const QString& mine,
- QFileInfo* info,
- const QString& extra = QString::null,
- bool isSymlink = FALSE );
-
- void addFile( const QPixmap&,
- const QString& mime,
- const QString& dir,
- const QString& file,
- const QString& extra = QString::null,
- bool = false );
-
- void addDir( const QPixmap&,
- const QString& mime,
- QFileInfo* info,
- const QString& extra = QString::null,
- bool = FALSE );
-
- void addDir( const QPixmap&,
- const QString& mime, const QString& dir,
- const QString& file,
- const QString& extra = QString::null,
- bool = FALSE );
-
- void addSymlink( const QPixmap&,
- const QString& mime,
- QFileInfo* info,
- const QString& extra = QString::null,
- bool = FALSE );
- void addSymlink( const QPixmap&,
- const QString& mine, const QString& path,
- const QString& file,
- const QString& extra = QString::null,
- bool isSymlink = FALSE );
- void cd( const QString& path );
- QWidget* widget();
- void sort();
-
- QString selectedName()const ;
- QStringList selectedNames()const;
-
- QString selectedPath()const;
- QStringList selectedPaths()const;
- QString selectedExtra()const;
- int fileCount();
-private slots:
- void slotSelectionChanged();
- void slotCurrentChanged(QListViewItem* );
- void slotClicked( int, QListViewItem*, const QPoint&, int );
- void slotRightButton(int, QListViewItem*, const QPoint&, int );
-};
-
-#endif