.. include:: headings.inc .. _FlexGridSizer: ========================================================================================================================================== |phoenix_title| **FlexGridSizer** ========================================================================================================================================== A flex grid sizer is a sizer which lays out its children in a two-dimensional table with all table fields in one row having the same height and all fields in one column having the same width, but all rows or all columns are not necessarily the same height or width as in the :ref:`GridSizer`. Since wxWidgets 2.5.0, :ref:`FlexGridSizer` can also size items equally in one direction but unequally ("flexibly") in the other. If the sizer is only flexible in one direction (this can be changed using :meth:`FlexGridSizer.SetFlexibleDirection` ), it needs to be decided how the sizer should grow in the other ("non-flexible") direction in order to fill the available space. The :meth:`FlexGridSizer.SetNonFlexibleGrowMode` method serves this purpose. .. seealso:: :ref:`Sizer`, :ref:`Sizers Overview ` | |class_hierarchy| Inheritance Diagram ===================================== Inheritance diagram for class **FlexGridSizer** .. raw:: html

Inheritance diagram of FlexGridSizer

| |sub_classes| Known Subclasses ============================== :ref:`GridBagSizer` | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~FlexGridSizer.__init__` :ref:`FlexGridSizer` constructors. :meth:`~FlexGridSizer.AddGrowableCol` Specifies that column `idx` (starting from zero) should be grown if there is extra space available to the sizer. :meth:`~FlexGridSizer.AddGrowableRow` Specifies that row idx (starting from zero) should be grown if there is extra space available to the sizer. :meth:`~FlexGridSizer.CalcMin` This method is abstract and has to be overwritten by any derived class. :meth:`~FlexGridSizer.GetFlexibleDirection` Returns a :ref:`Orientation` value that specifies whether the sizer flexibly resizes its columns, rows, or both (default). :meth:`~FlexGridSizer.GetNonFlexibleGrowMode` Returns the value that specifies how the sizer grows in the "non-flexible" direction if there is one. :meth:`~FlexGridSizer.IsColGrowable` Returns ``True`` if column `idx` is growable. :meth:`~FlexGridSizer.IsRowGrowable` Returns ``True`` if row `idx` is growable. :meth:`~FlexGridSizer.RecalcSizes` This method is abstract and has to be overwritten by any derived class. :meth:`~FlexGridSizer.RemoveGrowableCol` Specifies that the `idx` column index is no longer growable. :meth:`~FlexGridSizer.RemoveGrowableRow` Specifies that the `idx` row index is no longer growable. :meth:`~FlexGridSizer.SetFlexibleDirection` Specifies whether the sizer should flexibly resize its columns, rows, or both. :meth:`~FlexGridSizer.SetNonFlexibleGrowMode` Specifies how the sizer should grow in the non-flexible direction if there is one (so :meth:`SetFlexibleDirection` must have been called previously). ================================================================================ ================================================================================ | |property_summary| Properties Summary ===================================== ================================================================================ ================================================================================ :attr:`~FlexGridSizer.FlexibleDirection` See :meth:`~FlexGridSizer.GetFlexibleDirection` and :meth:`~FlexGridSizer.SetFlexibleDirection` :attr:`~FlexGridSizer.NonFlexibleGrowMode` See :meth:`~FlexGridSizer.GetNonFlexibleGrowMode` and :meth:`~FlexGridSizer.SetNonFlexibleGrowMode` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: FlexGridSizer(GridSizer) A flex grid sizer is a sizer which lays out its children in a two-dimensional table with all table fields in one row having the same height and all fields in one column having the same width, but all rows or all columns are not necessarily the same height or width as in the GridSizer. **Possible constructors**:: FlexGridSizer(cols, vgap, hgap) FlexGridSizer(cols, gap=Size(0,0)) FlexGridSizer(rows, cols, vgap, hgap) FlexGridSizer(rows, cols, gap) .. method:: __init__(self, *args, **kw) :ref:`FlexGridSizer` constructors. Please see :meth:`GridSizer.__init__` documentation. .. versionadded:: 2.9.1 (except for the four argument overload) |overload| **Overloaded Implementations**: **~~~** **__init__** `(self, cols, vgap, hgap)` :param `cols`: :type `cols`: int :param `vgap`: :type `vgap`: int :param `hgap`: :type `hgap`: int **~~~** **__init__** `(self, cols, gap=Size(0,0))` :param `cols`: :type `cols`: int :param `gap`: :type `gap`: Size **~~~** **__init__** `(self, rows, cols, vgap, hgap)` :param `rows`: :type `rows`: int :param `cols`: :type `cols`: int :param `vgap`: :type `vgap`: int :param `hgap`: :type `hgap`: int **~~~** **__init__** `(self, rows, cols, gap)` :param `rows`: :type `rows`: int :param `cols`: :type `cols`: int :param `gap`: :type `gap`: Size **~~~** .. method:: AddGrowableCol(self, idx, proportion=0) Specifies that column `idx` (starting from zero) should be grown if there is extra space available to the sizer. The `proportion` parameter has the same meaning as the stretch factor for the sizers (see :ref:`BoxSizer`) except that if all proportions are 0, then all columns are resized equally (instead of not being resized at all). Notice that the column must not be already growable, if you need to change the proportion you must call :meth:`RemoveGrowableCol` first and then make it growable (with a different proportion) again. You can use :meth:`IsColGrowable` to check whether a column is already growable. :param `idx`: :type `idx`: int :param `proportion`: :type `proportion`: int .. method:: AddGrowableRow(self, idx, proportion=0) Specifies that row idx (starting from zero) should be grown if there is extra space available to the sizer. This is identical to :meth:`AddGrowableCol` except that it works with rows and not columns. :param `idx`: :type `idx`: int :param `proportion`: :type `proportion`: int .. method:: CalcMin(self) This method is abstract and has to be overwritten by any derived class. Here, the sizer will do the actual calculation of its children's minimal sizes. :rtype: :ref:`Size` .. method:: GetFlexibleDirection(self) Returns a :ref:`Orientation` value that specifies whether the sizer flexibly resizes its columns, rows, or both (default). :rtype: `int` :returns: One of the following values: - ``VERTICAL``: Rows are flexibly sized. - ``HORIZONTAL``: Columns are flexibly sized. - ``BOTH``: Both rows and columns are flexibly sized (this is the default value). .. seealso:: :meth:`SetFlexibleDirection` .. method:: GetNonFlexibleGrowMode(self) Returns the value that specifies how the sizer grows in the "non-flexible" direction if there is one. The behaviour of the elements in the flexible direction (i.e. both rows and columns by default, or rows only if :meth:`GetFlexibleDirection` is ``VERTICAL`` or columns only if it is ``HORIZONTAL`` ) is always governed by their proportion as specified in the call to :meth:`AddGrowableRow` or :meth:`AddGrowableCol` . What happens in the other direction depends on the value of returned by this function as described below. :rtype: :ref:`FlexSizerGrowMode` :returns: One of the following values: - ``FLEX_GROWMODE_NONE``: Sizer doesn't grow its elements at all in the non-flexible direction. - ``FLEX_GROWMODE_SPECIFIED``: Sizer honors growable columns/rows set with :meth:`AddGrowableCol` and :meth:`AddGrowableRow` in the non-flexible direction as well. In this case equal sizing applies to minimum sizes of columns or rows (this is the default value). - ``FLEX_GROWMODE_ALL``: Sizer equally stretches all columns or rows in the non-flexible direction, independently of the proportions applied in the flexible direction. .. seealso:: :meth:`SetFlexibleDirection` , :meth:`SetNonFlexibleGrowMode` .. method:: IsColGrowable(self, idx) Returns ``True`` if column `idx` is growable. :param `idx`: :type `idx`: int :rtype: `bool` .. versionadded:: 2.9.0 .. method:: IsRowGrowable(self, idx) Returns ``True`` if row `idx` is growable. :param `idx`: :type `idx`: int :rtype: `bool` .. versionadded:: 2.9.0 .. method:: RecalcSizes(self) This method is abstract and has to be overwritten by any derived class. Here, the sizer will do the actual calculation of its children's positions and sizes. .. method:: RemoveGrowableCol(self, idx) Specifies that the `idx` column index is no longer growable. :param `idx`: :type `idx`: int .. method:: RemoveGrowableRow(self, idx) Specifies that the `idx` row index is no longer growable. :param `idx`: :type `idx`: int .. method:: SetFlexibleDirection(self, direction) Specifies whether the sizer should flexibly resize its columns, rows, or both. Argument `direction` can be ``VERTICAL`` , ``HORIZONTAL`` or ``BOTH`` (which is the default value). Any other value is ignored. See :meth:`GetFlexibleDirection` for the explanation of these values. Note that this method does not trigger relayout. :param `direction`: :type `direction`: int .. method:: SetNonFlexibleGrowMode(self, mode) Specifies how the sizer should grow in the non-flexible direction if there is one (so :meth:`SetFlexibleDirection` must have been called previously). Argument `mode` can be one of those documented in :meth:`GetNonFlexibleGrowMode` , please see there for their explanation. Note that this method does not trigger relayout. :param `mode`: :type `mode`: FlexSizerGrowMode .. attribute:: FlexibleDirection See :meth:`~FlexGridSizer.GetFlexibleDirection` and :meth:`~FlexGridSizer.SetFlexibleDirection` .. attribute:: NonFlexibleGrowMode See :meth:`~FlexGridSizer.GetNonFlexibleGrowMode` and :meth:`~FlexGridSizer.SetNonFlexibleGrowMode`