Uses of Class
net.sf.jguiraffe.gui.layout.CellGroup
-
Packages that use CellGroup Package Description net.sf.jguiraffe.gui.builder.components.tags A package with tag handler classes for creating GUI components.net.sf.jguiraffe.gui.layout This package contains the platform-independent base classes and helper classes for the layout managers provided by the JGUIraffe library. -
-
Uses of CellGroup in net.sf.jguiraffe.gui.builder.components.tags
Methods in net.sf.jguiraffe.gui.builder.components.tags that return CellGroup Modifier and Type Method Description protected CellGroupPercentCellGroupTag. createGroup()Creates the cell group object based on the attribute values.Methods in net.sf.jguiraffe.gui.builder.components.tags that return types with arguments of type CellGroup Modifier and Type Method Description Collection<CellGroup>PercentLayoutTag. getColGroups()Returns the collection with the column groups definition.Collection<CellGroup>PercentLayoutTag. getRowGroups()Returns the collection with the row groups definition.Methods in net.sf.jguiraffe.gui.builder.components.tags with parameters of type CellGroup Modifier and Type Method Description voidPercentLayoutTag. addColGroup(CellGroup g)Adds the specified cell group object to the list of column groups.protected abstract voidPercentCellGroupTag. addGroup(PercentLayoutTag parent, CellGroup g)Adds the newly created cell group object to the corresponding percent layout tag.protected voidPercentColGroupTag. addGroup(PercentLayoutTag parent, CellGroup g)Adds the specified group object as a column group to the given percent layout tag.protected voidPercentRowGroupTag. addGroup(PercentLayoutTag parent, CellGroup g)Adds the specified group object as a row group to the given percent layout tag.voidPercentLayoutTag. addRowGroup(CellGroup g)Adds the specified cell group object to the list of row groups. -
Uses of CellGroup in net.sf.jguiraffe.gui.layout
Methods in net.sf.jguiraffe.gui.layout that return CellGroup Modifier and Type Method Description static CellGroupCellGroup. fromArray(int... idx)Creates a new instance ofCellGroupand initializes it with the indices of the affected cells.static CellGroupCellGroup. fromString(String s)Creates a new instance ofCellGroupand initializes it from the passed in string.Methods in net.sf.jguiraffe.gui.layout that return types with arguments of type CellGroup Modifier and Type Method Description Collection<CellGroup>PercentLayoutBase. getColumnGroups()Returns an unmodifiable collection with the column groups defined for this layout.Collection<CellGroup>PercentLayoutBase. getRowGroups()Returns an unmodifiable collection with the row groups defined for this layout.Methods in net.sf.jguiraffe.gui.layout with parameters of type CellGroup Modifier and Type Method Description voidPercentLayoutBase. addColumnGroup(CellGroup grp)Adds aCellGroupobject for columns to this layout manager.voidPercentLayoutBase. addRowGroup(CellGroup grp)Adds aCellGroupobject for rows to this layout manager.Method parameters in net.sf.jguiraffe.gui.layout with type arguments of type CellGroup Modifier and Type Method Description protected voidPercentLayoutBase. applyCellGroups(int[] sizes, Collection<CellGroup> cellGroups)Applies the defined cell groups to the so far calculated cell sizes.protected int[]PercentLayoutBase. calcCellSizesWithGroups(CellConstraints[] constraints, int count, Collection<CellGroup> cellGroups, Object container, boolean minimum, boolean vert)Calculates the sizes of all columns or rows.int[]PercentLayoutBase. calcSizes(CellConstraints[] constraints, int count, Collection<CellGroup> cellGroups, Object container, int containerSize, boolean vert)Calculates the final cell sizes in one direction (horizontal or vertical).
-