aboutsummaryrefslogtreecommitdiff
path: root/include/gui/DropdownButton.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/DropdownButton.hpp')
-rw-r--r--include/gui/DropdownButton.hpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/gui/DropdownButton.hpp b/include/gui/DropdownButton.hpp
index 40d2810..cbbcda2 100644
--- a/include/gui/DropdownButton.hpp
+++ b/include/gui/DropdownButton.hpp
@@ -10,7 +10,7 @@
namespace gsr {
class DropdownButton : public Widget {
public:
- DropdownButton(mgl::Font *title_font, mgl::Font *description_font, const char *title, const char *description_activated, const char *description_deactivated, mgl::Texture *icon_texture, mgl::vec2f size);
+ DropdownButton(mgl::Font *title_font, mgl::Font *description_font, const char *title, const char *description, mgl::Texture *icon_texture, mgl::vec2f size);
DropdownButton(const DropdownButton&) = delete;
DropdownButton& operator=(const DropdownButton&) = delete;
@@ -21,6 +21,7 @@ namespace gsr {
void set_item_label(const std::string &id, const std::string &new_label);
void set_item_icon(const std::string &id, mgl::Texture *texture);
+ void set_description(std::string description_text);
void set_activated(bool activated);
mgl::vec2f get_size() override;
@@ -50,8 +51,6 @@ namespace gsr {
mgl::Text description;
mgl::Sprite icon_sprite;
- std::string description_activated;
- std::string description_deactivated;
bool activated = false;
};
} \ No newline at end of file