File indexing completed on 2024-12-22 04:17:43
0001 /*************************************************************************** 0002 * * 0003 * copyright : (C) 2010 The University of Toronto * 0004 * netterfield@astro.utoronto.ca * 0005 * * 0006 * This program is free software; you can redistribute it and/or modify * 0007 * it under the terms of the GNU General Public License as published by * 0008 * the Free Software Foundation; either version 2 of the License, or * 0009 * (at your option) any later version. * 0010 * * 0011 ***************************************************************************/ 0012 0013 #ifndef PLUGINMENUITEMACTION_H 0014 #define PLUGINMENUITEMACTION_H 0015 0016 #include <QAction> 0017 0018 namespace Kst { 0019 0020 class PluginMenuItemAction : public QAction 0021 { 0022 Q_OBJECT 0023 public: 0024 explicit PluginMenuItemAction(const QString &text, QWidget *parent = 0); 0025 0026 Q_SIGNALS: 0027 void triggered(QString &name); 0028 0029 public Q_SLOTS: 0030 void triggerWithName(); 0031 0032 private: 0033 QString m_text; 0034 }; 0035 0036 } 0037 0038 #endif // PLUGINMENUITEMACTION_H 0039 0040 // vim: ts=2 sw=2 et