From 98e5e57a845541acddf519a81957261f58008cb9 Mon Sep 17 00:00:00 2001 From: Tannin Date: Sun, 15 Sep 2013 15:20:00 +0200 Subject: - added support for mod page plugins - re-introduced the integrated browser - added a plugin to download from the tes alliance page - the download list now contains the file description - nexus interface now stores cookies persistently to reduce number of required log-ins --- src/mainwindow.h | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/mainwindow.h') diff --git a/src/mainwindow.h b/src/mainwindow.h index 152c0a27..6ce64cb2 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -39,6 +39,7 @@ along with Mod Organizer. If not, see . #include #include #include +#include #include "settings.h" #include "downloadmanager.h" #include "installationmanager.h" @@ -48,6 +49,7 @@ along with Mod Organizer. If not, see . #include "pluginlistsortproxy.h" #include "tutorialcontrol.h" #include "savegameinfowidgetgamebryo.h" +#include "browserdialog.h" #include #include @@ -130,6 +132,7 @@ public slots: void directory_refreshed(); void toolPluginInvoke(); + void modPagePluginInvoke(); signals: @@ -165,6 +168,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); void updateToolBar(); @@ -241,6 +245,8 @@ private: static void setupNetworkProxy(bool activate); void activateProxy(bool activate); + void setBrowserGeometry(const QByteArray &geometry); + private: static const unsigned int PROBLEM_PLUGINSNOTLOADED = 1; @@ -313,8 +319,11 @@ private: MOBase::IGameInfo *m_GameInfo; std::vector m_DiagnosisPlugins; + std::vector m_ModPages; std::vector m_UnloadedPlugins; + BrowserDialog m_IntegratedBrowser; + private slots: void showMessage(const QString &message); @@ -459,6 +468,8 @@ private slots: void toolBar_customContextMenuRequested(const QPoint &point); void removeFromToolbar(); + void requestDownload(const QUrl &url, QNetworkReply *reply); + private slots: // ui slots // actions void on_actionAdd_Profile_triggered(); -- cgit v1.3.1