/* * 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"