Class SynthViewportUI
- All Implemented Interfaces:
-
PropertyChangeListener,EventListener,SynthConstants,SynthUI
public class SynthViewportUI extends ViewportUI implements PropertyChangeListener, SynthUI
JViewport.- Since:
- 1.7
Field Summary
Fields declared in interface javax.swing.plaf.synth.SynthConstants
DEFAULT, DISABLED, ENABLED, FOCUSED, MOUSE_OVER, PRESSED, SELECTED
Constructor Summary
| Constructor | Description |
|---|---|
SynthViewportUI() |
Constructs a SynthViewportUI. |
Method Summary
| Modifier and Type | Method | Description |
|---|---|---|
static ComponentUI |
createUI |
Creates a new UI object for the given component. |
SynthContext |
getContext |
Returns the Context for the specified component. |
protected void |
installDefaults |
Installs defaults for a viewport. |
protected void |
installListeners |
Installs listeners into the viewport. |
void |
paint |
Paints the specified component according to the Look and Feel. |
protected void |
paint |
Paints the specified component. |
void |
paintBorder |
Paints the border. |
void |
propertyChange |
This method gets called when a bound property is changed. |
protected void |
uninstallDefaults |
Uninstalls defaults from a viewport. |
protected void |
uninstallListeners |
Uninstalls listeners from the viewport. |
void |
update |
Notifies this UI delegate to repaint the specified component. |
Methods declared in class javax.swing.plaf.ComponentUI
contains, getAccessibleChild, getAccessibleChildrenCount, getBaseline, getBaselineResizeBehavior, getMaximumSize, getMinimumSize, getPreferredSize, installUI, uninstallUI
Constructor Details
SynthViewportUI
public SynthViewportUI()
SynthViewportUI.Method Details
createUI
public static ComponentUI createUI(JComponent c)
- Parameters:
-
c- component to create UI object for - Returns:
- the UI object
installDefaults
protected void installDefaults(JComponent c)
- Parameters:
-
c- aJViewportobject
installListeners
protected void installListeners(JComponent c)
- Parameters:
-
c- aJViewportobject
uninstallListeners
protected void uninstallListeners(JComponent c)
- Parameters:
-
c- aJViewportobject
uninstallDefaults
protected void uninstallDefaults(JComponent c)
- Parameters:
-
c- aJViewportobject
getContext
public SynthContext getContext(JComponent c)
- Specified by:
-
getContextin interfaceSynthUI - Parameters:
-
c- Component requesting SynthContext. - Returns:
- SynthContext describing component.
update
public void update(Graphics g, JComponent c)
paint(SynthContext,Graphics) method. In general, this method does not need to be overridden by subclasses. All Look and Feel rendering code should reside in the paint method.
- Overrides:
-
updatein classComponentUI - Parameters:
-
g- theGraphicsobject used for painting -
c- the component being painted - See Also:
paintBorder
public void paintBorder(SynthContext context, Graphics g, int x, int y, int w, int h)
JViewport class does not support a border. This implementation does nothing.- Specified by:
-
paintBorderin interfaceSynthUI - Parameters:
-
context- a component context -
g- theGraphicsto paint on -
x- the X coordinate -
y- the Y coordinate -
w- width of the border -
h- height of the border
paint
public void paint(Graphics g, JComponent c)
This method is not used by Synth Look and Feel. Painting is handled by the paint(SynthContext,Graphics) method.
- Overrides:
-
paintin classComponentUI - Parameters:
-
g- theGraphicsobject used for painting -
c- the component being painted - See Also:
paint
protected void paint(SynthContext context, Graphics g)
- Parameters:
-
context- context for the component being painted -
g- theGraphicsobject used for painting - See Also:
propertyChange
public void propertyChange(PropertyChangeEvent e)
- Specified by:
-
propertyChangein interfacePropertyChangeListener - Parameters:
-
e- A PropertyChangeEvent object describing the event source and the property that has changed.
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/swing/plaf/synth/SynthViewportUI.html