#include <inttypes.h>
#include "roo_display/core/box.h"
Go to the source code of this file.
|
| static constexpr HAlign | roo_display::kLeft = HAlign(ANCHOR_MIN, ANCHOR_MIN, 0) |
| | Left-to-left with no shift.
|
| |
| static constexpr HAlign | roo_display::kCenter = HAlign(ANCHOR_MID, ANCHOR_MID, 0) |
| | Center-to-center with no shift.
|
| |
| static constexpr HAlign | roo_display::kRight = HAlign(ANCHOR_MAX, ANCHOR_MAX, 0) |
| | Right-to-right with no shift.
|
| |
| static constexpr HAlign | roo_display::kOrigin = HAlign(ANCHOR_ORIGIN, ANCHOR_ORIGIN, 0) |
| | Origin-to-origin with no shift.
|
| |
| static constexpr VAlign | roo_display::kTop = VAlign(ANCHOR_MIN, ANCHOR_MIN, 0) |
| | Top-to-top with no shift.
|
| |
| static constexpr VAlign | roo_display::kMiddle = VAlign(ANCHOR_MID, ANCHOR_MID, 0) |
| | Middle-to-middle with no shift.
|
| |
| static constexpr VAlign | roo_display::kBottom = VAlign(ANCHOR_MAX, ANCHOR_MAX, 0) |
| | Bottom-to-bottom with no shift.
|
| |
| static constexpr VAlign | roo_display::kBaseline = VAlign(ANCHOR_ORIGIN, ANCHOR_ORIGIN, 0) |
| | Baseline-to-baseline with no shift.
|
| |
| static constexpr Alignment | roo_display::kNoAlign = Alignment() |
| | Absolute alignment (no repositioning).
|
| |