public interface WindowManagementCallback
An interface that describes the necessary methods needed for common window management. An application may need to centrally manage the process of opening and closing new windows, as well as requests to end the program. This interface facilitates that capability.
| Modifier and Type | Method and Description |
|---|---|
void |
bringAllWindowsToFront(SwingController frontMost) |
void |
bringWindowToFront(int index) |
void |
disposeWindow(SwingController controller,
javax.swing.JFrame viewer,
java.util.Properties properties) |
PropertiesManager |
getProperties() |
java.util.List |
getWindowDocumentOriginList(SwingController giveIndex) |
void |
minimiseAllWindows() |
void |
newWindow(java.lang.String path) |
void |
newWindow(java.net.URL url) |
void |
quit(SwingController controller,
javax.swing.JFrame viewer,
java.util.Properties properties) |
void newWindow(java.lang.String path)
void newWindow(java.net.URL url)
void disposeWindow(SwingController controller, javax.swing.JFrame viewer, java.util.Properties properties)
void minimiseAllWindows()
void bringAllWindowsToFront(SwingController frontMost)
void bringWindowToFront(int index)
java.util.List getWindowDocumentOriginList(SwingController giveIndex)
void quit(SwingController controller, javax.swing.JFrame viewer, java.util.Properties properties)
PropertiesManager getProperties()