Skip to content

Commit

Permalink
add openSettingsPopup overload that returns the created popup
Browse files Browse the repository at this point in the history
  • Loading branch information
HJfod committed Sep 21, 2024
1 parent 6270e1c commit dc8d271
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 4 deletions.
10 changes: 10 additions & 0 deletions loader/include/Geode/ui/GeodeUI.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,16 @@ namespace geode {
* Open the settings popup for a mod (if it has any settings)
*/
GEODE_DLL void openSettingsPopup(Mod* mod);
/**
* Open the settings popup for a mod (if it has any settings)
* @param mod Mod the open the popup for
* @param disableGeodeTheme If false, the popup follows the user's chosen
* theme options. If true, the popup is always in the GD theme (not Geode's
* dark purple colors)
* @returns A pointer to the created Popup, or null if the mod has no
* settings
*/
GEODE_DLL Popup<Mod*>* openSettingsPopup(Mod* mod, bool disableGeodeTheme);
/**
* Create a default logo sprite
*/
Expand Down
8 changes: 7 additions & 1 deletion loader/src/ui/GeodeUI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,15 @@ void geode::openChangelogPopup(Mod* mod) {
}

void geode::openSettingsPopup(Mod* mod) {
openSettingsPopup(mod, true);
}
Popup<Mod*>* geode::openSettingsPopup(Mod* mod, bool disableGeodeTheme) {
if (mod->hasSettings()) {
ModSettingsPopup::create(mod)->show();
auto popup = ModSettingsPopup::create(mod, disableGeodeTheme);
popup->show();
return popup;
}
return nullptr;
}

class ModLogoSprite : public CCNode {
Expand Down
4 changes: 2 additions & 2 deletions loader/src/ui/mods/settings/ModSettingsPopup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -345,9 +345,9 @@ void ModSettingsPopup::onClose(CCObject* sender) {
GeodePopup::onClose(sender);
}

ModSettingsPopup* ModSettingsPopup::create(Mod* mod) {
ModSettingsPopup* ModSettingsPopup::create(Mod* mod, bool forceDisableTheme) {
auto ret = new ModSettingsPopup();
if (ret->init(440, 280, mod)) {
if (ret->init(440, 280, mod, GeodePopupStyle::Default, forceDisableTheme)) {
ret->autorelease();
return ret;
}
Expand Down
2 changes: 1 addition & 1 deletion loader/src/ui/mods/settings/ModSettingsPopup.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ class ModSettingsPopup : public GeodePopup<Mod*> {
void onClearSearch(CCObject*);

public:
static ModSettingsPopup* create(Mod* mod);
static ModSettingsPopup* create(Mod* mod, bool forceDisableTheme = false);
};

0 comments on commit dc8d271

Please sign in to comment.