51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
#include <cstdarg>
|
|
#include <cstdint>
|
|
#include <cstdlib>
|
|
#include <new>
|
|
|
|
/// Constants shared by multiple CSS Box Alignment properties
|
|
///
|
|
/// These constants match Gecko's `NS_STYLE_ALIGN_*` constants.
|
|
struct AlignFlags {
|
|
uint8_t bits;
|
|
|
|
explicit operator bool() const {
|
|
return !!bits;
|
|
}
|
|
AlignFlags operator~() const {
|
|
return {static_cast<decltype(bits)>(~bits)};
|
|
}
|
|
AlignFlags operator|(const AlignFlags& other) const {
|
|
return {static_cast<decltype(bits)>(this->bits | other.bits)};
|
|
}
|
|
AlignFlags& operator|=(const AlignFlags& other) {
|
|
*this = (*this | other);
|
|
return *this;
|
|
}
|
|
AlignFlags operator&(const AlignFlags& other) const {
|
|
return {static_cast<decltype(bits)>(this->bits & other.bits)};
|
|
}
|
|
AlignFlags& operator&=(const AlignFlags& other) {
|
|
*this = (*this & other);
|
|
return *this;
|
|
}
|
|
AlignFlags operator^(const AlignFlags& other) const {
|
|
return {static_cast<decltype(bits)>(this->bits ^ other.bits)};
|
|
}
|
|
AlignFlags& operator^=(const AlignFlags& other) {
|
|
*this = (*this ^ other);
|
|
return *this;
|
|
}
|
|
};
|
|
static const AlignFlags AlignFlags_AUTO = AlignFlags{ /* .bits = */ 0 };
|
|
static const AlignFlags AlignFlags_NORMAL = AlignFlags{ /* .bits = */ 1 };
|
|
static const AlignFlags AlignFlags_START = AlignFlags{ /* .bits = */ (1 << 1) };
|
|
static const AlignFlags AlignFlags_END = AlignFlags{ /* .bits = */ (1 << 2) };
|
|
static const AlignFlags AlignFlags_FLEX_START = AlignFlags{ /* .bits = */ (1 << 3) };
|
|
|
|
extern "C" {
|
|
|
|
void root(AlignFlags flags);
|
|
|
|
} // extern "C"
|