com.jniwrapper.win32.ie.event
Interface BrowserWindowListener

All Known Implementing Classes:
BrowserWindowAdapter

public interface BrowserWindowListener

The listener interface for receiving browser window events.


Method Summary
 void onFullScreen(BrowserWindowEvent event)
          Invokes when the full-screen mode of the window is changed.
 void onMenuBar(BrowserWindowEvent event)
          Invokes when the menu bar should be shown or hidden.
 void onStatusBar(BrowserWindowEvent event)
          Invokes when the status bar should be shown or hidden.
 void onToolBar(BrowserWindowEvent event)
          Invokes when the tool bar should be shown or hidden.
 void onVisible(BrowserWindowEvent event)
          Invokes when the window should be shown or hidden.
 void onWindowResizable(BrowserWindowEvent event)
          The event is fired when a new window is opened through scripting, using the window.open method.
 void onWindowResize(BrowserWindowEvent event)
          Invokes when the window should changes its bounds.
 

Method Detail

onWindowResize

void onWindowResize(BrowserWindowEvent event)
Invokes when the window should changes its bounds.

The value that specifies the new bounds of the window is available through the BrowserWindowEvent.getWindowBounds method.


onWindowResizable

void onWindowResizable(BrowserWindowEvent event)
The event is fired when a new window is opened through scripting, using the window.open method. The return value of the BrowserWindowEvent.isWindowResizable method indicates whether the resizable feature was requested in the call to window.open.


onFullScreen

void onFullScreen(BrowserWindowEvent event)
Invokes when the full-screen mode of the window is changed.

The value that specifies whether the browser window is in full-screen mode is available through the BrowserWindowEvent.isFullScreen method.


onVisible

void onVisible(BrowserWindowEvent event)
Invokes when the window should be shown or hidden.

The return value of the BrowserWindowEvent.isVisible method indicates whether the window should be shown or hidden.


onToolBar

void onToolBar(BrowserWindowEvent event)
Invokes when the tool bar should be shown or hidden.

The return value of the BrowserWindowEvent.isToolBar method indicates whether the tool bar should be shown or hidden.


onMenuBar

void onMenuBar(BrowserWindowEvent event)
Invokes when the menu bar should be shown or hidden.

The return value of the BrowserWindowEvent.isMenuBar method indicates whether the menu bar should be shown or hidden.


onStatusBar

void onStatusBar(BrowserWindowEvent event)
Invokes when the status bar should be shown or hidden.

The return value of the BrowserWindowEvent.isStatusBar method indicates whether the status bar should be shown or hidden.