NasNas
An intuitive and beginner friendly 2D game framework for C++
Widget.hpp
1 // Created by Modar Nasser on 10/10/2021.
2 
3 #pragma once
4 
5 #include <functional>
6 #include <unordered_map>
7 
8 #include <SFML/Graphics/Drawable.hpp>
9 #include <SFML/Graphics/Rect.hpp>
10 #include <SFML/Graphics/Transformable.hpp>
11 #include <SFML/System/Vector2.hpp>
12 
13 #include <NasNas/ui/Callbacks.hpp>
14 
15 namespace ns::ui {
16  class GuiRoot;
17  class Container;
18 
19  class Widget : public sf::Drawable, public sf::Transformable {
20  friend Container;
21  public:
22  Widget();
23 
24  virtual auto getGlobalBounds() const -> sf::FloatRect = 0;
25  virtual auto contains(const sf::Vector2f& pos) const -> bool = 0;
26 
27  void setCallback(CursorCallback cb_type, std::function<void(Widget*)> cb);
28 
29  auto isHovered() const -> bool { return m_hovered; }
30  auto isFocused() const -> bool { return m_focused; }
31 
32  protected:
33  GuiRoot* m_root = nullptr;
34  Container* m_parent = nullptr;
35 
36  void call(CursorCallback cb_type);
37  virtual void call(ClickCallback cb_type);
38 
39  enum Type {
40  None = 0,
41  Parent = 1 << 0,
42  Styled = 1 << 1,
43  Clickable = 1 << 2
44  };
45  unsigned m_type = Type::None;
46 
47  private:
48  std::unordered_map<CursorCallback, std::function<void(Widget*)>> m_default_callbacks;
49  std::unordered_map<CursorCallback, std::function<void(Widget*)>> m_user_callbacks;
50 
51  bool m_hovered = false;
52  bool m_focused = false;
53  };
54 
55  template <typename T>
56  class StyledWidget : virtual public Widget {
57  public:
58  using Style = T;
59 
60  StyledWidget() : Widget() {
61  m_type |= Type::Styled;
62  }
63  T style;
64  };
65 
66  class ClickableWidget : public virtual Widget {
67  public:
69 
70  using Widget::setCallback;
71  void setCallback(ClickCallback cb_type, std::function<void(Widget*)> cb);
72 
73  private:
74  using Widget::call;
75  void call(ClickCallback cb_type) override;
76  std::unordered_map<ClickCallback, std::function<void(Widget*)>> m_user_callbacks;
77 
78  };
79 
80 }