WindowResizeHook callback interface This interface describes a callback for the WindowResizeHook service, used to receive notifications of window resizing events. More...
import"IWindowResizeHook.idl";
Public Member Functions | |
| void | onResize (in PRInt32 x, in PRInt32 y, in PRInt32 w, in PRInt32 h) |
| Window resize callback This method is called by the WindowResizeHook service to notify the callback object that the window being monitored has been resized. More... | |
WindowResizeHook callback interface This interface describes a callback for the WindowResizeHook service, used to receive notifications of window resizing events.
Definition at line 43 of file IWindowResizeHook.idl.
| void sbIWindowResizeHookCallback::onResize | ( | in PRInt32 | x, |
| in PRInt32 | y, | ||
| in PRInt32 | w, | ||
| in PRInt32 | h | ||
| ) |
Window resize callback This method is called by the WindowResizeHook service to notify the callback object that the window being monitored has been resized.
| x | The new x position of the window. |
| y | The new y position of the window. |
| w | The new width of the window. |
| h | The new height of the window. |