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 --- .../cpp/app_templates/opiemenu/simpleimpl.cpp | 78 ++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 languages/cpp/app_templates/opiemenu/simpleimpl.cpp (limited to 'languages/cpp/app_templates/opiemenu/simpleimpl.cpp') diff --git a/languages/cpp/app_templates/opiemenu/simpleimpl.cpp b/languages/cpp/app_templates/opiemenu/simpleimpl.cpp new file mode 100644 index 00000000..95245661 --- /dev/null +++ b/languages/cpp/app_templates/opiemenu/simpleimpl.cpp @@ -0,0 +1,78 @@ +#include "%{APPNAMELC}.h" + +#include +#include + +/* QT */ +#include +#include +#include + + +%{APPNAME}::%{APPNAME}() + :QObject( 0, "%{APPNAME}" ) +{ +} + +%{APPNAME}::~%{APPNAME} ( ) +{} + +int %{APPNAME}::position() const +{ + return 3; +} + +QString %{APPNAME}::name() const +{ + return tr( "MenuApplet Example Name" ); +} + +QString %{APPNAME}::text() const +{ + return tr( "Click the white rabbit" ); +} + + +QIconSet %{APPNAME}::icon() const +{ + QPixmap pix; + QImage img = Resource::loadImage( "Tux" ); + if ( !img.isNull() ) + pix.convertFromImage( img.smoothScale( AppLnk::smallIconSize(), AppLnk::smallIconSize() ) ); + return pix; +} + +QPopupMenu* %{APPNAME}::popup(QWidget*) const +{ + /* no subdir */ + return 0; +} + +void %{APPNAME}::activated() +{ + QMessageBox::information(0,tr("No white rabbit found"), + tr("No white rabbit was seen near Opie." + "Only the beautiful OpieZilla is available" + "for your pleassure")); +} + + +QRESULT %{APPNAME}::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) +{ + *iface = 0; + if ( uuid == IID_QUnknown ) + *iface = this; + else if ( uuid == IID_MenuApplet ) + *iface = this; + else + return QS_FALSE; + + if ( *iface ) + (*iface)->addRef(); + return QS_OK; +} + +Q_EXPORT_INTERFACE() +{ + Q_CREATE_INSTANCE( %{APPNAME} ) +} -- cgit v1.2.3