diff options
Diffstat (limited to 'kview/kviewviewer/test')
-rw-r--r-- | kview/kviewviewer/test/Makefile.am | 9 | ||||
-rw-r--r-- | kview/kviewviewer/test/main.cpp | 51 | ||||
-rw-r--r-- | kview/kviewviewer/test/test.cpp | 43 | ||||
-rw-r--r-- | kview/kviewviewer/test/test.h | 25 |
4 files changed, 128 insertions, 0 deletions
diff --git a/kview/kviewviewer/test/Makefile.am b/kview/kviewviewer/test/Makefile.am new file mode 100644 index 00000000..605435cc --- /dev/null +++ b/kview/kviewviewer/test/Makefile.am @@ -0,0 +1,9 @@ +INCLUDES = -I$(top_srcdir)/kview $(all_includes) + +METASOURCES = AUTO + +check_PROGRAMS = test + +test_SOURCES = main.cpp test.cpp +test_LDFLAGS = $(KDE_RPATH) $(all_libraries) +test_LDADD = $(LIB_KPARTS) diff --git a/kview/kviewviewer/test/main.cpp b/kview/kviewviewer/test/main.cpp new file mode 100644 index 00000000..95910126 --- /dev/null +++ b/kview/kviewviewer/test/main.cpp @@ -0,0 +1,51 @@ +#include "test.h" +#include <kapplication.h> +#include <kaboutdata.h> +#include <kcmdlineargs.h> +#include <klocale.h> + +static const char description[] = + I18N_NOOP("KView Viewer Part Test"); + +static const char version[] = "v0.1"; + +static KCmdLineOptions options[] = +{ + { "+[URL]", I18N_NOOP( "Image to open" ), 0 }, + KCmdLineLastOption +}; + +int main(int argc, char **argv) +{ + KAboutData about("kviewviewertest", I18N_NOOP("KView Viewer Test"), version, description, KAboutData::License_GPL, "(C) 2001 Matthias Kretz", 0, 0, "kretz@kde.org"); + about.addAuthor( "Matthias Kretz", 0, "kretz@kde.org" ); + KCmdLineArgs::init(argc, argv, &about); + KCmdLineArgs::addCmdLineOptions( options ); + KApplication app; + + if (app.isRestored()) + RESTORE(Test) + else + { + KCmdLineArgs *args = KCmdLineArgs::parsedArgs(); + + if ( args->count() == 0 ) + { + Test *widget = new Test; + widget->show(); + } + else + { + int i = 0; + for (; i < args->count(); i++ ) + { + Test *widget = new Test; + widget->show(); + widget->load( args->url( i ) ); + } + } + args->clear(); + } + + return app.exec(); +} diff --git a/kview/kviewviewer/test/test.cpp b/kview/kviewviewer/test/test.cpp new file mode 100644 index 00000000..d4659e6c --- /dev/null +++ b/kview/kviewviewer/test/test.cpp @@ -0,0 +1,43 @@ +/* + * Copyright (c) 2001 Matthias Kretz <kretz@kde.org> + */ + +#include "test.h" +#include <kimageviewer/viewer.h> + +#include <kurl.h> +#include <klibloader.h> +#include <kmessagebox.h> +#include <kparts/componentfactory.h> +#include <kapplication.h> + +#include <qimage.h> + +Test::Test() + : KParts::MainWindow( 0, "KView Viewer Test" ), + m_part( 0 ) +{ + m_part = KParts::ComponentFactory::createPartInstanceFromQuery<KParts::ReadWritePart>( + "image/jpeg", "Name == 'Image Viewer Part'", this, 0, this ); + if( m_part ) + { + setCentralWidget( m_part->widget() ); + createGUI( m_part ); + } + else + { + KMessageBox::error(this, "Could not find our Part!"); + kapp->quit(); + } +} + +Test::~Test() +{ +} + +void Test::load(const KURL& url) +{ + m_part->openURL( url ); +} + +#include "test.moc" diff --git a/kview/kviewviewer/test/test.h b/kview/kviewviewer/test/test.h new file mode 100644 index 00000000..82777090 --- /dev/null +++ b/kview/kviewviewer/test/test.h @@ -0,0 +1,25 @@ +#ifndef KIMAGEVIEWERTEST_H +#define KIMAGEVIEWERTEST_H + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + +#include <kapplication.h> +#include <kparts/mainwindow.h> + +namespace KParts { class ReadWritePart; } + +class Test : public KParts::MainWindow +{ + Q_OBJECT +public: + Test(); + virtual ~Test(); + void load(const KURL& url); + +private: + KParts::ReadWritePart * m_part; +}; + +#endif // KIMAGEVIEWERTEST_H |