cmodlistview_moc.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  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. QStringList enqueuedModDownloads;
  35. void setupModModel();
  36. void setupFilterModel();
  37. void setupModsView();
  38. void checkManagerErrors();
  39. /// replace mod ID's with proper human-readable mod names
  40. QStringList getModNames(QString queryingMod, QStringList input);
  41. /// returns list of mods that are needed for install of this mod (potentially including this mod itself)
  42. QStringList getModsToInstall(QString mod);
  43. // find mods unknown to mod list (not present in repo and not installed)
  44. QStringList findUnavailableMods(QStringList candidates);
  45. void installMods(QStringList archives);
  46. void installMaps(QStringList maps);
  47. QString genChangelogText(const ModState & mod);
  48. QString genModInfoText(const ModState & mod);
  49. void changeEvent(QEvent *event) override;
  50. public:
  51. explicit CModListView(QWidget * parent = nullptr);
  52. ~CModListView();
  53. void loadScreenshots();
  54. void loadRepositories();
  55. void reload();
  56. void disableModInfo();
  57. void selectMod(const QModelIndex & index);
  58. // First Launch View interface
  59. /// install mod by name
  60. void doInstallMod(const QString & modName);
  61. /// update mod by name
  62. void doUpdateMod(const QString & modName);
  63. /// returns true if mod is available in repository and can be installed
  64. bool isModAvailable(const QString & modName);
  65. /// finds translation mod for specified languages. Returns empty string on error
  66. QString getTranslationModName(const QString & language);
  67. /// finds all already imported Heroes Chronicles mods (if any)
  68. QStringList getInstalledChronicles();
  69. /// finds all mods that can be updated
  70. QStringList getUpdateableMods();
  71. void createNewPreset(const QString & presetName);
  72. void deletePreset(const QString & presetName);
  73. void activatePreset(const QString & presetName);
  74. void renamePreset(const QString & oldPresetName, const QString & newPresetName);
  75. QStringList getAllPresets() const;
  76. QString getActivePreset() const;
  77. JsonNode exportCurrentPreset() const;
  78. void importPreset(const JsonNode & data);
  79. /// returns true if mod is currently enabled
  80. bool isModEnabled(const QString & modName);
  81. /// returns true if mod is currently installed
  82. bool isModInstalled(const QString & modName);
  83. void downloadMod(const ModState & mod);
  84. void downloadFile(QString file, QUrl url, QString description, qint64 sizeBytes = 0);
  85. void installFiles(QStringList mods);
  86. public slots:
  87. void enableModByName(QString modName);
  88. void disableModByName(QString modName);
  89. private slots:
  90. void dataChanged(const QModelIndex & topleft, const QModelIndex & bottomRight);
  91. void modSelected(const QModelIndex & current, const QModelIndex & previous);
  92. void downloadProgress(qint64 current, qint64 max);
  93. void extractionProgress(qint64 current, qint64 max);
  94. void downloadFinished(QStringList savedFiles, QStringList failedFiles, QStringList errors);
  95. void modelReset();
  96. void hideProgressBar();
  97. void on_lineEdit_textChanged(const QString & arg1);
  98. void on_comboBox_currentIndexChanged(int index);
  99. void on_enableButton_clicked();
  100. void on_disableButton_clicked();
  101. void on_updateButton_clicked();
  102. void on_uninstallButton_clicked();
  103. void on_installButton_clicked();
  104. void on_pushButton_clicked();
  105. void on_refreshButton_clicked();
  106. void on_allModsView_activated(const QModelIndex & index);
  107. void on_tabWidget_currentChanged(int index);
  108. void on_screenshotsList_clicked(const QModelIndex & index);
  109. void on_allModsView_doubleClicked(const QModelIndex &index);
  110. private:
  111. Ui::CModListView * ui;
  112. };