NcEngine
UIElement.h
1#pragma once
2
3#include "UIPosition.h"
5
6namespace nc::ui
7{
9 {
10 public:
11 UIElement(bool startOpen);
12 virtual ~UIElement() = default;
13
14 void ToggleOpen();
15 virtual void Draw() = 0;
16
17 bool isOpen;
18 };
19
21 {
22 public:
23 UIFixedElement(bool startOpen, UIPosition position, Vector2 dimensions);
24 ~UIFixedElement() noexcept;
25
26 virtual void OnResize(Vector2 dimensions);
27
28 protected:
29 void PositionElement();
30
31 private:
32 UIPosition m_position;
33 Vector2 m_screenDimensions;
34 Vector2 m_elementDimensions;
35 Vector2 m_topLeftPosition;
36
37 void CalculateTopLeftPosition();
38 };
39} //end namespace nc::ui
Definition: UIElement.h:9
Definition: UIElement.h:21
Definition: IOnResizeReceiver.h:8
A two component vector.
Definition: Vector.h:13