Class AbstractInformationControlManager
- java.lang.Object
-
- org.eclipse.jface.text.AbstractInformationControlManager
-
- Direct Known Subclasses:
AbstractHoverInformationControlManager,InformationPresenter
public abstract class AbstractInformationControlManager extends Object
Manages the life cycle, visibility, layout, and contents of anIInformationControl. This manager can be installed on and removed from a control, referred to as the subject control, i.e. the one from which the subject of the information to be shown is retrieved. Also a manager can be enabled or disabled. An installed and enabled manager can be forced to show information in its information control usingshowInformation. An information control manager uses anIInformationControlCloserto define the behavior when a presented information control must be closed. The disposal of the subject and the information control are internally handled by the information control manager and are not the responsibility of the information control closer.- Since:
- 2.0
- See Also:
IInformationControl
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classAbstractInformationControlManager.AnchorConstitutes entities to enumerate anchors for the layout of the information control.static interfaceAbstractInformationControlManager.IInformationControlCloserInterface of an information control closer.
-
Field Summary
Fields Modifier and Type Field Description static AbstractInformationControlManager.AnchorANCHOR_BOTTOMAnchor representing the bottom of the information areastatic AbstractInformationControlManager.AnchorANCHOR_GLOBALAnchor representing the middle of the subject controlstatic AbstractInformationControlManager.AnchorANCHOR_LEFTAnchor representing the left side of the information areastatic AbstractInformationControlManager.AnchorANCHOR_RIGHTAnchor representing the right side of the information areastatic AbstractInformationControlManager.AnchorANCHOR_TOPAnchor representing the top of the information areaprotected static booleanDEBUGTells whether this class and its subclasses are in debug mode.protected booleanfDisposedIndicates that the information control has been disposed.protected IInformationControlfInformationControlThe information control.protected AbstractInformationControlManager.IInformationControlCloserfInformationControlCloserThe information control closer.protected IInformationControlCreatorfInformationControlCreatorThe information control creator.static StringSTORE_LOCATION_XDialog store constant for the location's x-coordinate.static StringSTORE_LOCATION_YDialog store constant for the location's y-coordinate.static StringSTORE_SIZE_HEIGHTDialog store constant for the size's height.static StringSTORE_SIZE_WIDTHDialog store constant for the size's width.
-
Constructor Summary
Constructors Modifier Constructor Description protectedAbstractInformationControlManager(IInformationControlCreator creator)Creates a new information control manager using the given information control creator.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected booleancanClearDataOnHide()Tells whether internal data can be cleared on hide.protected RectanglecomputeAvailableArea(Rectangle subjectArea, Rectangle bounds, AbstractInformationControlManager.Anchor anchor)Computes the area available for an information control given an anchor and the subject area withinbounds.protected abstract voidcomputeInformation()Computes the information to be displayed and the area in which the computed information is valid.protected PointcomputeInformationControlLocation(Rectangle subjectArea, Point controlSize)Computes the location of the information control depending on the subject area and the size of the information control.protected PointcomputeLocation(Rectangle subjectArea, Point controlSize, AbstractInformationControlManager.Anchor anchor)Computes the display location of the information control.protected PointcomputeSizeConstraints(Control subjectControl, IInformationControl informationControl)Computes the size constraints of the information control in points based on the default font of the given subject control as well as the size constraints in character width.protected PointcomputeSizeConstraints(Control subjectControl, Rectangle subjectArea, IInformationControl informationControl)Computes the size constraints of the information control in points.voiddispose()Disposes this manager and if necessary all dependent parts such as the information control.voiddisposeInformationControl()Disposes this manager's information control.protected voiddoShowInformation()Computes information to be displayed as well as the subject area and initiates that this information is presented in the information control.protected IInformationControlgetInformationControl()Returns the information control.org.eclipse.jface.internal.text.InternalAccessorgetInternalAccessor()Returns an adapter that gives access to internal methods.protected AbstractInformationControlManager.AnchorgetNextFallbackAnchor(AbstractInformationControlManager.Anchor anchor)Returns the next fallback anchor as specified by this manager's fallback anchor sequence.protected RectanglegetSubjectArea()Returns the actual subject area.protected ControlgetSubjectControl()Returns the subject control of this manager/information control.protected voidhandleInformationControlDisposed()Handles the disposal of the information control.protected voidhandleSubjectControlDisposed()Handles the disposal of the subject control.protected voidhideInformationControl()Hides the information control and stops the information control closer.voidinstall(Control subjectControl)Installs this manager on the given control.protected booleanisEnabled()Returns whether this manager is enabled or not.protected booleanisTakingFocusWhenVisible()Tells whether the control takes focus when visible.protected voidpresentInformation()Presents the information in the information control or hides the information control if no information should be presented.protected RectanglerestoreInformationControlBounds()Restores the information control's bounds.voidsetAnchor(AbstractInformationControlManager.Anchor anchor)Sets the anchor used for laying out the information control relative to the subject control.protected voidsetCloser(AbstractInformationControlManager.IInformationControlCloser closer)Sets the information control closer for this manager.protected voidsetCustomInformationControlCreator(IInformationControlCreator informationControlCreator)Sets the temporary custom control creator, overriding this manager's default information control creator.voidsetEnabled(boolean enabled)Deprecated.visibility will be changed to protectedvoidsetFallbackAnchors(AbstractInformationControlManager.Anchor[] fallbackAnchors)Sets the anchors fallback sequence used to layout the information control if the original anchor can not be used because the information control would not fit in the display client area.protected voidsetInformation(Object information, Rectangle subjectArea)Sets the parameters of the information to be displayed.protected voidsetInformation(String information, Rectangle subjectArea)Sets the parameters of the information to be displayed.voidsetMargins(int xMargin, int yMargin)Sets the horizontal and vertical margin to be used when laying out the information control relative to the subject control.voidsetRestoreInformationControlBounds(IDialogSettings dialogSettings, boolean restoreLocation, boolean restoreSize)Tells this information control manager to open the information control with the values contained in the given dialog settings and to store the control's last valid size in the given dialog settings.voidsetSizeConstraints(int widthInChar, int heightInChar, boolean enforceAsMinimalSize, boolean enforceAsMaximalSize)Sets the width- and height constraints of the information control.voidshowInformation()Computes information to be displayed as well as the subject area and initiates that this information is presented in the information control.protected voidshowInformationControl(Rectangle subjectArea)Shows the information control and starts the information control closer.protected voidstoreInformationControlBounds()Stores the information control's bounds.voidtakesFocusWhenVisible(boolean takesFocus)Tells the manager whether it should set the focus to the information control when made visible.protected booleanupdateLocation(Point location, Point size, Rectangle displayArea, AbstractInformationControlManager.Anchor anchor)Checks whether a control of the given size at the given location would be completely visible in the given display area when laid out by using the given anchor.
-
-
-
Field Detail
-
ANCHOR_TOP
public static final AbstractInformationControlManager.Anchor ANCHOR_TOP
Anchor representing the top of the information area
-
ANCHOR_BOTTOM
public static final AbstractInformationControlManager.Anchor ANCHOR_BOTTOM
Anchor representing the bottom of the information area
-
ANCHOR_LEFT
public static final AbstractInformationControlManager.Anchor ANCHOR_LEFT
Anchor representing the left side of the information area
-
ANCHOR_RIGHT
public static final AbstractInformationControlManager.Anchor ANCHOR_RIGHT
Anchor representing the right side of the information area
-
ANCHOR_GLOBAL
public static final AbstractInformationControlManager.Anchor ANCHOR_GLOBAL
Anchor representing the middle of the subject control- Since:
- 2.1
-
STORE_LOCATION_X
public static final String STORE_LOCATION_X
Dialog store constant for the location's x-coordinate.- Since:
- 3.0
- See Also:
- Constant Field Values
-
STORE_LOCATION_Y
public static final String STORE_LOCATION_Y
Dialog store constant for the location's y-coordinate.- Since:
- 3.0
- See Also:
- Constant Field Values
-
STORE_SIZE_WIDTH
public static final String STORE_SIZE_WIDTH
Dialog store constant for the size's width.- Since:
- 3.0
- See Also:
- Constant Field Values
-
STORE_SIZE_HEIGHT
public static final String STORE_SIZE_HEIGHT
Dialog store constant for the size's height.- Since:
- 3.0
- See Also:
- Constant Field Values
-
DEBUG
protected static final boolean DEBUG
Tells whether this class and its subclasses are in debug mode.Subclasses may use this.
- Since:
- 3.4
-
fInformationControl
protected IInformationControl fInformationControl
The information control.This field should not be referenced by subclasses. It is
protectedfor API compatibility reasons.
-
fInformationControlCreator
protected IInformationControlCreator fInformationControlCreator
The information control creator.This field should not be referenced by subclasses. It is
protectedfor API compatibility reasons.
-
fInformationControlCloser
protected AbstractInformationControlManager.IInformationControlCloser fInformationControlCloser
The information control closer.This field should not be referenced by subclasses. It is
protectedfor API compatibility reasons.
-
fDisposed
protected boolean fDisposed
Indicates that the information control has been disposed.This field should not be referenced by subclasses. It is
protectedfor API compatibility reasons.
-
-
Constructor Detail
-
AbstractInformationControlManager
protected AbstractInformationControlManager(IInformationControlCreator creator)
Creates a new information control manager using the given information control creator. By default the following configuration is given:- enabled == false
- horizontal margin == 5 points
- vertical margin == 5 points
- width constraint == 60 characters
- height constraint == 6 characters
- enforce constraints as minimal size == false
- enforce constraints as maximal size == false
- layout anchor == ANCHOR_BOTTOM
- fall back anchors == { ANCHOR_TOP, ANCHOR_BOTTOM, ANCHOR_LEFT, ANCHOR_RIGHT, ANCHOR_GLOBAL }
- takes focus when visible == false
- Parameters:
creator- the information control creator
-
-
Method Detail
-
computeInformation
protected abstract void computeInformation()
Computes the information to be displayed and the area in which the computed information is valid. Implementation of this method must finish their computation by setting the computation results usingsetInformation.
-
setInformation
protected final void setInformation(String information, Rectangle subjectArea)
Sets the parameters of the information to be displayed. These are the information itself and the area for which the given information is valid. This so called subject area is a graphical region of the information control's subject control. This method callspresentInformation()to trigger the presentation of the computed information.- Parameters:
information- the information, ornullif none is availablesubjectArea- the subject area, ornullif none is available
-
setInformation
protected final void setInformation(Object information, Rectangle subjectArea)
Sets the parameters of the information to be displayed. These are the information itself and the area for which the given information is valid. This so called subject area is a graphical region of the information control's subject control. This method callspresentInformation()to trigger the presentation of the computed information.- Parameters:
information- the information, ornullif none is availablesubjectArea- the subject area, ornullif none is available- Since:
- 2.1
-
setCloser
protected void setCloser(AbstractInformationControlManager.IInformationControlCloser closer)
Sets the information control closer for this manager.- Parameters:
closer- the information control closer for this manager
-
setMargins
public void setMargins(int xMargin, int yMargin)Sets the horizontal and vertical margin to be used when laying out the information control relative to the subject control.- Parameters:
xMargin- the x-marginyMargin- the y-Margin
-
setSizeConstraints
public void setSizeConstraints(int widthInChar, int heightInChar, boolean enforceAsMinimalSize, boolean enforceAsMaximalSize)Sets the width- and height constraints of the information control.- Parameters:
widthInChar- the width constraint in number of charactersheightInChar- the height constrain in number of charactersenforceAsMinimalSize- indicates whether the constraints describe the minimal allowed size of the controlenforceAsMaximalSize- indicates whether the constraints describe the maximal allowed size of the control
-
setRestoreInformationControlBounds
public void setRestoreInformationControlBounds(IDialogSettings dialogSettings, boolean restoreLocation, boolean restoreSize)
Tells this information control manager to open the information control with the values contained in the given dialog settings and to store the control's last valid size in the given dialog settings.Note: This API is only valid if the information control implements
IInformationControlExtension3. Not following this restriction will later result in anUnsupportedOperationException.The constants used to store the values are:
- Parameters:
dialogSettings- the dialog settingsrestoreLocation-trueiff the location is must be (re-)storedrestoreSize-trueiff the size is (re-)stored- Since:
- 3.0
-
setAnchor
public void setAnchor(AbstractInformationControlManager.Anchor anchor)
Sets the anchor used for laying out the information control relative to the subject control. E.g, usingANCHOR_TOPindicates that the information control is position above the area for which the information to be displayed is valid.- Parameters:
anchor- the layout anchor
-
setFallbackAnchors
public void setFallbackAnchors(AbstractInformationControlManager.Anchor[] fallbackAnchors)
Sets the anchors fallback sequence used to layout the information control if the original anchor can not be used because the information control would not fit in the display client area.The fallback anchor for a given anchor is the one that comes directly after the given anchor or is the first one in the sequence if the given anchor is the last one in the sequence.
Note: This sequence is ignored if the original anchor is not contained in this list.
- Parameters:
fallbackAnchors- the array with the anchor fallback sequence- See Also:
setAnchor(AbstractInformationControlManager.Anchor)
-
setCustomInformationControlCreator
protected void setCustomInformationControlCreator(IInformationControlCreator informationControlCreator)
Sets the temporary custom control creator, overriding this manager's default information control creator.- Parameters:
informationControlCreator- the creator, possiblynull- Since:
- 3.0
-
takesFocusWhenVisible
public void takesFocusWhenVisible(boolean takesFocus)
Tells the manager whether it should set the focus to the information control when made visible.- Parameters:
takesFocus-trueif information control should take focus when made visible
-
isTakingFocusWhenVisible
protected boolean isTakingFocusWhenVisible()
Tells whether the control takes focus when visible.- Returns:
trueif the control takes focus when visible,falseotherwise- Since:
- 3.7
-
handleSubjectControlDisposed
protected void handleSubjectControlDisposed()
Handles the disposal of the subject control. By default, the information control is disposed by callingdisposeInformationControl. Subclasses may extend this method.
-
install
public void install(Control subjectControl)
Installs this manager on the given control. The control is now taking the role of the subject control. This implementation sets the control also as the information control closer's subject control and automatically enables this manager.- Parameters:
subjectControl- the subject control
-
getSubjectControl
protected Control getSubjectControl()
Returns the subject control of this manager/information control.- Returns:
- the subject control
-
getSubjectArea
protected Rectangle getSubjectArea()
Returns the actual subject area.- Returns:
- the actual subject area
-
setEnabled
@Deprecated public void setEnabled(boolean enabled)
Deprecated.visibility will be changed to protectedSets the enable state of this manager.- Parameters:
enabled- the enable state
-
isEnabled
protected boolean isEnabled()
Returns whether this manager is enabled or not.- Returns:
trueif this manager is enabled otherwisefalse
-
computeSizeConstraints
protected Point computeSizeConstraints(Control subjectControl, IInformationControl informationControl)
Computes the size constraints of the information control in points based on the default font of the given subject control as well as the size constraints in character width.- Parameters:
subjectControl- the subject controlinformationControl- the information control whose size constraints are computed- Returns:
- the computed size constraints in points
-
computeSizeConstraints
protected Point computeSizeConstraints(Control subjectControl, Rectangle subjectArea, IInformationControl informationControl)
Computes the size constraints of the information control in points.- Parameters:
subjectControl- the subject controlsubjectArea- the subject areainformationControl- the information control whose size constraints are computed- Returns:
- the computed size constraints in points
- Since:
- 3.0
-
handleInformationControlDisposed
protected void handleInformationControlDisposed()
Handles the disposal of the information control. By default, the information control closer is stopped.
-
getInformationControl
protected IInformationControl getInformationControl()
Returns the information control. If the information control has not been created yet, it is automatically created.- Returns:
- the information control
-
computeLocation
protected Point computeLocation(Rectangle subjectArea, Point controlSize, AbstractInformationControlManager.Anchor anchor)
Computes the display location of the information control. The location is computed considering the given subject area, the anchor at the subject area, and the size of the information control. This method does not care about whether the information control would be completely visible when placed at the result location.- Parameters:
subjectArea- the subject areacontrolSize- the size of the information controlanchor- the anchor at the subject area- Returns:
- the display location of the information control
-
computeAvailableArea
protected Rectangle computeAvailableArea(Rectangle subjectArea, Rectangle bounds, AbstractInformationControlManager.Anchor anchor)
Computes the area available for an information control given an anchor and the subject area withinbounds.- Parameters:
subjectArea- the subject areabounds- the boundsanchor- the anchor at the subject area- Returns:
- the area available at the given anchor relative to the subject area, confined to the monitor's client area
- Since:
- 3.3
-
updateLocation
protected boolean updateLocation(Point location, Point size, Rectangle displayArea, AbstractInformationControlManager.Anchor anchor)
Checks whether a control of the given size at the given location would be completely visible in the given display area when laid out by using the given anchor. If not, this method tries to shift the control orthogonal to the direction given by the anchor to make it visible. If possible it updates the location.This method returns
trueif the potentially updated position results in a completely visible control, orfalseotherwise.- Parameters:
location- the location of the controlsize- the size of the controldisplayArea- the display area in which the control should be visibleanchor- anchor for lying out the control- Returns:
trueif the updated location is useful
-
getNextFallbackAnchor
protected AbstractInformationControlManager.Anchor getNextFallbackAnchor(AbstractInformationControlManager.Anchor anchor)
Returns the next fallback anchor as specified by this manager's fallback anchor sequence.The fallback anchor for the given anchor is the one that comes directly after the given anchor or is the first one in the sequence if the given anchor is the last one in the sequence.
Note: It is the callers responsibility to prevent an endless loop i.e. to test whether a given anchor has already been used once. then
- Parameters:
anchor- the current anchor- Returns:
- the next fallback anchor or
nullif no fallback anchor is available
-
computeInformationControlLocation
protected Point computeInformationControlLocation(Rectangle subjectArea, Point controlSize)
Computes the location of the information control depending on the subject area and the size of the information control. This method attempts to find a location at which the information control lies completely in the display's client area while honoring the manager's default anchor. If this isn't possible using the default anchor, the fallback anchors are tried out.- Parameters:
subjectArea- the information areacontrolSize- the size of the information control- Returns:
- the computed location of the information control
-
showInformation
public void showInformation()
Computes information to be displayed as well as the subject area and initiates that this information is presented in the information control. This happens only if this controller is enabled.
-
doShowInformation
protected void doShowInformation()
Computes information to be displayed as well as the subject area and initiates that this information is presented in the information control.
-
presentInformation
protected void presentInformation()
Presents the information in the information control or hides the information control if no information should be presented. The information has previously been set usingsetInformation.This method should only be called from overriding methods or from
setInformation.
-
hideInformationControl
protected void hideInformationControl()
Hides the information control and stops the information control closer.
-
canClearDataOnHide
protected boolean canClearDataOnHide()
Tells whether internal data can be cleared on hide.- Returns:
trueif data can be cleared on hide- Since:
- 3.6
- See Also:
hideInformationControl()
-
showInformationControl
protected void showInformationControl(Rectangle subjectArea)
Shows the information control and starts the information control closer. This method may not be called by clients.- Parameters:
subjectArea- the information area
-
disposeInformationControl
public void disposeInformationControl()
Disposes this manager's information control.
-
dispose
public void dispose()
Disposes this manager and if necessary all dependent parts such as the information control. For symmetry it first disables this manager.
-
storeInformationControlBounds
protected void storeInformationControlBounds()
Stores the information control's bounds.- Since:
- 3.0
-
restoreInformationControlBounds
protected Rectangle restoreInformationControlBounds()
Restores the information control's bounds.- Returns:
- the stored bounds
- Since:
- 3.0
-
getInternalAccessor
public org.eclipse.jface.internal.text.InternalAccessor getInternalAccessor()
Returns an adapter that gives access to internal methods.Note: This method is not intended to be referenced or overridden by clients.
- Returns:
- the replaceable information control accessor
- Since:
- 3.4
- Restriction:
- This method is not intended to be referenced by clients.
- Restriction:
- This method is not intended to be re-implemented or extended by clients.
-
-