Class CaptureEditor

All Implemented Interfaces:
IActivationListener, IDraggingFix, IWorkbenchPartIZ, IPropertyEditorController, IPropUndoContext, ISaveableEditor, ITermEditor, ITerminalStateListener, IDisposedPart, IPropUndoRedo, IAdaptable, IExecutableExtension, ISelectionChangedListener, ISelectionProvider, IGotoMarker, IEditorPart, INavigationLocationProvider, IPersistable, IPersistableEditor, ISaveablePart, ISaveablesSource, IWorkbenchPart, IWorkbenchPart2, IWorkbenchPart3, IWorkbenchPartOrientation

public class CaptureEditor extends PropEditorPart implements ITerminalStateListener, ITermEditor, ISaveableEditor
The Screen Capture "Editor", but nothing to edit.
Author:
Christopher Mindus
  • Field Details

    • ID

      public static final String ID
      Editor Part ID "com.iizigo.term.capture.CaptureEditor".
    • isEditMode

      public boolean isEditMode
      Flag for edit mode of capture.
  • Constructor Details

    • CaptureEditor

      public CaptureEditor()
      The Eclipse constructor.
  • Method Details

    • proceedInit

      protected void proceedInit() throws PartInitException
      Continues the "init". This method can be overridden by editors that are not file property based such as the capture editor.
      Overrides:
      proceedInit in class PropEditorPart
      Throws:
      PartInitException
    • createEditorComposite

      protected void createEditorComposite(Composite parent)
      Creates the part.
      Specified by:
      createEditorComposite in class PropEditorPart
      Parameters:
      parent - The empty parent composite without initialized layout, with the widget background color.
    • saveStateImpl

      protected void saveStateImpl(IMemento memento)
      Saves the state.
      Overrides:
      saveStateImpl in class PropEditorPart
      Parameters:
      memento - The storage area for object's state.
    • dispose

      public void dispose()
      Disposes of the view part.
      Specified by:
      dispose in interface IWorkbenchPart
      Overrides:
      dispose in class PropEditorPart
    • onSetFocus

      public void onSetFocus()
      Sets focus to the terminal.
      Overrides:
      onSetFocus in class PropEditorPart
    • updateToolStates

      public void updateToolStates()
      Updates tool states.
      Specified by:
      updateToolStates in interface ITermEditor
    • onTerminalStateUpdate

      public void onTerminalStateUpdate(HostSession hostSession, TerminalWindow tw)
      Called when state probably needs update or check.
      Specified by:
      onTerminalStateUpdate in interface ITerminalStateListener
      Parameters:
      hostSession - The host session, may be null.
      tw - The TerminalWindow, may be null when hostSession is null, not otherwise.
    • onTerminalFieldChanged

      public void onTerminalFieldChanged(HostSession hostSession, TerminalWindow tw)
      Called when the screen needs updates due to field change.
      Specified by:
      onTerminalFieldChanged in interface ITerminalStateListener
      Parameters:
      hostSession - The host session, may be null.
      tw - The TerminalWindow, may be null when hostSession is null, not otherwise.
    • performPrint

      protected void performPrint()
      Prints the Editor.
      Specified by:
      performPrint in class PropEditorPart
    • selectionChangedEx

      protected void selectionChangedEx(SelectionChangedEvent event)
      Selection changes in the tree.
      Overrides:
      selectionChangedEx in class PropEditorPart
    • updateStatesEx

      protected void updateStatesEx()
      Called to update the states.
      Overrides:
      updateStatesEx in class PropEditorPart
    • doOpen

      public boolean doOpen(GProp<?>[] props)
      Opens the property by selecting it in focus.
      Overrides:
      doOpen in class PropEditorPart
    • doOpen

      public boolean doOpen(GProp<?> prop, int index, String childName)
      Opens the property by selecting it in focus. This method must be overridden.
      Overrides:
      doOpen in class PropEditorPart
      Parameters:
      prop - The property to focus.
      index - The index in a multi-property.
      childName - Child property name or null.
      Returns:
      true for success, false for failure.
    • getMarkingConstraints

      public Rectangle getMarkingConstraints()
      Gets the marking constraints.
      Specified by:
      getMarkingConstraints in interface ITermEditor
      Returns:
      null for none.
    • isHotSpotEnabled

      public boolean isHotSpotEnabled()
      Check for hotspot enabled.
      Specified by:
      isHotSpotEnabled in interface ITermEditor
    • isCursorPresent

      public boolean isCursorPresent()
      Cursor present (and blinking)?
      Specified by:
      isCursorPresent in interface ITermEditor
    • getTerminalComposite

      public TerminalComposite getTerminalComposite()
      Gets the terminal composite.
      Specified by:
      getTerminalComposite in interface ITermEditor
    • getViewer

      public TreeViewer getViewer()
      Gets the viewer.
      Specified by:
      getViewer in interface ITermEditor
    • getHostSession

      public HostSession getHostSession()
      Gets the HostSession.
      Specified by:
      getHostSession in interface ITermEditor
    • isTooltipTextShown

      public boolean isTooltipTextShown()
      If tool tips are shown.
      Specified by:
      isTooltipTextShown in interface ITermEditor
    • onDoubleClick

      public void onDoubleClick(int x, int y)
      Marks the host field.
      Specified by:
      onDoubleClick in interface ITermEditor
    • paint

      public void paint(Graphics2D g, int leftMargin, int topMargin, int cxFont, int cyFont, int cxFontReal, int cyFontReal, int cxScreen, int cyScreen, Rectangle clipRect)
      Paints the Graphics once the screen is drawn, before the cursor.
      Specified by:
      paint in interface ITermEditor
    • rebuildFields

      public void rebuildFields()
      Rebuilds the EEField array in the screen after property changes, and fix the underline character attribute.
    • isAdditionalDataDirty

      public boolean isAdditionalDataDirty()
      Checks the dirty state of additional data.
      Specified by:
      isAdditionalDataDirty in interface ISaveableEditor
    • saveAdditionalData

      public void saveAdditionalData(IProgressMonitor monitor) throws CoreException
      Saves the additional data.
      Specified by:
      saveAdditionalData in interface ISaveableEditor
      Parameters:
      monitor - The progress monitor.
      Throws:
      CoreException - For saving and I/O errors.
    • doSave

      public void doSave(IProgressMonitor monitor)
      Saves the contents of this part.

      If the save is successful, the part should fire a property changed event reflecting the new dirty state (PROP_DIRTY property). If the save is cancelled through user action, or for any other reason, the part should invoke setCancelled on the IProgressMonitor to inform the caller.

      Specified by:
      doSave in interface ISaveablePart
      Overrides:
      doSave in class PropEditorPart
    • makeDirty

      public void makeDirty()
      Makes the capture editor dirty.