Button.hpp 942 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #pragma once
  2. #include "../RoundedRectangle.hpp"
  3. #include <string>
  4. #include <mglpp/graphics/Text.hpp>
  5. namespace mgl {
  6. class Event;
  7. class Font;
  8. class Window;
  9. class Shader;
  10. }
  11. namespace QuickMedia {
  12. enum ButtonEvent {
  13. BUTTON_EVENT_NONE = 0,
  14. BUTTON_EVENT_CLICKED = 1
  15. };
  16. class Button {
  17. public:
  18. Button(const std::string &label, mgl::Font *font, float width, mgl::Shader *rounded_rectangle_shader, float scale = 1.0f);
  19. ButtonEvent on_event(mgl::Event &event);
  20. void draw(mgl::Window &target);
  21. void set_background_color(mgl::Color color);
  22. void set_position(mgl::vec2f pos);
  23. mgl::vec2f get_position() const;
  24. float get_width() const;
  25. float get_height();
  26. private:
  27. mgl::Text label;
  28. RoundedRectangle background;
  29. mgl::Color background_color;
  30. float scale;
  31. bool clicked_inside = false;
  32. };
  33. }