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.
44 lines
1.1 KiB
44 lines
1.1 KiB
/* This file is in the public domain */
|
|
|
|
// $Id$
|
|
|
|
#include "kviewtemplate.h"
|
|
|
|
#include <tqobjectlist.h>
|
|
|
|
#include <kaction.h>
|
|
/*#include <klocale.h>*/
|
|
#include <kgenericfactory.h>
|
|
#include <kdebug.h>
|
|
#include <kimageviewer/viewer.h>
|
|
|
|
typedef KGenericFactory<KViewTemplate> KViewTemplateFactory;
|
|
K_EXPORT_COMPONENT_FACTORY( kview_templateplugin, KViewTemplateFactory( "kviewtemplateplugin" ) )
|
|
|
|
KViewTemplate::KViewTemplate( TQObject* parent, const char* name, const TQStringList & )
|
|
: Plugin( parent, name )
|
|
{
|
|
TQObjectList * viewerList = parent->queryList( 0, "KImageViewer Part", false, false );
|
|
m_pViewer = static_cast<KImageViewer::Viewer *>( viewerList->getFirst() );
|
|
delete viewerList;
|
|
if( m_pViewer )
|
|
{
|
|
(void) new KAction( /*i18n(*/ "&Do Something" /*)*/, 0, 0,
|
|
this, TQT_SLOT( yourSlot() ),
|
|
actionCollection(), "plugin_template" );
|
|
}
|
|
else
|
|
kdWarning( 4630 ) << "no KImageViewer interface found - the template plugin won't work" << endl;
|
|
}
|
|
|
|
KViewTemplate::~KViewTemplate()
|
|
{
|
|
}
|
|
|
|
void KViewTemplate::yourSlot()
|
|
{
|
|
}
|
|
|
|
// vim:sw=4:ts=4:cindent
|
|
#include "kviewtemplate.moc"
|