Skip to main content

Meta_Stack

Module: Metanodes / Definitions

A Stack is a container that provides layout controls for its child objects.

#include <meta_gui.hpp>

Public Types

TypeName
enumDirection { DIRECTION_LEFTTORIGHT, DIRECTION_RIGHTTOLEFT, DIRECTION_TOPTOBOTTOM, DIRECTION_BOTTOMTOTOP }
Values for Idx_Direction.
enumHAlign { HALIGN_LEFT, HALIGN_CENTRE, HALIGN_RIGHT, HALIGN_FULLWIDTH }
Values for Idx_HAlign.
enumIDX { Idx_Enabled, Idx_Position, Idx_SizingMode, Idx_Size, Idx_Direction, Idx_HAlign, Idx_VAlign, Idx_Gap, Idx_ContentZPosition, Idx_Style, Idx_Popup, Idx_PopupOwner, Idx_DisableAnimation }
Property index.
enumVAlign { VALIGN_TOP, VALIGN_MIDDLE, VALIGN_BOTTOM, VALIGN_FULLHEIGHT }
Values for Idx_VAlign.

Public Types Documentation

enum Direction

EnumeratorValueDescription
DIRECTION_LEFTTORIGHTLay out children from left to right (Symbols - C: "LeftToRight", Lua: __Stack_LeftToRight)
DIRECTION_RIGHTTOLEFTLay out children from right to left (Symbols - C: "RightToLeft", Lua: __Stack_RightToLeft)
DIRECTION_TOPTOBOTTOMLay out children from top to bottom (Symbols - C: "TopToBottom", Lua: __Stack_TopToBottom)
DIRECTION_BOTTOMTOTOPLay out children from bottom to top (Symbols - C: "BottomToTop", Lua: __Stack_BottomToTop)

Values for Idx_Direction.

enum HAlign

EnumeratorValueDescription
HALIGN_LEFTAlign left (Symbols - C: "AlignLeft", Lua: __Stack_AlignLeft)
HALIGN_CENTREAlign centred (Symbols - C: "AlignCentre", Lua: __Stack_AlignCentre)
HALIGN_RIGHTAlign right (Symbols - C: "AlignRight", Lua: __Stack_AlignRight)
HALIGN_FULLWIDTHAlign / stretch children to fit the fill width (Symbols - C: "AlignFullWidth", Lua: __Stack_AlignFullWidth)

Values for Idx_HAlign.

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - When enabled, draws itself and its children
Idx_Positionvec3f - Position of the panel relative to its parent
Idx_SizingModeSizingMode (int) - How the panel sizes itself in respect to its contents
Idx_Sizevec2f - Size of the panel, when SizingMode==Fixed
Idx_DirectionDirection (int) - The direction to stack the child objects
Idx_HAlignHAlign (int) - How to align the objects horizontally
Idx_VAlignVAlign (int) - How to align the objects vertically
Idx_Gapfloat - Specifies the gap size between objects (padding)
Idx_ContentZPositionfloat - Specifies the Z position (depth) of the contents relative to the stack background
Idx_Stylelink - A Panel style (Meta_ColouredPanelStyle, Meta_GradientPanelStyle, Meta_TexturedPanelStyle)
Idx_Popupbool - Specifies that this stack is a popup
Idx_PopupOwnerlink - Internal - Specifies the user that owns this stack (if it is a popup)
Idx_DisableAnimationbool - When enabled, layout changes are applied instantly instead of animating to their new position

Property index.

enum VAlign

EnumeratorValueDescription
VALIGN_TOPAlign top (Symbols - C: "AlignTop", Lua: __Stack_AlignTop)
VALIGN_MIDDLEAlign middle (Symbols - C: "AlignMiddle", Lua: __Stack_AlignMiddle)
VALIGN_BOTTOMAlign bottom (Symbols - C: "AlignBottom", Lua: __Stack_AlignBottom)
VALIGN_FULLHEIGHTAlign / stretch children to fit the full height (Symbols - C: "AlignFullHeight", Lua: __Stack_AlignFullHeight)

Values for Idx_VAlign.