You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdegraphics/kview/kviewviewer/test/test.cpp

44 lines
799 B

/*
* 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 <tdeparts/componentfactory.h>
#include <tdeapplication.h>
#include <tqimage.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"