-
Enhancement
-
Resolution: Duplicate
-
P4
-
5.0
-
x86
-
windows_xp
A DESCRIPTION OF THE REQUEST :
At the moment there is not way to say to the layout managers that a JComponent should have a certain min/max/preferred width but no min/max/preferred height (that I know of anyway). This makes some kinds of layout managers hard to implement without resorting to layout context objects, which would be somewhat redundant.
Add (to JComponent):
setPreferredWidth(Integer w)
setPreferredHeight(Integer h)
setMinimumWidth(Integer w)
setMinimumHeight(Integer h)
settMaximumWidth(Integer w)
setMaximumHeight(Integer h)
(+ get versions of above.)
Null means 'unspecified' or 'whatever'.
Also add the interconnected versions:
Integer getPreferredWidth(int ifHeight)
Integer getPreferredHeight(int ifWidth)
Integer getMinimumWidth(int ifHeight)
Integer getMinimumHeight(int ifWidth)
Integer getMaximumWidth(int ifHeight)
Integer getMaximumHeight(int ifWidth)
These interconnection versions would open up for situations where, for instance, preferred height is a function of the preferred width. A text component for instance could answer the question 'What would be your preferred height given the width of 100 '.
Making this interact transparently with the current API is quite simple. It wouldn't break code that 'doesn't know' about this feature, yet new Layout Managers could be written that uses them.
JUSTIFICATION :
Certain layout problem exists today since if you want to specify a preferred height for a component you also have to set the width. What if you want a specific preferred height (and min/max possibly) but the UI should decide the width (for instance a label). That is not possible today.
Also it open up for something that is hard today. Getting preferred width/height for a wrapping component (e.g. JTextArea). Being able for a UI or JComponent to answer 'What would be your preferred height given the width of 100 ' would help in wringing new and faster layout managers without having to use "tricks".
###@###.### 10/14/04 23:14 GMT
At the moment there is not way to say to the layout managers that a JComponent should have a certain min/max/preferred width but no min/max/preferred height (that I know of anyway). This makes some kinds of layout managers hard to implement without resorting to layout context objects, which would be somewhat redundant.
Add (to JComponent):
setPreferredWidth(Integer w)
setPreferredHeight(Integer h)
setMinimumWidth(Integer w)
setMinimumHeight(Integer h)
settMaximumWidth(Integer w)
setMaximumHeight(Integer h)
(+ get versions of above.)
Null means 'unspecified' or 'whatever'.
Also add the interconnected versions:
Integer getPreferredWidth(int ifHeight)
Integer getPreferredHeight(int ifWidth)
Integer getMinimumWidth(int ifHeight)
Integer getMinimumHeight(int ifWidth)
Integer getMaximumWidth(int ifHeight)
Integer getMaximumHeight(int ifWidth)
These interconnection versions would open up for situations where, for instance, preferred height is a function of the preferred width. A text component for instance could answer the question 'What would be your preferred height given the width of 100 '.
Making this interact transparently with the current API is quite simple. It wouldn't break code that 'doesn't know' about this feature, yet new Layout Managers could be written that uses them.
JUSTIFICATION :
Certain layout problem exists today since if you want to specify a preferred height for a component you also have to set the width. What if you want a specific preferred height (and min/max possibly) but the UI should decide the width (for instance a label). That is not possible today.
Also it open up for something that is hard today. Getting preferred width/height for a wrapping component (e.g. JTextArea). Being able for a UI or JComponent to answer 'What would be your preferred height given the width of 100 ' would help in wringing new and faster layout managers without having to use "tricks".
###@###.### 10/14/04 23:14 GMT
- duplicates
-
JDK-4903046 Geater control needed for component set*size() methods
-
- Open
-