Class MarkupSelectionAction
- java.lang.Object
-
- org.faceless.pdf2.viewer2.ViewerFeature
-
- org.faceless.pdf2.viewer2.feature.MarkupSelectionAction
-
- All Implemented Interfaces:
DocumentPanelListener
,AreaSelectionAction
,TextSelectionAction
- Direct Known Subclasses:
HighlightSelectionAction
,StrikeOutSelectionAction
,UnderlineSelectionAction
public class MarkupSelectionAction extends ViewerFeature implements TextSelectionAction, AreaSelectionAction, DocumentPanelListener
ATextSelectionAction
that will create anAnnotationMarkup
of the specified type on the selected text.The following initialization parameters can be specified to configure this feature.color A 32-bit color value, eg 0x80FF0000 (for translucent red) type The type of Markup - Highlight, Underline, StrikeOut or Squiggly description The description of this markup This code is copyright the Big Faceless Organization. You're welcome to use, modify and distribute it in any form in your own projects, provided those projects continue to make use of the Big Faceless PDF library.
- Since:
- 2.11.7
-
-
Constructor Summary
Constructors Constructor Description MarkupSelectionAction(String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
documentUpdated(DocumentPanelEvent event)
Called when anDocumentPanelEvent
is raisedString
getDescription()
Get the name of this Action, to appear in the popup menu.void
initialize(PDFViewer viewer)
Called when the feature is first added to a viewerboolean
isEnabled()
Indicates whether this action is enabled.void
selectAction(DocumentPanel docpanel, TextSelection.RangeList list)
Run the action.void
selectArea(PagePanel pagepanel, Rectangle2D area)
Invoked when the area is selected.void
setColor(Color color)
void
setDescription(String desc)
Set the description that's returned bygetDescription()
void
setType(String type)
Set the type ofAnnotationMarkup
.-
Methods inherited from class org.faceless.pdf2.viewer2.ViewerFeature
getAllEnabledFeatures, getAllFeatures, getCustomJavaScript, getFeatureProperty, getFeatureURLProperty, getName, isEnabledByDefault, setFeatureName, teardown, toString
-
-
-
-
Constructor Detail
-
MarkupSelectionAction
public MarkupSelectionAction(String name)
-
-
Method Detail
-
setDescription
public void setDescription(String desc)
Set the description that's returned bygetDescription()
-
getDescription
public String getDescription()
Description copied from interface:TextSelectionAction
Get the name of this Action, to appear in the popup menu.- Specified by:
getDescription
in interfaceAreaSelectionAction
- Specified by:
getDescription
in interfaceTextSelectionAction
-
setType
public void setType(String type)
Set the type ofAnnotationMarkup
.- Parameters:
type
- one of "Highlight", "Underline", "StrikeOut" or "Squiggly"
-
setColor
public void setColor(Color color)
-
isEnabled
public boolean isEnabled()
Description copied from interface:TextSelectionAction
Indicates whether this action is enabled.- Specified by:
isEnabled
in interfaceAreaSelectionAction
- Specified by:
isEnabled
in interfaceTextSelectionAction
-
initialize
public void initialize(PDFViewer viewer)
Description copied from class:ViewerFeature
Called when the feature is first added to a viewer- Overrides:
initialize
in classViewerFeature
-
documentUpdated
public void documentUpdated(DocumentPanelEvent event)
Description copied from interface:DocumentPanelListener
Called when anDocumentPanelEvent
is raised- Specified by:
documentUpdated
in interfaceDocumentPanelListener
-
selectAction
public void selectAction(DocumentPanel docpanel, TextSelection.RangeList list)
Description copied from interface:TextSelectionAction
Run the action.- Specified by:
selectAction
in interfaceTextSelectionAction
- Parameters:
docpanel
- the DocumentPanel this action is being run on.list
- theTextSelection.RangeList
containing the list of selected text items, which may be from multiple pages
-
selectArea
public void selectArea(PagePanel pagepanel, Rectangle2D area)
Description copied from interface:AreaSelectionAction
Invoked when the area is selected.- Specified by:
selectArea
in interfaceAreaSelectionAction
- Parameters:
pagepanel
- the PagePanel the area was selected onarea
- the selected area
-
-