author | mickeyl <mickeyl> | 2004-03-01 17:36:09 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2004-03-01 17:36:09 (UTC) |
commit | 5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee (patch) (side-by-side diff) | |
tree | 3a1149a6afa188b9c51b86357edd0981d9c97f4c /libslcompat/slfileselector.cpp | |
parent | 796de538b7b7bc7c3e2af3e8dd081000c21569ac (diff) | |
download | opie-5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee.zip opie-5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee.tar.gz opie-5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee.tar.bz2 |
some header files and glue to compile japanese apps
pretty much work in progress - maybe someone wants to finish
Diffstat (limited to 'libslcompat/slfileselector.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libslcompat/slfileselector.cpp | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/libslcompat/slfileselector.cpp b/libslcompat/slfileselector.cpp new file mode 100644 index 0000000..3189b51 --- a/dev/null +++ b/libslcompat/slfileselector.cpp @@ -0,0 +1,86 @@ +#include "slfileselector.h" + +SlFileIconView::SlFileIconView( QWidget* parent, const char* name ) + :QIconView( parent, name ) +{ +} + +SlFileIconView::~SlFileIconView() +{ +} + +/*================================================================*/ + +SlFileListView::SlFileListView( QWidget* parent, const char* name ) + :QListView( parent, name ) +{ +} + +SlFileListView::~SlFileListView() +{ +} + +/*================================================================*/ + +SlFileSelector::SlFileSelector( const QString &dirPath, const QString &mimefilter, QWidget *parent, const char *name ) + :OFileSelector( dirPath, parent, name ) +{ +} + +SlFileSelector::~SlFileSelector() +{ +} + +bool SlFileSelector::isTopDir() +{ + return false; +} + +void SlFileSelector::setSelected() +{ +} + +void SlFileSelector::setSelected(const QString&) +{ + int a; +} + +void SlFileSelector::createFileList() +{ + int a; +} + +void SlFileSelector::createFileList(QDir&) +{ + int a; +} + +const QFileInfo* SlFileSelector::selected() +{ + int a; +} + +void SlFileSelector::setCurrentFile(const QString&) +{ + int a; +} + +const QString SlFileSelector::currentDir() +{ + int a; +} + + +void SlFileSelector::focusInEvent(QFocusEvent*) +{ +} + +void SlFileSelector::show() +{ +} + +void SlFileSelector::keyPressEvent( QKeyEvent *e ) +{ +} + + |