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.ObjectinitiatorPoints to the preview initiator.TabPreviewThread.TabPreviewCallbackpreviewCallbackCallback for passing the preview thumbnail once it is computed.private intpreviewHeightHeight of the preview thumbnail.private intpreviewWidthWidth of the preview thumbnail.inttabIndexToPreviewIftoPreviewAllTabsisfalse, contains the index of the tab to be previewed.javax.swing.JTabbedPanetabPaneTabbed pane.booleantoPreviewAllTabsIndicates whether all tabs in thetabPaneshould 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 intgetPreviewHeight()intgetPreviewWidth()voidsetPreviewHeight(int previewHeight)voidsetPreviewWidth(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 thetabPaneshould be previewed.
-
tabIndexToPreview
public int tabIndexToPreview
IftoPreviewAllTabsisfalse, contains the index of the tab to be previewed.
-
initiator
public java.lang.Object initiator
Points to the preview initiator.
-
-