Class TabPreviewThread.TabPreviewInfo
- java.lang.Object
-
- org.pushingpixels.radiance.theming.extras.internal.tabbed.DeltaQueue.Deltable
-
- org.pushingpixels.radiance.theming.extras.internal.tabbed.TabPreviewThread.TabPreviewInfo
-
- Enclosing class:
- TabPreviewThread
public static class TabPreviewThread.TabPreviewInfo extends DeltaQueue.Deltable
Information for previewing a tabbed pane.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Object
initiator
Points to the preview initiator.TabPreviewThread.TabPreviewCallback
previewCallback
Callback for passing the preview thumbnail once it is computed.private int
previewHeight
Height of the preview thumbnail.private int
previewWidth
Width of the preview thumbnail.int
tabIndexToPreview
IftoPreviewAllTabs
isfalse
, contains the index of the tab to be previewed.javax.swing.JTabbedPane
tabPane
Tabbed pane.boolean
toPreviewAllTabs
Indicates whether all tabs in thetabPane
should be previewed.-
Fields inherited from class org.pushingpixels.radiance.theming.extras.internal.tabbed.DeltaQueue.Deltable
delta
-
-
Constructor Summary
Constructors Constructor Description TabPreviewInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getPreviewHeight()
int
getPreviewWidth()
void
setPreviewHeight(int previewHeight)
void
setPreviewWidth(int previewWidth)
-
Methods inherited from class org.pushingpixels.radiance.theming.extras.internal.tabbed.DeltaQueue.Deltable
decrementDelta, getDelta, incrementDelta, setDelta
-
-
-
-
Field Detail
-
tabPane
public javax.swing.JTabbedPane tabPane
Tabbed pane.
-
previewCallback
public TabPreviewThread.TabPreviewCallback previewCallback
Callback for passing the preview thumbnail once it is computed.
-
previewWidth
private int previewWidth
Width of the preview thumbnail.
-
previewHeight
private int previewHeight
Height of the preview thumbnail.
-
toPreviewAllTabs
public boolean toPreviewAllTabs
Indicates whether all tabs in thetabPane
should be previewed.
-
tabIndexToPreview
public int tabIndexToPreview
IftoPreviewAllTabs
isfalse
, contains the index of the tab to be previewed.
-
initiator
public java.lang.Object initiator
Points to the preview initiator.
-
-