|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.winterdrache.layout.MSBLayout.ConstraintsFactory
public static class MSBLayout.ConstraintsFactory
When a new box is added to an MSBLayout without an accompanying Constraints
object, MSBLayout uses a ConstraintsFactory to provide the Constraints.
MSBLayout.getConstraintsFactory()
returns the factory used.
For Component
s the MSBLayout.ConstraintsFactory
maps the Component's Class
to the
Constraints to be used for the component box. The Constraints for hboxes, vboxes and glues are
accessed via the constants HBOX
, VBOX
and
GLUE
. When the factory has no specialized set of constraints defined
for a class, it returns a default set of constraints, never null.
halign | -1.0f (= justify) |
valign | -1.0f (= justify) |
padding | (0,0) |
hscale | 1.0f |
vscale | 1.0f |
hweight | 100* |
vweight | 100* |
hshrink | 100* |
vshrink | 100* |
* does not apply to glues
classes |
HBOX , VBOX |
hfill | 2 (= grow width to fill space regardless of preferred width) |
vfill | 2 (= grow height to fill space regardless of preferred height) |
margin | (Gap.DEFER , Gap.DEFER ,
Gap.DEFER , Gap.DEFER ) |
class |
GLUE |
hfill | 1 (= grow width to fill space up to glue's set maximum width) |
vfill | 1 (= grow width to fill space up to glue's set maximum width) |
margin | (Gap.DEFER , Gap.DEFER ,
Gap.DEFER , Gap.DEFER ) |
hweight | MAX_WEIGHT_SHRINK |
vweight | MAX_WEIGHT_SHRINK |
hshrink | MAX_WEIGHT_SHRINK |
vshrink | MAX_WEIGHT_SHRINK |
class |
JSeparator |
hfill | 1 (= grow width to fill space up to separator's maximum width) |
vfill | 1 (= grow height to fill space up to separator's maximum height) |
margin | (Gap.WEAK_UNRELATED ,
Gap.WEAK_UNRELATED , Gap.WEAK_UNRELATED , Gap.WEAK_UNRELATED ) |
classes |
JTextField , JFormattedTextField , JPasswordField , JComboBox ,
JProgressBar |
hfill | 1 (= grow width to fill space up to component's maximum width) |
vfill | 0 (= insist on preferred height) |
margin | (Gap.WEAK_RELATED , Gap.WEAK_RELATED , Gap.WEAK_RELATED ,
Gap.WEAK_RELATED ) |
classes |
JTextArea , JEditorPane , JTextPane , JSplitPane ,
JScrollPane , JLayeredPane , JDesktopPane , JSlider ,
JScrollBar , JPanel , JTabbedPane , JFileChooser ,
JColorChooser , Box.Filler |
hfill | 1 (= grow width to fill space up to component's maximum width) |
vfill | 1 (= grow height to fill space up to component's maximum height) |
margin | (Gap.WEAK_RELATED , Gap.WEAK_RELATED , Gap.WEAK_RELATED ,
Gap.WEAK_RELATED ) |
classes | all others |
hfill | 0 (= insist on preferred width) |
vfill | 0 (= insist on preferred height) |
margin | (Gap.WEAK_RELATED , Gap.WEAK_RELATED , Gap.WEAK_RELATED ,
Gap.WEAK_RELATED ) |
Field Summary | |
---|---|
protected MSBLayout.MutableConstraints |
defaultConstraints
The Constraints returned when mapClass2Constraints does not contain a mapping for a
given class. |
static Class<?> |
GLUE
Constant for accessing the Constraints for a glue; |
static Class<?> |
HBOX
Constant for accessing the Constraints for a hbox. |
protected Map<Class<?>,MSBLayout.MutableConstraints> |
mapClass2Constraints
Maps a Class to a MutableConstraints object that holds the
constraints for that class. |
static Class<?> |
VBOX
Constant for accessing the Constraints for a vbox; |
Constructor Summary | |
---|---|
MSBLayout.ConstraintsFactory()
Creates a new ConstraintsFactory that contains only a default Constraints
object but no specialized constraints. |
|
MSBLayout.ConstraintsFactory(MSBLayout.ConstraintsFactory orig)
Creates a new ConstraintsFactory that starts with an independent copy of all Constraints from orig. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final Class<?> HBOX
Constraints
for a hbox.
public static final Class<?> VBOX
Constraints
for a vbox;
public static final Class<?> GLUE
Constraints
for a glue;
protected Map<Class<?>,MSBLayout.MutableConstraints> mapClass2Constraints
Class
to a MutableConstraints
object that holds the
constraints for that class.
HBOX
,
VBOX
,
GLUE
,
defaultConstraints
protected MSBLayout.MutableConstraints defaultConstraints
mapClass2Constraints
does not contain a mapping for a
given class.
Constructor Detail |
---|
public MSBLayout.ConstraintsFactory()
Constraints
object but no specialized constraints.
public MSBLayout.ConstraintsFactory(MSBLayout.ConstraintsFactory orig)
Constraints
from orig. If you want to start out with the default set of
Constraints
, you can pass
MSBLayout.getDefaultConstraintsFactory()
. If you want to create a ConstraintsFactory
that only has one default Constraints
object but no specialized
constraints, then pass null.
Method Detail |
---|
public MSBLayout.Constraints getConstraintsFor(Class<?> cls)
Constraints
to be used for the component boxes around objects of
Class
cls. Usually cls would be one of the Swing UI classes such as JTextField.class.
The special constants HBOX
and VBOX
can be used to access the
Constraints
for hboxes and vboxes and the special constant GLUE
accesses the constraints for glues.
If this factory has no specialized constraints for the given class, it will return a default
Constraints
object, i.e. this method never returns null.
modifyConstraintsFor(Class)
,
modifyDefaultConstraints()
,
getConstraintsForHBox()
,
getConstraintsForVBox()
,
modifyConstraintsForHBox()
,
modifyConstraintsForVBox()
,
setConstraintsFor(Class, de.winterdrache.layout.MSBLayout.Constraints)
public void setConstraintsFor(Class<?> cls, MSBLayout.Constraints constraints)
getConstraintsFor(Class)
for class cls.
public MSBLayout.MutableConstraints modifyConstraintsFor(Class<?> cls)
MutableConstraints
object that you can modify to affect
all future calls to getConstraintsFor(Class)
for the given class. The Constraints
object is initialized with the current constraints associated with cls. You should make all
your changes to the returned object right away. Modifications to the object after any further
method calls to the factory may or may not have an effect.
getConstraintsFor(Class)
,
setConstraintsFor(Class, de.winterdrache.layout.MSBLayout.Constraints)
public MSBLayout.MutableConstraints modifyDefaultConstraints()
MutableConstraints
object that you can modify to affect
all future calls to getConstraintsFor(Class)
for classes that have no specialized
constraints. You should make all your changes to the returned object right away.
Modifications to the object after any further method calls to the factory may or may not have
an effect.
public void setDefaultConstraints(MSBLayout.Constraints constraints)
Constraints
to be used whenever no specialized constraints have been defined.
public MSBLayout.Constraints getConstraintsForHBox()
getConstraintsFor(MSBLayout.ConstraintsFactory.HBOX)
.
getConstraintsFor(Class)
,
modifyConstraintsFor(Class)
public MSBLayout.Constraints getConstraintsForVBox()
getConstraintsFor(MSBLayout.ConstraintsFactory.VBOX)
.
getConstraintsFor(Class)
,
modifyConstraintsFor(Class)
public MSBLayout.MutableConstraints modifyConstraintsForHBox()
modifyConstraintsFor(MSBLayout.ConstraintsFactory.HBOX)
. You should make all your changes to
the returned object right away. Modifications to the object after any further method calls to
the factory may or may not have an effect.
modifyConstraintsFor(Class)
,
getConstraintsFor(Class)
public MSBLayout.MutableConstraints modifyConstraintsForVBox()
modifyConstraintsFor(MSBLayout.ConstraintsFactory.VBOX)
. You should make all your changes to
the returned object right away. Modifications to the object after any further method calls to
the factory may or may not have an effect.
modifyConstraintsFor(Class)
,
getConstraintsFor(Class)
public Iterable<Class<?>> classes()
ConstraintsFactory
has
specialized Constraints
. For all other classes
getConstraintsFor(Class)
will return a default set of Constraints
. Note that the iteration will contain HBOX
and/or
VBOX
and/or GLUE
if the factory has specialized
constraints for hboxes, vboxes and/or glues respectively.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
Copyright © 2010 Matthias S. Benkmann. See LICENSE file for licensing details.
Hosted on