Skip to main content

Meta_Panel

Module: Metanodes / Definitions

A Panel is a fixed size container for GUI items.

#include <meta_gui.hpp>

Public Types

TypeName
enumIDX { Idx_Enabled, Idx_Position, Idx_Size, Idx_Style, Idx_AnimLength }
Property index.
enumSizingMode { SizingMode_Fixed = 0, SizingMode_FitX = VTBIT(0), SizingMode_FitY = VTBIT(1), SizingMode_FitZ = VTBIT(2), SizingMode_FitXY = SizingMode_FitX

Public Types Documentation

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - When enabled, this panel and its children are drawn
Idx_Positionvec3f - Position of the panel relative to its parent
Idx_Sizevec2f - Size of the panel
Idx_Stylelink - A Panel style (Meta_ColouredPanelStyle, Meta_GradientPanelStyle, Meta_TexturedPanelStyle)
Idx_AnimLengthfloat - Overrides the number of seconds that position and size change animations take

Property index.

enum SizingMode

EnumeratorValueDescription
SizingMode_Fixed0Size is controlled by a Size property (Symbols - C: "SizingMode_Fixed", Lua: __Panel_SizingMode_Fixed)
SizingMode_FitXVTBIT(0)Horizontal size is modified to fit the contents (Symbols - C: "SizingMode_FitX", Lua: __Panel_SizingMode_FitX)
SizingMode_FitYVTBIT(1)Vertical size is modified to fit the contents (Symbols - C: "SizingMode_FitY", Lua: __Panel_SizingMode_FitY)
SizingMode_FitZVTBIT(2)Z size is modified to fit the contents (Symbols - C: "SizingMode_FitZ", Lua: __Panel_SizingMode_FitZ)
SizingMode_FitXYSizingMode_FitX | SizingMode_FitYFits both X and Y (Symbols - C: "SizingMode_FitXY", Lua: __Panel_SizingMode_FitXY)
SizingMode_FitXZSizingMode_FitX | SizingMode_FitZFits both X and Z (Symbols - C: "SizingMode_FitXZ", Lua: __Panel_SizingMode_FitXZ)
SizingMode_FitYZSizingMode_FitY | SizingMode_FitZFits both Y and Z (Symbols - C: "SizingMode_FitYZ", Lua: __Panel_SizingMode_FitYZ)
SizingMode_FitXYZSizingMode_FitX | SizingMode_FitY | SizingMode_FitZFits all axes (Symbols - C: "SizingMode_FitXYZ", Lua: __Panel_SizingMode_FitXYZ)

Values for Idx_SizingMode properties on most panel-like controls ([Meta_Stack, Meta_Button, etc)