From 114a878c64ce6f8223cfd22d76a20eb16d177e5e 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/kdevelop@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- languages/cpp/app_templates/kicker/applet.cpp | 72 +++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 languages/cpp/app_templates/kicker/applet.cpp (limited to 'languages/cpp/app_templates/kicker/applet.cpp') diff --git a/languages/cpp/app_templates/kicker/applet.cpp b/languages/cpp/app_templates/kicker/applet.cpp new file mode 100644 index 00000000..5345ac0c --- /dev/null +++ b/languages/cpp/app_templates/kicker/applet.cpp @@ -0,0 +1,72 @@ +%{CPP_TEMPLATE} + +#include +#include +#include +#include +#include +#include + +#include "%{APPNAMELC}.h" + + +%{APPNAME}::%{APPNAME}(const QString& configFile, Type type, int actions, QWidget *parent, const char *name) + : KPanelApplet(configFile, type, actions, parent, name) +{ + // Get the current application configuration handle + ksConfig = config(); + QLCDNumber *w = new QLCDNumber(this); + w->display(42); + + mainView = w; + mainView->show(); +} + + +%{APPNAME}::~%{APPNAME}() +{ +} + + +void %{APPNAME}::about() +{ + KMessageBox::information(0, i18n("This is an about box")); +} + + +void %{APPNAME}::help() +{ + KMessageBox::information(0, i18n("This is a help box")); +} + + +void %{APPNAME}::preferences() +{ + KMessageBox::information(0, i18n("This is a preferences box")); +} + +int %{APPNAME}::widthForHeight(int height) const +{ + return width(); +} + +int %{APPNAME}::heightForWidth(int width) const +{ + return height(); +} + +void %{APPNAME}::resizeEvent(QResizeEvent *e) +{ +} + + +extern "C" +{ + KPanelApplet* init( QWidget *parent, const QString& configFile) + { + KGlobal::locale()->insertCatalogue("%{APPNAMELC}"); + return new %{APPNAME}(configFile, KPanelApplet::Normal, + KPanelApplet::About | KPanelApplet::Help | KPanelApplet::Preferences, + parent, "%{APPNAMELC}"); + } +} -- cgit v1.2.3