IUIWindowComponent

A component must implement IUIWindowComponent to be considered as a window.

Un componente deve implementare IUIWindowComponent per essere considerato una finestra.

Summary
IUIWindowComponentA component must implement IUIWindowComponent to be considered as a window.
Functions
closeThis method is called when the window is asked to be closed.
setSizeThis method is called when the window is asked to be resized.
getPreferredSizeThis method is called when the default window size is requested.
getMinimumSizeThis method is called when the minimum window size is requested.

Functions

close

function close ( ):Void

This method is called when the window is asked to be closed.

A component must implement IUIWindowComponent to be considered as a window.

setSize

function setSize (newWidth: Number,
newHeight: Number):Void

This method is called when the window is asked to be resized.

Questo metodo viene richiamato quando viene richiesta la modifica delle dimensioni della finestra.

Parameters

newWidth{Number} new width / nuova larghezza
newHeight{Number} new height / nuova altezza

getPreferredSize

function getPreferredSize():Size

This method is called when the default window size is requested.

Questo metodo viene richiamato quando viene richiesta ls dimensione predefinita della finestra.

Returns

{Size} the default window size / la dimensione predefinita della finestra

See Also

<it.unipmn.it.Meeting.Utils.Size>

getMinimumSize

function getMinimumSize():Size

This method is called when the minimum window size is requested.

Questo metodo viene richiamato quando viene richiesta ls dimensione minima della finestra.

Returns

{Size} the minimum window size / la dimensione minima della finestra

See Also

<it.unipmn.di.Meeting.Utils.Size>

function close ( ):Void
This method is called when the window is asked to be closed.
function setSize (newWidth: Number,
newHeight: Number):Void
This method is called when the window is asked to be resized.
function getPreferredSize():Size
This method is called when the default window size is requested.
function getMinimumSize():Size
This method is called when the minimum window size is requested.