GridContainer.xml 1.5 KB

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <class name="GridContainer" inherits="Container" version="3.2">
  3. <brief_description>
  4. Grid container used to arrange elements in a grid like layout.
  5. </brief_description>
  6. <description>
  7. Grid container will arrange its children in a grid like structure, the grid columns are specified using the [member columns] property and the number of rows will be equal to the number of children in the container divided by the number of columns. For example, if the container has 5 children, and 2 columns, there will be 3 rows in the container.
  8. Notice that grid layout will preserve the columns and rows for every size of the container, and that empty columns will be expanded automatically.
  9. </description>
  10. <tutorials>
  11. </tutorials>
  12. <methods>
  13. </methods>
  14. <members>
  15. <member name="columns" type="int" setter="set_columns" getter="get_columns" default="1">
  16. The number of columns in the [GridContainer]. If modified, [GridContainer] reorders its children to accommodate the new layout.
  17. </member>
  18. <member name="mouse_filter" type="int" setter="set_mouse_filter" getter="get_mouse_filter" override="true" enum="Control.MouseFilter" default="1" />
  19. </members>
  20. <constants>
  21. </constants>
  22. <theme_items>
  23. <theme_item name="hseparation" type="int" default="4">
  24. The horizontal separation of children nodes.
  25. </theme_item>
  26. <theme_item name="vseparation" type="int" default="4">
  27. The vertical separation of children nodes.
  28. </theme_item>
  29. </theme_items>
  30. </class>