diff options
| author | 2011-03-25 00:19:16 +0000 | |
|---|---|---|
| committer | 2011-03-25 00:19:16 +0000 | |
| commit | 98d25196380f7a0369e47fbe833e6fb1b3746552 (patch) | |
| tree | 25c91e77d44b71ebf0744c81153096dc3a9ced53 /src/modules/addon/AddonManagementDialog.h | |
| parent | Add addons web interface, Addonize newsticker etc... (diff) | |
| download | KVIrc-98d25196380f7a0369e47fbe833e6fb1b3746552.tar.gz KVIrc-98d25196380f7a0369e47fbe833e6fb1b3746552.tar.bz2 KVIrc-98d25196380f7a0369e47fbe833e6fb1b3746552.zip | |
Add a web interface for the addons
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5692 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/addon/AddonManagementDialog.h')
| -rw-r--r-- | src/modules/addon/AddonManagementDialog.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/modules/addon/AddonManagementDialog.h b/src/modules/addon/AddonManagementDialog.h index 392ad6257..e21635085 100644 --- a/src/modules/addon/AddonManagementDialog.h +++ b/src/modules/addon/AddonManagementDialog.h @@ -34,6 +34,7 @@ #include <QListWidget> #include <QItemDelegate> #include <QToolButton> +#include <QPointer> class QPixmap; class KviKvsScriptAddon; @@ -53,6 +54,10 @@ public: KviKvsScriptAddon * addon(){ return m_pAddon; }; }; +#ifdef COMPILE_WEBKIT_SUPPORT + class WebAddonInterfaceDialog; +#endif //COMPILE_WEBKIT_SUPPORT + class AddonManagementDialog : public QWidget { @@ -68,6 +73,9 @@ protected: QToolButton * m_pHelpButton; QToolButton * m_pPackButton; QToolButton * m_pUninstallButton; +#ifdef COMPILE_WEBKIT_SUPPORT + WebAddonInterfaceDialog * m_pWebInterfaceDialog; +#endif //COMPILE_WEBKIT_SUPPORT public: static AddonManagementDialog * instance(){ return m_pInstance; }; static void display(bool bTopLevel); |
