Fixed focus issue related to tabbed panes being first in the cycle root when using Ctrl-F6; Deleted EditWindow; Fixed editing/undo/redo in the ProgramTree

This commit is contained in:
dragonmacher 2024-05-31 17:38:04 -04:00
parent db608a1a13
commit a55824c26b
9 changed files with 136 additions and 430 deletions

View file

@ -1464,22 +1464,6 @@ public abstract class PluginTool extends AbstractDockingTool {
eventMgr.removeEventListener(className);
}
/**
* Display an text edit box on top of the specified component.
* @param defaultText initial text to be displayed in edit box
* @param comp component over which the edit box will be placed
* @param rect specifies the bounds of the edit box relative to the
* component. The height is ignored. The default text field height
* is used as the preferred height.
* @param listener when the edit is complete, this listener is notified
* with the new text. The edit box is dismissed prior to notifying
* the listener.
*/
public void showEditWindow(String defaultText, Component comp, Rectangle rect,
EditListener listener) {
winMgr.showEditWindow(defaultText, comp, rect, listener);
}
/**
* Cancel the current task in the tool.
*/