Uses of Class
org.apache.pivot.wtk.Window

Packages that use Window
org.apache.pivot.wtk Contains classes that define the structure and behavior of WTK user interface components. 
org.apache.pivot.wtk.content Contains classes representing component data, such as list items or table rows. 
org.apache.pivot.wtk.skin Contains common skins and abstract base classes for theme-specific skins. 
org.apache.pivot.wtk.skin.terra Defines skin classes for the "Terra" theme. 
 

Uses of Window in org.apache.pivot.wtk
 

Subclasses of Window in org.apache.pivot.wtk
 class Alert
          Class representing an "alert", a dialog commonly used to facilitate simple user interaction.
 class Dialog
          Window class whose primary purpose is to facilitate interaction between an application and a user.
 class FileBrowserSheet
          File browser sheet.
 class Frame
          Container class representing a decorated frame window.
 class MenuPopup
          Popup class that displays a cascading menu.
 class Palette
          Window representing a "tool palette".
 class Prompt
          Class representing a "prompt", a sheet commonly used to facilitate simple user interaction.
 class Sheet
          Window class representing a "sheet".
 class SuggestionPopup
          Popup that presents a list of text suggestions to the user.
 class Tooltip
          Window representing a "tooltip".
 

Methods in org.apache.pivot.wtk that return Window
static Window Window.getActiveWindow()
          Returns the currently active window.
 Window CalendarButton.Skin.getCalendarPopup()
           
 Window ColorChooserButton.Skin.getColorChooserPopup()
           
 Window ColorChooserButton.getListPopup()
           
 Window MenuButton.getListPopup()
           
 Window ListButton.getListPopup()
           
 Window CalendarButton.getListPopup()
           
 Window ListButton.Skin.getListViewPopup()
           
 Window MenuButton.Skin.getMenuPopup()
           
 Window Window.getOwnedWindow(int index)
           
 Window Window.getOwner()
           
 Window Window.getRootOwner()
           
 Window Window.ActionMapping.getWindow()
           
 Window Component.getWindow()
           
 

Methods in org.apache.pivot.wtk with parameters of type Window
 void WindowActionMappingListener.actionMappingAdded(Window window)
          Called when an action mapping has been added to a window.
 void WindowActionMappingListener.actionMappingsRemoved(Window window, int index, Sequence<Window.ActionMapping> removed)
          Called when action mappings have been removed from a window.
 void WindowListener.activeChanged(Window window, Window obverseWindow)
          Called when a window's active state has changed.
 void WindowListener.Adapter.activeChanged(Window window, Window obverseWindow)
           
 void WindowClassListener.activeWindowChanged(Window previousActiveWindow)
          Called when the active window has changed.
static void Alert.alert(MessageType messageType, String message, Component body, Window owner)
           
static void Alert.alert(MessageType messageType, String message, Component body, Window owner, DialogCloseListener dialogCloseListener)
           
static void Alert.alert(MessageType messageType, String message, String title, Component body, Window owner, DialogCloseListener dialogCloseListener)
           
static void Alert.alert(MessageType messageType, String message, Window owner)
           
static void Alert.alert(MessageType messageType, String message, Window owner, DialogCloseListener dialogCloseListener)
           
