summaryrefslogtreecommitdiff
path: root/libopie/ofileselector/ofilelistview.h
authorzecke <zecke>2003-05-25 17:51:52 (UTC)
committer zecke <zecke>2003-05-25 17:51:52 (UTC)
commit7e1dce1560e45ef7fad91a8da2d0d96c1b166df9 (patch) (side-by-side diff)
treec896c8ab6129414fa80df712a3a5794fa933716f /libopie/ofileselector/ofilelistview.h
parentf1773ad179cb68b8e7777f3d43667ed5ebf1968d (diff)
downloadopie-7e1dce1560e45ef7fad91a8da2d0d96c1b166df9.zip
opie-7e1dce1560e45ef7fad91a8da2d0d96c1b166df9.tar.gz
opie-7e1dce1560e45ef7fad91a8da2d0d96c1b166df9.tar.bz2
die here too
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