3 Copyright (C) 2011 Adrian Jaekel <aj at elane2k dot com>
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation, either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "ui_log_form.h"
25 #include "../../extension_system/iplugin.h"
28 #include "nel/misc/app_context.h"
31 #include <QDockWidget>
35 class CLibraryContext
;
38 namespace ExtensionSystem
50 class CLogSettingsPage
;
52 class CLogPlugin
: public QDockWidget
, public ExtensionSystem::IPlugin
55 Q_INTERFACES(ExtensionSystem::IPlugin
)
57 CLogPlugin(QWidget
*parent
= 0);
60 bool initialize(ExtensionSystem::IPluginManager
*pluginManager
, QString
*errorString
);
61 void extensionsInitialized();
63 void setNelContext(NLMISC::INelContext
*nelContext
);
64 NLQT::CQtDisplayer
* displayer() { return m_displayer
; }
67 QString
version() const;
68 QString
vendor() const;
69 QString
description() const;
70 QStringList
dependencies() const;
72 void addAutoReleasedObject(QObject
*obj
);
77 NLMISC::CLibraryContext
*m_libContext
;
80 ExtensionSystem::IPluginManager
*m_plugMan
;
81 QList
<QObject
*> m_autoReleaseObjects
;
82 CLogSettingsPage
*m_logSettingsPage
;
86 NLQT::CQtDisplayer
*m_displayer
;
94 #endif // LOG_PLUGIN_H