public class PShelf
extends org.eclipse.swt.widgets.Canvas
NOTE: THIS WIDGET AND ITS API ARE STILL UNDER DEVELOPMENT. THIS IS A PRE-RELEASE ALPHA VERSION. USERS SHOULD EXPECT API CHANGES IN FUTURE VERSIONS.
Instances of this class implement a selectable accordion metaphor, where each shelf contains a client area.
The item children that may be added to instances of this class
must be of type PShelfItem
.
Control
children are created on the body composite of each items accessed via
PShelfItem#getBody
.
IMPORTANT: This class is not intended to be subclassed.
Constructor and Description |
---|
PShelf(org.eclipse.swt.widgets.Composite parent,
int style)
Constructs a new instance of this class given its parent
and a style value describing its behavior and appearance.
|
Modifier and Type | Method and Description |
---|---|
void |
addSelectionListener(org.eclipse.swt.events.SelectionListener listener)
Adds the listener to the collection of listeners who will
be notified when the receiver's selection changes, by sending
it one of the messages defined in the
SelectionListener
interface. |
(package private) void |
computeItemHeight() |
org.eclipse.swt.graphics.Point |
computeSize(int wHint,
int hHint,
boolean changed) |
(package private) void |
createItem(PShelfItem item,
int index) |
PShelfItem |
getItem(org.eclipse.swt.graphics.Point point)
Returns the item at the given location.
|
PShelfItem[] |
getItems()
Returns an array of
PShelfItem s which are the items
in the receiver. |
AbstractRenderer |
getRenderer()
Returns the renderer.
|
PShelfItem |
getSelection()
Returns the
PShelfItem that is currently
selected in the receiver. |
(package private) void |
onResize() |
void |
removeAll()
Removes all PShelfItems.
|
(package private) void |
removeItem(PShelfItem item) |
void |
removeSelectionListener(org.eclipse.swt.events.SelectionListener listener)
Removes the listener from the collection of listeners who will
be notified when the receiver's selection changes.
|
void |
setAnimationSpeed(double animationSpeed)
Sets the speed of animation.
|
void |
setRedrawOnAmination(boolean redrawOnAnimation)
Sets whether to redraw the items (previous and next item) when the open animation occours.
|
void |
setRenderer(AbstractRenderer renderer)
Sets the renderer.
|
void |
setSelection(PShelfItem item)
Sets the receiver's selection to the given item.
|
drawBackground, getCaret, getIME, scroll, setCaret, setFont, setIME
changed, checkSubclass, drawBackground, getBackgroundMode, getChildren, getLayout, getLayoutDeferred, getTabList, isLayoutDeferred, layout, layout, layout, layout, layout, setBackgroundMode, setFocus, setLayout, setLayoutDeferred, setTabList
computeTrim, getClientArea, getHorizontalBar, getScrollbarsMode, getVerticalBar
addControlListener, addDragDetectListener, addFocusListener, addGestureListener, addHelpListener, addKeyListener, addMenuDetectListener, addMouseListener, addMouseMoveListener, addMouseTrackListener, addMouseWheelListener, addPaintListener, addTouchListener, addTraverseListener, computeSize, dragDetect, dragDetect, forceFocus, getAccessible, getBackground, getBackgroundImage, getBorderWidth, getBounds, getCursor, getDragDetect, getEnabled, getFont, getForeground, getLayoutData, getLocation, getMenu, getMonitor, getOrientation, getParent, getRegion, getShell, getSize, getTextDirection, getToolTipText, getTouchEnabled, getVisible, internal_dispose_GC, internal_new_GC, isEnabled, isFocusControl, isReparentable, isVisible, moveAbove, moveBelow, pack, pack, print, redraw, redraw, removeControlListener, removeDragDetectListener, removeFocusListener, removeGestureListener, removeHelpListener, removeKeyListener, removeMenuDetectListener, removeMouseListener, removeMouseMoveListener, removeMouseTrackListener, removeMouseWheelListener, removePaintListener, removeTouchListener, removeTraverseListener, requestLayout, setBackground, setBackgroundImage, setBounds, setBounds, setCapture, setCursor, setDragDetect, setEnabled, setForeground, setLayoutData, setLocation, setLocation, setMenu, setOrientation, setParent, setRedraw, setRegion, setSize, setSize, setTextDirection, setToolTipText, setTouchEnabled, setVisible, toControl, toControl, toDisplay, toDisplay, traverse, traverse, traverse, update
addDisposeListener, addListener, checkWidget, dispose, getData, getData, getDisplay, getListeners, getStyle, isAutoDirection, isDisposed, isListening, notifyListeners, removeDisposeListener, removeListener, removeListener, reskin, setData, setData, toString
public PShelf(org.eclipse.swt.widgets.Composite parent, int style)
The style value is either one of the style constants defined in
class SWT
which is applicable to instances of this
class, or must be built by bitwise OR'ing together
(that is, using the int
"|" operator) two or more
of those SWT
style constants. The class description
lists the style constants that are applicable to the class.
Style bits are also inherited from superclasses.
parent
- a composite control which will be the parent of the new instance (cannot be null)style
- the style of control to constructjava.lang.IllegalArgumentException
- org.eclipse.swt.SWTException
- public void setRenderer(AbstractRenderer renderer)
renderer
- the new rendererjava.lang.IllegalArgumentException
- org.eclipse.swt.SWTException
- public AbstractRenderer getRenderer()
org.eclipse.swt.SWTException
- public org.eclipse.swt.graphics.Point computeSize(int wHint, int hHint, boolean changed)
computeSize
in class org.eclipse.swt.widgets.Control
void createItem(PShelfItem item, int index)
void removeItem(PShelfItem item)
void onResize()
void computeItemHeight()
public PShelfItem getItem(org.eclipse.swt.graphics.Point point)
point
- locationjava.lang.IllegalArgumentException
- org.eclipse.swt.SWTException
- public void setSelection(PShelfItem item)
item
- the item to selectjava.lang.IllegalArgumentException
- org.eclipse.swt.SWTException
- public PShelfItem getSelection()
PShelfItem
that is currently
selected in the receiver.org.eclipse.swt.SWTException
- public PShelfItem[] getItems()
PShelfItem
s which are the items
in the receiver.
Note: This is not the actual structure used by the receiver to maintain its list of items, so modifying the array will not affect the receiver.
org.eclipse.swt.SWTException
- public void addSelectionListener(org.eclipse.swt.events.SelectionListener listener)
SelectionListener
interface.
When widgetSelected
is called, the item field of the event object is valid.
widgetDefaultSelected
is not called.
listener
- the listener which should be notifiedjava.lang.IllegalArgumentException
- org.eclipse.swt.SWTException
- SelectionListener
,
removeSelectionListener(org.eclipse.swt.events.SelectionListener)
,
SelectionEvent
public void removeSelectionListener(org.eclipse.swt.events.SelectionListener listener)
listener
- the listener which should no longer be notifiedjava.lang.IllegalArgumentException
- org.eclipse.swt.SWTException
- SelectionListener
,
addSelectionListener(org.eclipse.swt.events.SelectionListener)
public void removeAll()
public void setAnimationSpeed(double animationSpeed)
animationSpeed
- public void setRedrawOnAmination(boolean redrawOnAnimation)
redrawOnAnimation
-