From 5f6f3f7d9356e24ac5284b7ccc10a75451ea94ee Mon Sep 17 00:00:00 2001 From: mickeyl Date: Mon, 01 Mar 2004 17:36:09 +0000 Subject: some header files and glue to compile japanese apps pretty much work in progress - maybe someone wants to finish --- (limited to 'libslcompat/slfileselector.cpp') 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 ) +{ +} + + -- cgit v0.9.0.2