geode/loader/include/Geode/ui/GeodeUI.hpp

46 lines
1.3 KiB
C++
Raw Normal View History

#pragma once
#include "../loader/Mod.hpp"
namespace geode {
/**
* Open the Geode mods list
*/
GEODE_DLL void openModsList();
/**
* Open the info popup for a mod
*/
GEODE_DLL void openInfoPopup(Mod* mod);
/**
* Open the issue report popup for a mod
*/
GEODE_DLL void openIssueReportPopup(Mod* mod);
2024-02-10 14:11:59 -05:00
/**
* Open the support popup for a mod
*/
GEODE_DLL void openSupportPopup(Mod* mod);
GEODE_DLL void openSupportPopup(ModMetadata const& metadata);
/**
* Open the store page for a mod (if it exists)
*/
GEODE_DLL void openIndexPopup(Mod* mod);
/**
* Open the settings popup for a mod (if it has any settings)
2022-10-30 14:59:20 -04:00
*/
GEODE_DLL void openSettingsPopup(Mod* mod);
/**
* Create a default logo sprite
*/
2024-02-21 19:04:38 -05:00
GEODE_DLL cocos2d::CCNode* createDefaultLogo();
/**
* Create a logo sprite for a mod
*/
2024-02-21 19:04:38 -05:00
GEODE_DLL cocos2d::CCNode* createModLogo(Mod* mod);
/**
2024-02-26 17:55:33 -05:00
* Create a logo sprite for a mod downloaded from the Geode servers. The
* logo is initially a loading circle, with the actual sprite downloaded
* asynchronously
*/
GEODE_DLL cocos2d::CCNode* createServerModLogo(std::string const& id);
}