Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
javax.swing.plaf.ComponentUI
public abstract class ComponentUI
extends Object
Components such as JSlider
do not directly
implement operations related to the look and feel of the user
interface, such as painting or layout. Instead, they use a delegate
object for all such tasks. In the case of JSlider
, the
user interface would be provided by some concrete subclass of
SliderUI
.
Soon after its creation, a ComponentUI
will be sent
an installUI(JComponent)
message. The ComponentUI
will
react by setting properties such as the border or the background
color of the JComponent
for which it provides its
services. Soon before the end of its lifecycle, the
ComponentUI
will receive an uninstallUI(JComponent)
message, at which time the ComponentUI
is expected to
undo any changes.
Note that the ui
of a JComponent
changes whenever the user switches between look and feels. For
example, the ui
property of a JSlider
could change from an instance of MetalSliderUI
to an
instance of FooSliderUI
. This switch can happen at any
time, but it will always be performed from inside the Swing thread.
Constructor Summary | |
|
Method Summary | |
boolean |
|
static ComponentUI |
|
Accessible |
|
int |
|
Dimension |
|
Dimension |
|
Dimension |
|
void |
|
void |
|
void |
|
void |
|
Methods inherited from class java.lang.Object | |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
public boolean contains(JComponent c, int x, int y)
Determines whether a click into the component at a specified location is considered as having hit the component. The default implementation checks whether the point falls into the component’s bounding rectangle. Some subclasses might want to override this, for example in the case of a rounded button.
- Parameters:
c
- the component for which this delegate performs services.x
- the x coordinate of the point, relative to the local coordinate system of the component. Zero would be be component’s left edge, irrespective of the location inside its parent.y
- the y coordinate of the point, relative to the local coordinate system of the component. Zero would be be component’s top edge, irrespective of the location inside its parent.
public static ComponentUI createUI(JComponent c)
Creates a delegate object for the specified component. Users should use thecreateUI
method of a suitable subclass. The implementation ofComponentUI
always throws an error.
- Parameters:
c
- the component for which a UI delegate is requested.
public Accessible getAccessibleChild(JComponent c, int i)
Returns the specified accessible child of the component. The default implementation delegates the inquiry to theAccessibleContext
ofc
.
- Parameters:
c
- the component whosei
-th accessible child is requested.i
- the index of the accessible child, starting at zero.
public int getAccessibleChildrenCount(JComponent c)
Counts the number of accessible children in the component. The default implementation delegates the inquiry to theAccessibleContext
ofc
.
- Parameters:
c
- the component whose accessible children are to be counted.
public Dimension getMaximumSize(JComponent c)
Determines the maximum size of a component. The default implementation callsgetPreferredSize(JComponent)
, but subclasses might want to override this.
- Parameters:
c
- the component for which this delegate performs services.
- Returns:
- the maximum size, or
null
to indicate thatc
’s layout manager should be asked to calculate the maximum size.
public Dimension getMinimumSize(JComponent c)
Determines the minimum size of a component. The default implementation callsgetPreferredSize(JComponent)
, but subclasses might want to override this.
- Parameters:
c
- the component for which this delegate performs services.
- Returns:
- the minimum size, or
null
to indicate thatc
’s layout manager should be asked to calculate the minimum size.
public Dimension getPreferredSize(JComponent c)
Determines the preferred size of a component. The default implementation returnsnull
, which means thatc
’s layout manager should be asked to calculate the preferred size.
- Parameters:
c
- the component for which this delegate performs services.
- Returns:
- the preferred size, or
null
to indicate thatc
’s layout manager should be asked for the preferred size.
public void installUI(JComponent c)
Sets up the specified component so it conforms the the design guidelines of the implemented look and feel. When the look and feel changes, aComponentUI
delegate is created. The delegate object then receives aninstallUI
message.This method should perform the following tasks:
- Set visual properties such as borders, fonts, colors, or icons. However, no change should be performed for those properties whose values have been directly set by the client application. To allow the distinction, LookAndFeels are expected to use values that implement the
UIResource
marker interface, such asBorderUIResource
orColorUIResource
.- If necessary, install a
LayoutManager
.- Embed custom sub-components. For instance, the UI delegate for a
JSplitPane
might install a special component for the divider.- Register event listeners.
- Set up properties related to keyborad navigation, such as mnemonics or focus traversal policies.
- Parameters:
c
- the component for which this delegate will provide services.
public void paint(Graphics g, JComponent c)
Paints the component according to the design guidelines of the look and feel. Most subclasses will want to override this method.
- Parameters:
g
- the graphics for painting.c
- the component for which this delegate performs services.
public void uninstallUI(JComponent c)
Puts the specified component into the state it had beforeinstallUI(JComponent)
was called.
- Parameters:
c
- the component for which this delegate has provided services.
public void update(Graphics g, JComponent c)
Fills the specified component with its background color (unless theopaque
property isfalse
) before callingpaint(Graphics,JComponent)
.It is unlikely that a subclass needs to override this method. The actual rendering should be performed by the
paint(Graphics,JComponent)
method.
- Parameters:
g
- the graphics for painting.c
- the component for which this delegate performs services.