BoxContainer.xml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="BoxContainer" inherits="Container" version="3.3">
  3. <brief_description>
  4. Base class for box containers.
  5. </brief_description>
  6. <description>
  7. Arranges child controls vertically or horizontally, and rearranges the controls automatically when their minimum size changes.
  8. </description>
  9. <tutorials>
  10. </tutorials>
  11. <methods>
  12. <method name="add_spacer">
  13. <return type="void">
  14. </return>
  15. <argument index="0" name="begin" type="bool">
  16. </argument>
  17. <description>
  18. Adds a control to the box as a spacer. If [code]true[/code], [code]begin[/code] will insert the spacer control in front of other children.
  19. </description>
  20. </method>
  21. </methods>
  22. <members>
  23. <member name="alignment" type="int" setter="set_alignment" getter="get_alignment" enum="BoxContainer.AlignMode" default="0">
  24. The alignment of the container's children (must be one of [constant ALIGN_BEGIN], [constant ALIGN_CENTER] or [constant ALIGN_END]).
  25. </member>
  26. <member name="mouse_filter" type="int" setter="set_mouse_filter" getter="get_mouse_filter" override="true" enum="Control.MouseFilter" default="1" />
  27. </members>
  28. <constants>
  29. <constant name="ALIGN_BEGIN" value="0" enum="AlignMode">
  30. Aligns children with the beginning of the container.
  31. </constant>
  32. <constant name="ALIGN_CENTER" value="1" enum="AlignMode">
  33. Aligns children with the center of the container.
  34. </constant>
  35. <constant name="ALIGN_END" value="2" enum="AlignMode">
  36. Aligns children with the end of the container.
  37. </constant>
  38. </constants>
  39. </class>