gigawidgets 0.3.55
A wxWidgets-style UI library for the Arduino Giga Display Shield.
 
Loading...
Searching...
No Matches
size.hpp
Go to the documentation of this file.
1
2#pragma once
3
4#include <cinttypes>
5
6namespace ui {
7
12typedef uint16_t uisize_t;
13
17struct Size {
22};
23
24} // namespace ui
uint16_t uisize_t
A non-negative size for UI widgets.
Definition size.hpp:12
A struct that holds the number of pixels that a widget would take up on the screen.
Definition size.hpp:17
uisize_t y
The height of the widget.
Definition size.hpp:21
uisize_t x
The width of the widget.
Definition size.hpp:19