aboutsummaryrefslogtreecommitdiff
path: root/mwe/events/src/uiObject.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-11-03 13:34:27 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-11-03 13:34:27 +0100
commit2585dc3cab48ccad0cfa0c63354662d656c86c46 (patch)
tree579851837f35842e5ed682c912c470d68df79183 /mwe/events/src/uiObject.cpp
parent5deb950619dff9dde8b49520b23e3ce4001afbee (diff)
`make format`
Diffstat (limited to 'mwe/events/src/uiObject.cpp')
-rw-r--r--mwe/events/src/uiObject.cpp30
1 files changed, 13 insertions, 17 deletions
diff --git a/mwe/events/src/uiObject.cpp b/mwe/events/src/uiObject.cpp
index 31ff486..8405469 100644
--- a/mwe/events/src/uiObject.cpp
+++ b/mwe/events/src/uiObject.cpp
@@ -1,28 +1,24 @@
#include "uiObject.h"
// Constructor for UIObject
-UIObject::UIObject(int width, int height)
- : width(width), height(height){
-
- }
+UIObject::UIObject(int width, int height) : width(width), height(height) {}
// Constructor for Button
-Button::Button(int width, int height)
- : UIObject(width, height) {
-}
+Button::Button(int width, int height) : UIObject(width, height) {}
Text::Text(int width, int height)
- : UIObject(width, height), size(12), font(nullptr), color{255, 255, 255} { // Default size and color
- alignment.horizontal = Alignment::Horizontal::CENTER;
- alignment.vertical = Alignment::Vertical::MIDDLE;
- alignment.mode = Alignment::PositioningMode::RELATIVE;
+ : UIObject(width, height), size(12), font(nullptr),
+ color{255, 255, 255} { // Default size and color
+ alignment.horizontal = Alignment::Horizontal::CENTER;
+ alignment.vertical = Alignment::Vertical::MIDDLE;
+ alignment.mode = Alignment::PositioningMode::RELATIVE;
}
TextInput::TextInput(int width, int height)
- : UIObject(width, height), textBuffer(""), placeholder(""),
- isActive(false), textColor{255, 255, 255}, backgroundColor{0, 0, 0}, maxLength(100), font(nullptr) {
- alignment.horizontal = Alignment::Horizontal::LEFT;
- alignment.vertical = Alignment::Vertical::TOP;
- alignment.mode = Alignment::PositioningMode::RELATIVE;
+ : UIObject(width, height), textBuffer(""), placeholder(""), isActive(false),
+ textColor{255, 255, 255}, backgroundColor{0, 0, 0}, maxLength(100),
+ font(nullptr) {
+ alignment.horizontal = Alignment::Horizontal::LEFT;
+ alignment.vertical = Alignment::Vertical::TOP;
+ alignment.mode = Alignment::PositioningMode::RELATIVE;
}
-