From 47d455dd55be855e4cc691c32f687f723d9247ee Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kview/kviewviewer/test/Makefile.am | 9 +++++++ kview/kviewviewer/test/main.cpp | 51 ++++++++++++++++++++++++++++++++++++++ kview/kviewviewer/test/test.cpp | 43 ++++++++++++++++++++++++++++++++ kview/kviewviewer/test/test.h | 25 +++++++++++++++++++ 4 files changed, 128 insertions(+) create mode 100644 kview/kviewviewer/test/Makefile.am create mode 100644 kview/kviewviewer/test/main.cpp create mode 100644 kview/kviewviewer/test/test.cpp create mode 100644 kview/kviewviewer/test/test.h (limited to 'kview/kviewviewer/test') 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 +#include +#include +#include + +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 + */ + +#include "test.h" +#include + +#include +#include +#include +#include +#include + +#include + +Test::Test() + : KParts::MainWindow( 0, "KView Viewer Test" ), + m_part( 0 ) +{ + m_part = KParts::ComponentFactory::createPartInstanceFromQuery( + "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 +#endif + +#include +#include + +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 -- cgit v1.2.3