diff options
Diffstat (limited to 'src/mainwindow.h')
| -rw-r--r-- | src/mainwindow.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index c5b4a8d3..6d4b0230 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -39,6 +39,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include <imoinfo.h> #include <iplugintool.h> #include <iplugindiagnose.h> +#include <ipluginmodpage.h> #include "settings.h" #include "downloadmanager.h" #include "installationmanager.h" @@ -49,6 +50,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>. #include "tutorialcontrol.h" #include "savegameinfowidgetgamebryo.h" #include "previewgenerator.h" +#include "browserdialog.h" #include <guessedvalue.h> #include <directoryentry.h> #include <boost/signals2.hpp> @@ -166,6 +168,7 @@ public slots: void directory_refreshed(); void toolPluginInvoke(); + void modPagePluginInvoke(); signals: @@ -200,6 +203,7 @@ private: void actionToToolButton(QAction *&sourceAction); bool verifyPlugin(MOBase::IPlugin *plugin); void registerPluginTool(MOBase::IPluginTool *tool); + void registerModPage(MOBase::IPluginModPage *modPage); bool registerPlugin(QObject *pluginObj, const QString &fileName); void updateToolBar(); @@ -289,6 +293,7 @@ private: static void setupNetworkProxy(bool activate); void activateProxy(bool activate); void installTranslator(const QString &name); + void setBrowserGeometry(const QByteArray &geometry); bool createBackup(const QString &filePath, const QDateTime &time); QString queryRestore(const QString &filePath); @@ -369,6 +374,7 @@ private: MOBase::IGameInfo *m_GameInfo; std::vector<MOBase::IPluginDiagnose*> m_DiagnosisPlugins; + std::vector<MOBase::IPluginModPage*> m_ModPages; std::vector<QString> m_UnloadedPlugins; QFile m_PluginsCheck; @@ -378,7 +384,7 @@ private: QString m_CurrentLanguage; std::vector<QTranslator*> m_Translators; - PreviewGenerator m_PreviewGenerator; + BrowserDialog m_IntegratedBrowser; QFileSystemWatcher m_SavesWatcher; @@ -546,6 +552,8 @@ private slots: void about(); void delayedRemove(); + void requestDownload(const QUrl &url, QNetworkReply *reply); + private slots: // ui slots // actions void on_actionAdd_Profile_triggered(); |
