Package docking
Interface DockWinListener
-
- All Known Implementing Classes:
FrontEndTool,GhidraTool,ModalPluginTool,PluginTool,StandAlonePluginTool,TestFrontEndTool,TestTool
public interface DockWinListenerListener interface for the object to be notified when the user closes the docking windows manager or initiates a popup menu.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Notification triggered when the user presses the "x" button in the main tool frame.java.util.List<DockingActionIf>getPopupActions(ActionContext context)Provides notification when a popup menu is about to be displayed and permits a list of temporary actions to be returned.
-
-
-
Method Detail
-
close
void close()
Notification triggered when the user presses the "x" button in the main tool frame. Typical reaction is to dispose the dockingWindowManger and/or exit.
-
getPopupActions
java.util.List<DockingActionIf> getPopupActions(ActionContext context)
Provides notification when a popup menu is about to be displayed and permits a list of temporary actions to be returned. Only those actions which have a suitable popup menu path will be considered.- Parameters:
context- the ActionContext- Returns:
- list of temporary actions.
-
-