Uses of Class
org.openstreetmap.josm.tools.GBC
-
Packages that use GBC Package Description org.openstreetmap.josm.gui.conflict.pair Provides the classes for displaying conflicts as pair of lists.org.openstreetmap.josm.gui.conflict.pair.properties Provides the classes for displaying conflicts in OSM primitive properties.org.openstreetmap.josm.gui.conflict.pair.tags Provides the classes for displaying conflicts in OSM primitive tags.org.openstreetmap.josm.gui.io Provides GUI classes for handling input/output operations (download, upload, save).org.openstreetmap.josm.gui.preferences.imagery Provides classes for handling imagery preferences.org.openstreetmap.josm.gui.preferences.projection Provides classes for handling projection preferences.org.openstreetmap.josm.gui.preferences.server Provides classes for handling connection preferences, including server authentication and proxy settings.org.openstreetmap.josm.tools Provides the classes for various utilities and tools called from all other packages. -
-
Uses of GBC in org.openstreetmap.josm.gui.conflict.pair
Methods in org.openstreetmap.josm.gui.conflict.pair with parameters of type GBC Modifier and Type Method Description protected void
AbstractMergePanel.AbstractUndecideRow. addConstraints(GBC constraints, int columnIndex)
protected void
AbstractMergePanel.MergeRow. addConstraints(GBC constraints, int columnIndex)
protected void
AbstractMergePanel.MergeRowWithoutButton. addConstraints(GBC constraints, int columnIndex)
-
Uses of GBC in org.openstreetmap.josm.gui.conflict.pair.properties
Methods in org.openstreetmap.josm.gui.conflict.pair.properties with parameters of type GBC Modifier and Type Method Description protected void
PropertiesMerger.EmptyFillRow. addConstraints(GBC constraints, int columnIndex)
-
Uses of GBC in org.openstreetmap.josm.gui.conflict.pair.tags
Methods in org.openstreetmap.josm.gui.conflict.pair.tags with parameters of type GBC Modifier and Type Method Description protected void
TagMerger.TagTableRow. addConstraints(GBC constraints, int columnIndex)
-
Uses of GBC in org.openstreetmap.josm.gui.io
Fields in org.openstreetmap.josm.gui.io declared as GBC Modifier and Type Field Description private static GBC
LayerNameAndFilePathTableCell. DEFAULT_CELL_STYLE
private static GBC
SaveLayersTableColumnModel.RecommendedActionsTableCell. DEFAULT_CELL_STYLE
-
Uses of GBC in org.openstreetmap.josm.gui.preferences.imagery
Methods in org.openstreetmap.josm.gui.preferences.imagery with parameters of type GBC Modifier and Type Method Description private static void
ImageryPreference. addSettingsSection(JPanel p, String name, JPanel section, GBC gbc)
-
Uses of GBC in org.openstreetmap.josm.gui.preferences.projection
Fields in org.openstreetmap.josm.gui.preferences.projection declared as GBC Modifier and Type Field Description private static GBC
ProjectionPreference. projSubPrefPanelGBC
The GridBagConstraints for the Panel containing the ProjectionSubPrefs. -
Uses of GBC in org.openstreetmap.josm.gui.preferences.server
Methods in org.openstreetmap.josm.gui.preferences.server that return GBC Modifier and Type Method Description private static GBC
ServerAccessPreference. eopFilledHorizontal()
-
Uses of GBC in org.openstreetmap.josm.tools
Methods in org.openstreetmap.josm.tools that return GBC Modifier and Type Method Description GBC
GBC. anchor(int a)
Set the anchor of this GBC to a.static GBC
GBC. eol()
Create the constraint for the last elements on a line.static GBC
GBC. eop()
Create the constraint for the last elements on a line and on a paragraph.GBC
GBC. fill()
Try to fill both, horizontal and verticalGBC
GBC. fill(int value)
Set fill to the given valueGBC
GBC. grid(int gridx, int gridy)
Sets the constraint'sgridx
,gridy
.GBC
GBC. insets(int insets)
Adds insets to this GBC.GBC
GBC. insets(int left, int top, int right, int bottom)
Adds insets to this GBC.GBC
GBC. span(int gridwidth)
Sets the constraint'sgridwidth
.GBC
GBC. span(int gridwidth, int gridheight)
Sets the constraint'sgridwidth
,gridheight
.static GBC
GBC. std()
Create a standard constraint (which is not the last).static GBC
GBC. std(int gridx, int gridy)
Create a standard constraint with thegridx
,gridy
set.GBC
GBC. weight(double weightx, double weighty)
Specifies how to distribute extra horizontal space.
-