00001 #include "slfileselector.h" 00002 00003 SlFileIconView::SlFileIconView( QWidget* parent, const char* name ) 00004 :QIconView( parent, name ) 00005 { 00006 } 00007 00008 SlFileIconView::~SlFileIconView() 00009 { 00010 } 00011 00012 /*================================================================*/ 00013 00014 SlFileListView::SlFileListView( QWidget* parent, const char* name ) 00015 :QListView( parent, name ) 00016 { 00017 } 00018 00019 SlFileListView::~SlFileListView() 00020 { 00021 } 00022 00023 /*================================================================*/ 00024 00025 SlFileSelector::SlFileSelector( const QString &dirPath, const QString &mimefilter, QWidget *parent, const char *name ) 00026 :OFileSelector( dirPath, parent, name ) 00027 { 00028 } 00029 00030 SlFileSelector::~SlFileSelector() 00031 { 00032 } 00033 00034 bool SlFileSelector::isTopDir() 00035 { 00036 return false; 00037 } 00038 00039 void SlFileSelector::setSelected() 00040 { 00041 } 00042 00043 void SlFileSelector::setSelected(const QString&) 00044 { 00045 int a; 00046 } 00047 00048 void SlFileSelector::createFileList() 00049 { 00050 int a; 00051 } 00052 00053 void SlFileSelector::createFileList(QDir&) 00054 { 00055 int a; 00056 } 00057 00058 const QFileInfo* SlFileSelector::selected() 00059 { 00060 int a; 00061 } 00062 00063 void SlFileSelector::setCurrentFile(const QString&) 00064 { 00065 int a; 00066 } 00067 00068 const QString SlFileSelector::currentDir() 00069 { 00070 int a; 00071 } 00072 00073 00074 void SlFileSelector::focusInEvent(QFocusEvent*) 00075 { 00076 } 00077 00078 void SlFileSelector::show() 00079 { 00080 } 00081 00082 void SlFileSelector::keyPressEvent( QKeyEvent *e ) 00083 { 00084 } 00085 00086
1.4.2