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.
35 lines
768 B
35 lines
768 B
|
|
#include <tqlabel.h>
|
|
#include <kinstance.h>
|
|
#include <tqstring.h>
|
|
#include <tqwidget.h>
|
|
|
|
#include "%{APPNAMELC}.h"
|
|
#include "%{APPNAMELC}.moc"
|
|
|
|
%{APPNAME}::%{APPNAME}(TDEInstance *inst,TQObject *parent,TQWidget *widgetParent, TQString &desktopName, const char* name):
|
|
KonqSidebarPlugin(inst,parent,widgetParent,desktopName,name)
|
|
{
|
|
widget=new TQLabel("Init Value",widgetParent);
|
|
}
|
|
|
|
|
|
%{APPNAME}::~%{APPNAME}()
|
|
{
|
|
}
|
|
|
|
void %{APPNAME}::handleURL(const KURL &url)
|
|
{
|
|
widget->setText(TQString("%{APPNAME}")+"::"+url.url());
|
|
}
|
|
|
|
|
|
|
|
extern "C"
|
|
{
|
|
void* create_konqsidebar_%{APPNAME}(TDEInstance *instance,TQObject *par,TQWidget *widp,TQString &desktopname,const char *name)
|
|
{
|
|
return new %{APPNAME}(instance,par,widp,desktopname,name);
|
|
}
|
|
};
|