cmodlistview_moc.h 4.0 KB

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