diff options
Diffstat (limited to 'ksquirrel/sq_externaltool.h')
-rw-r--r-- | ksquirrel/sq_externaltool.h | 103 |
1 files changed, 103 insertions, 0 deletions
diff --git a/ksquirrel/sq_externaltool.h b/ksquirrel/sq_externaltool.h new file mode 100644 index 0000000..3b1bc0a --- /dev/null +++ b/ksquirrel/sq_externaltool.h @@ -0,0 +1,103 @@ +/*************************************************************************** + sq_externaltool.h - description + ------------------- + begin : ??? ??? 12 2004 + copyright : (C) 2004 by Baryshev Dmitry + email : [email protected] + ***************************************************************************/ + +/*************************************************************************** + * * + * 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. * + * * + ***************************************************************************/ + +#ifndef SQ_EXTERNALTOOL_H +#define SQ_EXTERNALTOOL_H + +#include <qstring.h> +#include <qobject.h> +#include <qvaluevector.h> + +#include <kfileitem.h> + +class SQ_PopupMenu; + +struct Tool +{ + Tool(); + Tool(const QString &, const QString &, const QString &); + + QString name, command; + QString icon; +}; + +/* + * Class which manages external tools. It store all available external tools + * in memory, and create popup menu where external tools been inserted. + */ + +class SQ_ExternalTool : public QObject, public QValueVector<Tool> +{ + Q_OBJECT + + public: + SQ_ExternalTool(QObject *parent = 0); + ~SQ_ExternalTool(); + + /* + * Get pixmap, name or command of external tool. + */ + QString toolPixmap(const int i); + QString toolName(const int i); + QString toolCommand(const int i); + + void setItems(const KFileItemList &); + + /* + * Recreate current popop menu. + */ + SQ_PopupMenu* newPopupMenu(); + + /* + * Get current popup menu. + */ + SQ_PopupMenu* constPopupMenu() const; + + /* + * Write tools to config file as QStringLists + */ + void writeEntries(); + + static SQ_ExternalTool* instance() { return m_instance; } + + private slots: + + /* + * Invoked, when user executed popup menu with external tools. + * This slot will do some useful stuff. + */ + void slotAboutToShowMenu(); + void slotActivateTool(int); + + private: + /* + * Popup menu with all tools. + */ + SQ_PopupMenu *menu; + + KFileItemList items; + + static SQ_ExternalTool *m_instance; +}; + +inline +void SQ_ExternalTool::setItems(const KFileItemList &itms) +{ + items = itms; +} + +#endif |