const enum AlignmentFlags {
    AlignLeft, // Aligns horizontally with the left edge.
    AlignLeading, // TODO: Add description.
    AlignRight, // Aligns horizontally with the right edge.
    AlignTrailing, // TODO: Add description.
    AlignHCenter, // Aligns horizontally in the center.
    AlignJustify, // Justifies the text in the available space.
    AlignAbsolute, // TODO: Add description.
    AlignHorizontal_Mask, // TODO: Add description.
    AlignTop, // Aligns vertically with the top edge.
    AlignBottom, // Aligns vertically with the bottom edge.
    AlignVCenter, // Aligns vertically in the center.
    AlignVertical_Mask, // TODO: Add description.
    AlignCenter, // Aligns in the center in both dimensions.
    AlignAuto // Aligns horizontally according to the language (left for most).
}

const enum PixmapMode {
    Normal = 0,
    Disabled = 1,
    Active = 2,
    Selected = 3,
}

const enum PixmapState {
    On = 0,
    Off = 1,
}