static void Alert.alert(String message, Window owner)
           
 void WindowListener.contentChanged(Window window, Component previousContent)
          Called when a window's content component has changed.
 void WindowListener.Adapter.contentChanged(Window window, Component previousContent)
           
 void WindowListener.iconAdded(Window window, Image addedIcon)
          Called when a window's icon has changed.
 void WindowListener.Adapter.iconAdded(Window window, Image addedIcon)
           
 void WindowListener.iconInserted(Window window, Image addedIcon, int index)
          Called when a window's icon has changed.
 void WindowListener.Adapter.iconInserted(Window window, Image addedIcon, int index)
           
 void WindowListener.iconsRemoved(Window window, int index, Sequence<Image> removed)
          Called when a window's icon has changed.
 void WindowListener.Adapter.iconsRemoved(Window window, int index, Sequence<Image> removed)
           
 boolean Window.isOwner(Window window)
          Tests whether this window is an owning ancestor of a given window.
 void WindowListener.maximizedChanged(Window window)
          Called when a window's maximized state has changed.
 void WindowListener.Adapter.maximizedChanged(Window window)
           
 void SuggestionPopup.open(Display display, Window owner)
           
 void Palette.open(Display display, Window owner)
           
 void Sheet.open(Display display, Window owner)
           
 void Window.open(Display display, Window ownerArgument)
          Opens the window.
 void Dialog.open(Display display, Window owner)
          Opens the dialog.
 void Dialog.open(Display display, Window owner, DialogCloseListener dialogCloseListenerArgument)
          Opens the dialog.
 void MenuPopup.open(Display display, Window owner, int x, int y)
           
 void Sheet.open(Display display, Window owner, SheetCloseListener sheetCloseListenerArgument)
           
 void Window.open(Window ownerArgument)
          Opens the window.
 void Dialog.open(Window owner, DialogCloseListener dialogCloseListenerArgument)
          Opens the dialog.
 void MenuPopup.open(Window owner, int x, int y)
           
 void MenuPopup.open(Window owner, Point location)
           
 void Sheet.open(Window owner, SheetCloseListener sheetCloseListenerArgument)
           
 Vote WindowStateListener.previewWindowClose(Window window)
          Called to preview a window close event.
 Vote WindowStateListener.Adapter.previewWindowClose(Window window)
           
 Vote WindowStateListener.previewWindowOpen(Window window)
          Called to preview a window open event.
 Vote WindowStateListener.Adapter.previewWindowOpen(Window window)
           
static void Prompt.prompt(MessageType messageType, String message, Component body, Window owner)
           
static void Prompt.prompt(MessageType messageType, String message, Component body, Window owner, SheetCloseListener sheetCloseListener)
           
static void Prompt.prompt(MessageType messageType, String message, Window owner)
           
static void Prompt.prompt(MessageType messageType, String message, Window owner, SheetCloseListener sheetCloseListener)
           
static void Prompt.prompt(String message, Window owner)
           
protected  void Window.setActive(boolean active, Window obverseWindow)
          Called to notify a window that its active state has changed.
static void DesktopApplicationContext.sizeHostToFit(Window window)
          Sizes the window's native host frame to match its preferred size.
 void WindowListener.titleChanged(Window window, String previousTitle)
          Called when a window's title has changed.
 void WindowListener.Adapter.titleChanged(Window window, String previousTitle)
           
 void WindowStateListener.windowClosed(Window window, Display display, Window owner)
          Called when a window has closed.
 void WindowStateListener.Adapter.windowClosed(Window window, Display display, Window owner)
           
 void WindowStateListener.windowCloseVetoed(Window window, Vote reason)
          Called when a window close event has been vetoed.
 void WindowStateListener.Adapter.windowCloseVetoed(Window window, Vote reason)
           
 void WindowStateListener.windowOpened(Window window)
          Called when a window has opened.
 void WindowStateListener.Adapter.windowOpened(Window window)
           
 void WindowStateListener.windowOpenVetoed(Window window, Vote reason)
          Called when a window open event has been vetoed.
 void WindowStateListener.Adapter.windowOpenVetoed(Window window, Vote reason)
           
 

Uses of Window in org.apache.pivot.wtk.content
 

Subclasses of Window in org.apache.pivot.wtk.content
 class ListViewItemEditor
          Default list view item editor.
 class TableViewRowEditor
          Default table view row editor.
 class TreeViewNodeEditor
          Default tree view node editor.
 

Methods in org.apache.pivot.wtk.content with parameters of type Window
 void ListViewItemEditor.open(Display display, Window owner)
           
 void TableViewRowEditor.open(Display display, Window owner)
           
 void TreeViewNodeEditor.open(Display display, Window owner)
           
 

