Package org.apache.pivot.wtk.skin
Class ActivityIndicatorSkin
- java.lang.Object
- 
- org.apache.pivot.wtk.skin.ComponentSkin
- 
- org.apache.pivot.wtk.skin.ActivityIndicatorSkin
 
 
- 
- All Implemented Interfaces:
- ActivityIndicatorListener,- ComponentKeyListener,- ComponentListener,- ComponentMouseButtonListener,- ComponentMouseListener,- ComponentMouseWheelListener,- ComponentStateListener,- ComponentTooltipListener,- ConstrainedVisual,- Skin,- Visual
 - Direct Known Subclasses:
- TerraActivityIndicatorSkin
 
 public abstract class ActivityIndicatorSkin extends ComponentSkin implements ActivityIndicatorListener Abstract base class for activity indicator skins.
- 
- 
Nested Class Summary- 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ActivityIndicatorListenerActivityIndicatorListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentKeyListenerComponentKeyListener.Adapter, ComponentKeyListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentListenerComponentListener.Adapter, ComponentListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseButtonListenerComponentMouseButtonListener.Adapter, ComponentMouseButtonListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseListenerComponentMouseListener.Adapter, ComponentMouseListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentMouseWheelListenerComponentMouseWheelListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentStateListenerComponentStateListener.Adapter, ComponentStateListener.Listeners
 - 
Nested classes/interfaces inherited from interface org.apache.pivot.wtk.ComponentTooltipListenerComponentTooltipListener.Listeners
 
- 
 - 
Constructor SummaryConstructors Constructor Description ActivityIndicatorSkin()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidinstall(Component component)Must be implemented in every subclass in order to do component-specific operations at instantiation time, but every subclass must call this superclass method to setup the necessary listeners, etc.booleanisFocusable()By default, skins are focusable.voidlayout()If the component on which the skin is installed is a container, lays out the container's children.- 
Methods inherited from class org.apache.pivot.wtk.skin.ComponentSkincolorFromObject, colorFromObject, colorFromObject, colorFromObject, currentTheme, cursorChanged, decodeFont, defaultBackgroundColor, defaultForegroundColor, dragSourceChanged, dropTargetChanged, enabledChanged, focusedChanged, fontFromObject, getBaseline, getBaseline, getColor, getComponent, getFocusRectangleStroke, getHeight, getPreferredSize, getSize, getTextInputMethodListener, getThemeFont, getWidth, heightLimitsChanged, invalidateComponent, isOpaque, keyPressed, keyReleased, keyTyped, locationChanged, menuHandlerChanged, mouseClick, mouseDown, mouseMove, mouseOut, mouseOver, mouseUp, mouseWheel, nameChanged, parentChanged, preferredSizeChanged, repaintComponent, repaintComponent, repaintComponent, repaintComponent, repaintComponent, setDefaultStyles, setSize, sizeChanged, themeHasThickFocusRectangle, themeHasTransitionEnabled, themeIsDark, themeIsFlat, tooltipDelayChanged, tooltipTextChanged, tooltipTriggered, visibleChanged, widthLimitsChanged
 - 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface org.apache.pivot.wtk.ActivityIndicatorListeneractiveChanged
 - 
Methods inherited from interface org.apache.pivot.wtk.ConstrainedVisualgetPreferredHeight, getPreferredWidth, setSize
 
- 
 
- 
- 
- 
Method Detail- 
installpublic void install(Component component) Description copied from class:ComponentSkinMust be implemented in every subclass in order to do component-specific operations at instantiation time, but every subclass must call this superclass method to setup the necessary listeners, etc.- Specified by:
- installin interface- Skin
- Overrides:
- installin class- ComponentSkin
- Parameters:
- component- The component to which the skin is being attached.
 
 - 
isFocusablepublic boolean isFocusable() Description copied from class:ComponentSkinBy default, skins are focusable.- Specified by:
- isFocusablein interface- Skin
- Overrides:
- isFocusablein class- ComponentSkin
- Returns:
- trueif this skin is focusable;- false, otherwise.
 
 
- 
 
-