Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/frontend/StarModsMenu.hpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-06-20 14:33:09 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-06-20 14:33:09 +1000
commit6352e8e3196f78388b6c771073f9e03eaa612673 (patch)
treee23772f79a7fbc41bc9108951e9e136857484bf4 /source/frontend/StarModsMenu.hpp
parent6741a057e5639280d85d0f88ba26f000baa58f61 (diff)
everything everywhere
all at once
Diffstat (limited to 'source/frontend/StarModsMenu.hpp')
-rw-r--r--source/frontend/StarModsMenu.hpp39
1 files changed, 39 insertions, 0 deletions
diff --git a/source/frontend/StarModsMenu.hpp b/source/frontend/StarModsMenu.hpp
new file mode 100644
index 0000000..a9e8739
--- /dev/null
+++ b/source/frontend/StarModsMenu.hpp
@@ -0,0 +1,39 @@
+#ifndef STAR_MODS_MENU_HPP
+#define STAR_MODS_MENU_HPP
+
+#include "StarPane.hpp"
+
+namespace Star {
+
+STAR_CLASS(LabelWidget);
+STAR_CLASS(ButtonWidget);
+STAR_CLASS(ListWidget);
+
+class ModsMenu : public Pane {
+public:
+ ModsMenu();
+
+ void update() override;
+
+private:
+ static String bestModName(JsonObject const& metadata, String const& sourcePath);
+
+ void openLink();
+ void openWorkshop();
+
+ StringList m_assetsSources;
+
+ ListWidgetPtr m_modList;
+ LabelWidgetPtr m_modName;
+ LabelWidgetPtr m_modAuthor;
+ LabelWidgetPtr m_modVersion;
+ LabelWidgetPtr m_modPath;
+ LabelWidgetPtr m_modDescription;
+
+ ButtonWidgetPtr m_linkButton;
+ ButtonWidgetPtr m_copyLinkButton;
+};
+
+}
+
+#endif