Uses of Window in org.apache.pivot.wtk.skin
 

Subclasses of Window in org.apache.pivot.wtk.skin
 class ColorChooserButtonSkin.ColorChooserPopup
          A focusable window class used by color chooser button skins.
 

Fields in org.apache.pivot.wtk.skin declared as Window
protected  Window CalendarButtonSkin.calendarPopup
           
protected  Window ListButtonSkin.listViewPopup
           
 

Methods in org.apache.pivot.wtk.skin that return Window
 Window CalendarButtonSkin.getCalendarPopup()
           
 Window ColorChooserButtonSkin.getColorChooserPopup()
           
 Window ListButtonSkin.getListViewPopup()
           
 Window MenuButtonSkin.getMenuPopup()
           
 

Methods in org.apache.pivot.wtk.skin with parameters of type Window
 void WindowSkin.activeChanged(Window window, Window obverseWindow)
           
 void WindowSkin.contentChanged(Window window, Component previousContent)
           
 void WindowSkin.iconAdded(Window window, Image addedIcon)
           
 void WindowSkin.iconInserted(Window window, Image addedIcon, int index)
           
 void WindowSkin.iconsRemoved(Window window, int index, Sequence<Image> removed)
           
 void WindowSkin.maximizedChanged(Window window)
           
 Vote WindowSkin.previewWindowClose(Window window)
           
 Vote WindowSkin.previewWindowOpen(Window window)
           
 void WindowSkin.titleChanged(Window window, String previousTitle)
           
 void WindowSkin.windowClosed(Window window, Display display, Window owner)
           
 void WindowSkin.windowCloseVetoed(Window window, Vote reason)
           
 void WindowSkin.windowOpened(Window window)
           
 void WindowSkin.windowOpenVetoed(Window window, Vote reason)
           
 

Uses of Window in org.apache.pivot.wtk.skin.terra
 

Methods in org.apache.pivot.wtk.skin.terra with parameters of type Window
 void TerraFrameSkin.activeChanged(Window window, Window obverseWindow)
           
 void TerraFrameSkin.iconAdded(Window window, Image addedIcon)
           
 void TerraFrameSkin.iconsRemoved(Window window, int index, Sequence<Image> removed)
           
 void TerraFrameSkin.maximizedChanged(Window window)
           
 Vote TerraTooltipSkin.previewWindowClose(Window window)
           
 Vote TerraAlertSkin.previewWindowOpen(Window window)
           
 Vote TerraPromptSkin.previewWindowOpen(Window window)
           
 void TerraPaletteSkin.titleChanged(Window window, String previousTitle)
           
 void TerraFrameSkin.titleChanged(Window window, String previousTitle)
           
 void TerraPaletteSkin.windowClosed(Window window, Display display, Window owner)
           
 void TerraTooltipSkin.windowClosed(Window window, Display display, Window owner)
           
 void TerraDialogSkin.windowClosed(Window window, Display display, Window owner)
           
 void TerraSheetSkin.windowClosed(Window window, Display display, Window owner)
           
 void TerraMenuPopupSkin.windowClosed(Window window, Display display, Window owner)
           
 void TerraSuggestionPopupSkin.windowClosed(Window window, Display display, Window owner)
           
 void TerraTooltipSkin.windowCloseVetoed(Window window, Vote reason)
           
 void TerraSuggestionPopupSkin.windowCloseVetoed(Window window, Vote reason)
           
 void TerraAlertSkin.windowOpened(Window window)
           
 void TerraPromptSkin.windowOpened(Window window)
           
 void TerraPaletteSkin.windowOpened(Window window)
           
 void TerraFileBrowserSheetSkin.windowOpened(Window window)
           
 void TerraTooltipSkin.windowOpened(Window window)
           
 void TerraDialogSkin.windowOpened(Window window)
           
 void TerraSheetSkin.windowOpened(Window window)
           
 void TerraMenuPopupSkin.windowOpened(Window window)
           
 void TerraSuggestionPopupSkin.windowOpened(Window window)