cmodlistview_moc.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * cmodlistview_moc.h, part of VCMI engine
  3. *
  4. * Authors: listed in file AUTHORS in main folder
  5. *
  6. * License: GNU General Public License v2.0 or later
  7. * Full text of license available in license.txt file, in main folder
  8. *
  9. */
  10. #pragma once
  11. #include "../StdInc.h"
  12. #include "../../lib/CConfigHandler.h"
  13. namespace Ui
  14. {
  15. class CModListView;
  16. }
  17. class ModStateController;
  18. class CModList;
  19. class ModStateItemModel;
  20. class ModStateModel;
  21. class CModFilterModel;
  22. class CDownloadManager;
  23. class QTableWidgetItem;
  24. class ModState;
  25. class CModListView : public QWidget
  26. {
  27. Q_OBJECT
  28. std::shared_ptr<ModStateModel> modStateModel;
  29. std::unique_ptr<ModStateController> manager;
  30. ModStateItemModel * modModel;
  31. CModFilterModel * filterModel;
  32. CDownloadManager * dlManager;
  33. JsonNode accumulatedRepositoryData;
  34. QString activatingPreset;
  35. QStringList enqueuedModDownloads;
  36. void setupModModel();
  37. void setupFilterModel();
  38. void setupModsView();
  39. void checkManagerErrors();
  40. /// replace mod ID's with proper human-readable mod names
  41. QStringList getModNames(QString queryingMod, QStringList input);
  42. /// returns list of mods that are needed for install of this mod (potentially including this mod itself)
  43. QStringList getModsToInstall(QString mod);
  44. // find mods unknown to mod list (not present in repo and not installed)
  45. QStringList findUnavailableMods(QStringList candidates);
  46. void installMods(QStringList archives);
  47. void installMaps(QStringList maps);
  48. QString genChangelogText(const ModState & mod);
  49. QString genModInfoText(const ModState & mod);
  50. void changeEvent(QEvent *event) override;
  51. public:
  52. explicit CModListView(QWidget * parent = nullptr);
  53. ~CModListView();
  54. void loadScreenshots();
  55. void loadRepositories();
  56. void reload();
  57. void disableModInfo();
  58. void selectMod(const QModelIndex & index);
  59. // First Launch View interface
  60. /// install mod by name
  61. void doInstallMod(const QString & modName);
  62. /// update mod by name
  63. void doUpdateMod(const QString & modName);
  64. /// returns true if mod is available in repository and can be installed
  65. bool isModAvailable(const QString & modName);
  66. /// finds translation mod for specified languages. Returns empty string on error
  67. QString getTranslationModName(const QString & language);
  68. /// finds all already imported Heroes Chronicles mods (if any)
  69. QStringList getInstalledChronicles();
  70. /// finds all mods that can be updated
  71. QStringList getUpdateableMods();
  72. void createNewPreset(const QString & presetName);
  73. void deletePreset(const QString & presetName);
  74. void activatePreset(const QString & presetName);
  75. void renamePreset(const QString & oldPresetName, const QString & newPresetName);
  76. QStringList getAllPresets() const;
  77. QString getActivePreset() const;
  78. JsonNode exportCurrentPreset() const;
  79. void importPreset(const JsonNode & data);
  80. /// returns true if mod is currently enabled
  81. bool isModEnabled(const QString & modName);
  82. /// returns true if mod is currently installed
  83. bool isModInstalled(const QString & modName);
  84. void downloadMod(const ModState & mod);
  85. void downloadFile(QString file, QUrl url, QString description, qint64 sizeBytes = 0);
  86. void installFiles(QStringList mods);
  87. public slots:
  88. void enableModByName(QString modName);
  89. void disableModByName(QString modName);
  90. private slots:
  91. void dataChanged(const QModelIndex & topleft, const QModelIndex & bottomRight);
  92. void modSelected(const QModelIndex & current, const QModelIndex & previous);
  93. void downloadProgress(qint64 current, qint64 max);
  94. void extractionProgress(qint64 current, qint64 max);
  95. void downloadFinished(QStringList savedFiles, QStringList failedFiles, QStringList errors);
  96. void modelReset();
  97. void hideProgressBar();
  98. void on_lineEdit_textChanged(const QString & arg1);
  99. void on_comboBox_currentIndexChanged(int index);
  100. void on_enableButton_clicked();
  101. void on_disableButton_clicked();
  102. void on_updateButton_clicked();
  103. void on_uninstallButton_clicked();
  104. void on_installButton_clicked();
  105. void on_pushButton_clicked();
  106. void on_refreshButton_clicked();
  107. void on_allModsView_activated(const QModelIndex & index);
  108. void on_tabWidget_currentChanged(int index);
  109. void on_screenshotsList_clicked(const QModelIndex & index);
  110. void on_allModsView_doubleClicked(const QModelIndex &index);
  111. private:
  112. Ui::CModListView * ui;
  113. };