diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-07-04 22:38:03 +0000 |
commit | dadc34655c3ab961b0b0b94a10eaaba710f0b5e8 (patch) | |
tree | 99e72842fe687baea16376a147619b6048d7e441 /kmymoney2/plugins/kmymoneyplugin.cpp | |
download | kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.tar.gz kmymoney-dadc34655c3ab961b0b0b94a10eaaba710f0b5e8.zip |
Added kmymoney
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kmymoney@1239792 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kmymoney2/plugins/kmymoneyplugin.cpp')
-rw-r--r-- | kmymoney2/plugins/kmymoneyplugin.cpp | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/kmymoney2/plugins/kmymoneyplugin.cpp b/kmymoney2/plugins/kmymoneyplugin.cpp new file mode 100644 index 0000000..ddca52a --- /dev/null +++ b/kmymoney2/plugins/kmymoneyplugin.cpp @@ -0,0 +1,91 @@ +/*************************************************************************** + kmymoneyplugin.cpp + ------------------- + begin : Wed Jan 5 2005 + copyright : (C) 2005 Thomas Baumgart + email : ipwizard@users.sourceforge.net + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +// ---------------------------------------------------------------------------- +// QT Includes + +// ---------------------------------------------------------------------------- +// KDE Includes + +#include <kinstance.h> +#include <kaboutdata.h> +#include <kaction.h> + +// ---------------------------------------------------------------------------- +// Project Includes + + +#include "kmymoneyplugin.h" + +KMyMoneyPlugin::Plugin::Plugin(QObject* o, const char* name) : + QObject(o, name) +{ +} + +KMyMoneyPlugin::Plugin::~Plugin() +{ +} + +KAction* KMyMoneyPlugin::Plugin::action(const QString& actionName) const +{ + static KShortcut shortcut(""); + static KAction dummyAction(QString("Dummy"), QString(), shortcut, static_cast<const QObject*>(this), 0, static_cast<KActionCollection*>(0), ""); + + KAction* p = actionCollection()->action(actionName.latin1()); + if(p) + return p; + + qWarning("Action with name '%s' not found!", actionName.latin1()); + return &dummyAction; +} + +KToggleAction* KMyMoneyPlugin::Plugin::toggleAction(const QString& actionName) const +{ + static KShortcut shortcut(""); + static KToggleAction dummyAction(QString("Dummy"), QString(), shortcut, static_cast<const QObject*>(this), 0, static_cast<KActionCollection*>(0), ""); + + KAction* q = actionCollection()->action(actionName.latin1()); + + if(q) { + KToggleAction* p = dynamic_cast<KToggleAction*>(q); + if(!p) { + qWarning("Action '%s' is not of type KToggleAction", actionName.latin1()); + p = &dummyAction; + } + return p; + } + + qWarning("Action with name '%s' not found!", actionName.latin1()); + return &dummyAction; +} + +KMyMoneyPlugin::ViewInterface* KMyMoneyPlugin::Plugin::viewInterface() const +{ + return static_cast<ViewInterface*>( parent()->child( 0, "KMyMoneyPlugin::ViewInterface" ) ); +} + +KMyMoneyPlugin::StatementInterface* KMyMoneyPlugin::Plugin::statementInterface() const +{ + return static_cast<StatementInterface*>( parent()->child( 0, "KMyMoneyPlugin::StatementInterface" ) ); +} + +KMyMoneyPlugin::ImportInterface* KMyMoneyPlugin::Plugin::importInterface() const +{ + return static_cast<ImportInterface*>( parent()->child( 0, "KMyMoneyPlugin::ImportInterface" ) ); +} + +#include "kmymoneyplugin.moc" |