|
ProgramixGenericLib v5.0.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use AnchorPoint | |
|---|---|
| com.programix.gui | Graphical User Interface (GUI) utilities. |
| com.programix.gui.layout | Handy layout managers for Swing and AWT containers. |
| Uses of AnchorPoint in com.programix.gui |
|---|
| Fields in com.programix.gui declared as AnchorPoint | |
|---|---|
static AnchorPoint |
AnchorPoint.BOTTOM_FLEX_WIDTH
Anchor in the bottom (southern) region, but match the width to the available width of the container. |
static AnchorPoint |
AnchorPoint.CENTER
Anchor in the CENTER region. |
static AnchorPoint |
AnchorPoint.CENTER_FLEX_BOTH
Anchor in the CENTER (middle) region, but match the width to the available width of the container and match the height to the available height of the container. |
static AnchorPoint |
AnchorPoint.CENTER_FLEX_HEIGHT
Anchor in the CENTER (middle) region, but match the height to the available height of the container. |
static AnchorPoint |
AnchorPoint.CENTER_FLEX_WIDTH
Anchor in the CENTER (middle) region, but match the width to the available width of the container. |
static AnchorPoint |
AnchorPoint.EAST
Anchor in the EAST (middle right) region. |
static AnchorPoint |
AnchorPoint.LEFT_FLEX_HEIGHT
Anchor in the left (western) region, but match the height to the available height of the container. |
static AnchorPoint |
AnchorPoint.NORTH
Anchor in the NORTH (centered, top) region. |
static AnchorPoint |
AnchorPoint.NORTHEAST
Anchor in the NORTHEAST (top right) region. |
static AnchorPoint |
AnchorPoint.NORTHWEST
Anchor in the NORTHWEST (top, left) region. |
static AnchorPoint |
AnchorPoint.RIGHT_FLEX_HEIGHT
Anchor in the right (eastern) region, but match the height to the available height of the container. |
static AnchorPoint |
AnchorPoint.SOUTH
Anchor in the SOUTH (centered, bottom) region. |
static AnchorPoint |
AnchorPoint.SOUTHEAST
Anchor in the SOUTHEAST (bottom, right) region. |
static AnchorPoint |
AnchorPoint.SOUTHWEST
Anchor in the SOUTHWEST (bottom, left) region. |
static AnchorPoint |
AnchorPoint.TOP_FLEX_WIDTH
Anchor in the top (northern) region, but match the width to the available width of the container. |
static AnchorPoint |
AnchorPoint.WEST
Anchor in the WEST (middle, left) region. |
static AnchorPoint[] |
AnchorPoint.ZERO_LEN_ARRAY
An array with exactly zero slots and a component type of AnchorPoint. |
| Fields in com.programix.gui with type parameters of type AnchorPoint | |
|---|---|
static List<AnchorPoint> |
AnchorPoint.VALUE_LIST
Unmodifiable List of all the instances of AnchorPoint. |
| Methods in com.programix.gui that return AnchorPoint | |
|---|---|
static AnchorPoint[] |
AnchorPoint.getValues()
Returns an array of all the legal values. |
static AnchorPoint |
AnchorPoint.valueOf(String name)
Returns the instance whose getName() method returns
a String that matches the name passed in. |
| Methods in com.programix.gui with parameters of type AnchorPoint | |
|---|---|
int |
AnchorPoint.compareTo(AnchorPoint other)
|
| Uses of AnchorPoint in com.programix.gui.layout |
|---|
| Fields in com.programix.gui.layout declared as AnchorPoint | |
|---|---|
protected AnchorPoint |
AbstractTableLayout.anchorPoint
The region to cluster the table in when the container is bigger than the table requires. |
protected AnchorPoint |
AbstractTableLayout.CellData.clusterAnchorPoint
|
static AnchorPoint |
AbstractTableLayout.DEFAULT_ANCHOR_POINT
The default anchor point used when the container is larger than is needed for the table. |
static AnchorPoint |
AnchorLayout.DEFAULT_ANCHOR_POINT
The default anchor point used when the container is larger than is needed for the child component. |
protected AnchorPoint |
AnchorTableLayout.AnchorTableCellData.defaultAnchorForAllColumns
|
| Methods in com.programix.gui.layout that return AnchorPoint | |
|---|---|
AnchorPoint |
AbstractTableLayout.getAnchorPoint()
Returns the region to cluster the table in when the container is bigger than the table requires. |
AnchorPoint |
AnchorLayout.getAnchorPoint()
Returns the region to cluster the single child component in when the container is bigger than the table requires. |
AnchorPoint |
AnchorTableLayout.getColumnAnchorPoint(int columnIndex)
Returns the AnchorPoint (if defined)
for the specified column. |
AnchorPoint |
AnchorTableLayout.getColumnHeaderAnchorPoint(int columnIndex)
Returns the AnchorPoint (if defined)
for the specified column's first row (header). |
protected AnchorPoint |
AnchorTableLayout.AnchorTableCellData.getDefaultAnchor(int colIdx)
Overridden in subclasses that want to specify a default anchor to use for a column when a single default anchor for all columns won't work. |
AnchorPoint |
ShelfLayout.getDefaultCellAnchorPoint()
Returns the current default AnchorPoint used to position a component within its cell boundaries when no constraints are specified during the add of the component. |
| Methods in com.programix.gui.layout with parameters of type AnchorPoint | |
|---|---|
void |
AbstractTableLayout.setAnchorPoint(AnchorPoint anchorPoint)
Changes the region to cluster the table in when the container is bigger than the table requires. |
void |
AnchorLayout.setAnchorPoint(AnchorPoint anchorPoint)
Changes the region to cluster the table in when the container is bigger than the table requires. |
void |
AnchorTableLayout.setColumnAnchorPoint(int columnIndex,
AnchorPoint anchor)
Set a specific AnchorPoint for a column. |
void |
AnchorTableLayout.setColumnHeaderAnchorPoint(int columnIndex,
AnchorPoint anchor)
Set a specific AnchorPoint for the specified column's
first row (header). |
void |
ShelfLayout.setDefaultCellAnchorPoint(AnchorPoint ap)
Changes the current default AnchorPoint used to position a component within its cell boundaries when no constraints are specified during the add of the component. |
| Constructors in com.programix.gui.layout with parameters of type AnchorPoint | |
|---|---|
AbstractTableLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a table layout. |
|
AnchorLayout(AnchorPoint anchorPoint)
Creates a layout using the specified anchor. |
|
AnchorLayout(int borderGap,
AnchorPoint anchorPoint)
Creates a layout using the specified border size and anchor. |
|
AnchorTableLayout.AnchorTableCellData(Container pane,
AnchorPoint defaultAnchorForAllColumns)
|
|
AnchorTableLayout(int columnCount,
AnchorPoint anchorPoint)
Creates a table layout with the specified number of columns. |
|
AnchorTableLayout(int columnCount,
int borderGap,
AnchorPoint anchorPoint)
Creates a table layout with the specified number of columns. |
|
AnchorTableLayout(int columnCount,
int rowGap,
int colGap,
AnchorPoint anchorPoint)
Creates a table layout with the specified number of columns. |
|
AnchorTableLayout(int columnCount,
int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a table layout with the specified number of columns. |
|
ButtonLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint,
int requestedRowOrColCount,
boolean colDriven)
|
|
ColumnButtonLayout(AnchorPoint anchorPoint)
Creates a layout for exactly one column of equally sized components anchored in the specified region. |
|
ColumnButtonLayout(int borderGap,
AnchorPoint anchorPoint)
Creates a layout for exactly one column of equally sized components anchored in the specified region. |
|
ColumnButtonLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a layout for exactly one column of equally sized components. |
|
ColumnButtonLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint,
int colCount)
Creates a layout for a column (or columns) of equally sized components. |
|
FormLayout(AnchorPoint anchorPoint)
Creates a standard two-column form layout. |
|
FormLayout(int borderGap,
AnchorPoint anchorPoint)
Creates a standard two-column form layout. |
|
FormLayout(int rowGap,
int colGap,
AnchorPoint anchorPoint)
Creates a standard two-column form layout. |
|
FormLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a standard two-column form layout. |
|
RowButtonLayout(AnchorPoint anchorPoint)
Creates a layout for exactly one row of equally sized components anchored in the specified region. |
|
RowButtonLayout(int borderGap,
AnchorPoint anchorPoint)
Creates a layout for exactly one row of equally sized components anchored in the specified region. |
|
RowButtonLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a layout for exactly one row of equally sized components. |
|
RowButtonLayout(int rowGap,
int colGap,
int borderGap,
AnchorPoint anchorPoint,
int rowCount)
Creates a layout for a row (or rows) of equally sized components. |
|
ShelfLayout(AnchorPoint anchorPoint)
Creates a single row (shelf) layout. |
|
ShelfLayout(int colGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a single row (shelf) layout. |
|
StackLayout(AnchorPoint anchorPoint)
Creates a single column (stack) layout. |
|
StackLayout(int rowGap,
int borderGap,
AnchorPoint anchorPoint)
Creates a single column (stack) layout. |
|
|
ProgramixGenericLib v5.0.1 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||