diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-04 08:31:05 +0100 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-11-04 08:31:05 +0100 | 
| commit | 63d50eea4e389e73e26f41452829dd48e6190c70 (patch) | |
| tree | 82a8ef7a28fe7e069dbe9830adc28fd49dd85846 /mwe/events/src/uiObject.cpp | |
| parent | 06f65659fc6ffde7cabd2135040cbfbf089e5a24 (diff) | |
| parent | 2585dc3cab48ccad0cfa0c63354662d656c86c46 (diff) | |
Merge branch 'master' of github.com:lonkaars/crepe
Diffstat (limited to 'mwe/events/src/uiObject.cpp')
| -rw-r--r-- | mwe/events/src/uiObject.cpp | 24 | 
1 files changed, 24 insertions, 0 deletions
| diff --git a/mwe/events/src/uiObject.cpp b/mwe/events/src/uiObject.cpp new file mode 100644 index 0000000..8405469 --- /dev/null +++ b/mwe/events/src/uiObject.cpp @@ -0,0 +1,24 @@ +#include "uiObject.h" + +// Constructor for UIObject +UIObject::UIObject(int width, int height) : width(width), height(height) {} + +// Constructor for Button +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; +} + +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; +} |