Class MetalLabelUI
java.lang.Object
javax.swing.plaf.ComponentUI
javax.swing.plaf.LabelUI
javax.swing.plaf.basic.BasicLabelUI
javax.swing.plaf.metal.MetalLabelUI
- All Implemented Interfaces:
PropertyChangeListener, EventListener
A Windows L&F implementation of LabelUI. This implementation
is completely static, i.e. there's only one UIView implementation
that's shared by all JLabel objects.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static MetalLabelUI
The defaultMetalLabelUI
instance.Fields declared in class BasicLabelUI
labelUI
Modifier and TypeFieldDescriptionprotected static BasicLabelUI
The defaultBasicLabelUI
instance. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic ComponentUI
Returns an instance ofMetalLabelUI
.protected void
paintDisabledText
(JLabel l, Graphics g, String s, int textX, int textY) Just paint the text gray (Label.disabledForeground) rather than in the labels foreground color.Methods declared in class BasicLabelUI
getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, installComponents, installDefaults, installKeyboardActions, installListeners, layoutCL, paint, paintEnabledText, propertyChange, uninstallComponents, uninstallDefaults, uninstallKeyboardActions, uninstallListeners
Modifier and TypeMethodDescriptionint
getBaseline
(JComponent c, int width, int height) Returns the baseline.Returns an enum indicating how the baseline of the component changes as the size changes.Returns the specified component's maximum size appropriate for the look and feel.Returns the specified component's minimum size appropriate for the look and feel.protected void
Registers components.protected void
Installs default properties.protected void
Registers keyboard actions.protected void
Registers listeners.protected String
layoutCL
(JLabel label, FontMetrics fontMetrics, String text, Icon icon, Rectangle viewR, Rectangle iconR, Rectangle textR) Forwards the call to SwingUtilities.layoutCompoundLabel().void
paint
(Graphics g, JComponent c) Paints the label text with the foreground color, if the label is opaque then paints the entire background with the background color.protected void
paintEnabledText
(JLabel l, Graphics g, String s, int textX, int textY) Paint clippedText at textX, textY with the labels foreground color.void
This method gets called when a bound property is changed.protected void
Unregisters components.protected void
Uninstalls default properties.protected void
Unregisters keyboard actions.protected void
Unregisters listeners.Methods declared in class ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getPreferredSize, installUI, uninstallUI, update
Modifier and TypeMethodDescriptionboolean
contains
(JComponent c, int x, int y) Returnstrue
if the specified x,y location is contained within the look and feel's defined shape of the specified component.getAccessibleChild
(JComponent c, int i) Returns thei
thAccessible
child of the object.int
Returns the number of accessible children in the object.Returns the specified component's preferred size appropriate for the look and feel.void
Configures the specified component appropriately for the look and feel.void
Reverses configuration which was done on the specified component duringinstallUI
.void
update
(Graphics g, JComponent c) Notifies this UI delegate that it is time to paint the specified component.Methods declared in class Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.boolean
Indicates whether some other object is "equal to" this one.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.int
hashCode()
Returns a hash code value for this object.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
metalLabelUI
The defaultMetalLabelUI
instance. This field might not be used. To change the default instance use a subclass which overrides thecreateUI
method, and place that class name in defaults table under the key "LabelUI".
-
-
Constructor Details
-
MetalLabelUI
public MetalLabelUI()Constructs aMetalLabelUI
.
-
-
Method Details
-
createUI
Returns an instance ofMetalLabelUI
.- Parameters:
c
- a component- Returns:
- an instance of
MetalLabelUI
-
paintDisabledText
Just paint the text gray (Label.disabledForeground) rather than in the labels foreground color.- Overrides:
paintDisabledText
in classBasicLabelUI
- Parameters:
l
- an instance ofJLabel
g
- an instance ofGraphics
s
- a texttextX
- an X coordinatetextY
- an Y coordinate- See Also:
-