mirror of
https://github.com/wiiu-env/WiiUPluginLoaderBackend.git
synced 2024-11-06 04:55:07 +01:00
39 lines
1.2 KiB
C++
39 lines
1.2 KiB
C++
#pragma once
|
|
#include "WUPSConfigItem.h"
|
|
#include <string>
|
|
#include <wups/config.h>
|
|
|
|
namespace WUPSConfigAPIBackend {
|
|
class WUPSConfigItemV1 : public WUPSConfigItem {
|
|
public:
|
|
WUPSConfigItemV1(std::string_view configId, std::string_view _displayName, WUPSConfigAPIItemCallbacksV1 callbacks, void *context);
|
|
|
|
~WUPSConfigItemV1() override;
|
|
|
|
[[nodiscard]] std::string getCurrentValueDisplayImpl() const;
|
|
|
|
[[nodiscard]] std::string getCurrentValueDisplay() const override;
|
|
|
|
[[nodiscard]] std::string getCurrentValueSelectedDisplay() const override;
|
|
|
|
void onSelected(bool isSelected) const override;
|
|
|
|
void onButtonPressed(WUPSConfigButtons buttons) const override;
|
|
|
|
[[nodiscard]] bool isMovementAllowed() const override;
|
|
|
|
void restoreDefault() const override;
|
|
|
|
void onCloseCallback() override;
|
|
|
|
void setConfigId(const std::string &configId) override;
|
|
|
|
const std::string &getConfigId() override;
|
|
|
|
private:
|
|
void *mContext;
|
|
std::string mConfigId;
|
|
std::string mDefaultValue;
|
|
WUPSConfigAPIItemCallbacksV1 mCallbacks{};
|
|
};
|
|
} // namespace WUPSConfigAPIBackend
|