photonui.Window Class
Window.
wEvents:
- close-button-clicked:
- description: called when the close button was clicked.
- callback: function(widget)
Constructor
photonui.Window
()
Item Index
Methods
- __internalDragging
- __onContextMenu
- __onLocaleChanged
- _bindEvent
- _buildHtml
- _callCallbacks
- _closeButtonClicked
- _moveDragEnd
- _moveDragging
- _moveDragStart
- _moveTouchEnd
- _moveTouchEnd
- _moveTouchMove
- _moveTouchStart
- _registerWEvents
- _unbindEvent
- _updateProperties deprecated
- _updateWindowList
- _visibilityChanged
- addClass
- center
- destroy
- hide
- moveToBack
- moveToFront
- registerCallback
- removeCallback
- removeChild
- removeClass
- show
- unparent
Properties
- __callbacks
- __events
- __html
- absolutePosition
- child
- childName
- closeButtonVisible
- containerNode
- contextMenu
- contextMenuName
- data
- fullscreen
- height
- horizontalChildExpansion
- html
- layoutOptions
- maxHeight
- maxWidth
- minHeight
- minWidth
- modal
- movable
- name
- offsetHeight
- offsetWidth
- padding
- parent
- parentName
- position
- title
- tooltip
- verticalChildExpansion
- visible
- width
- x
- y
Methods
__internalDragging
(
private
-
offsetX
-
offsetY
-
pageX
-
pageY
Move the window.
__onContextMenu
(
private
-
event
Called when the context menu should be displayed.
Parameters:
-
event
Object
__onLocaleChanged
()
private
Called when the locale is changed.
_bindEvent
(
private
-
id
-
element
-
evName
-
callback
-
[options]
Javascript event binding (for internal use).
Parameters:
_buildHtml
()
private
Build the widget HTML.
_callCallbacks
(
private
-
wEvent
-
params
Call all callbacks for the given wEvent.
NOTE: the first argument passed to the callback is the current widget.
NOTEĀ²: if the thisArg of the callback is null, this will be binded to the current widget.
_moveDragging
(
private
-
offsetX
-
offsetY
-
event
Move the window.
_moveTouchEnd
(
private
-
event
Gets the first touch event and normalizes pageX/Y and offsetX/Y properties.
Parameters:
-
event
Object
_moveTouchMove
(
private
-
offsetX
-
offsetY
-
event
Move the window.
_updateProperties
(
deprecated
private
-
properties
Force the update of the given properties.
This method is deprecated.
One should use '@photonui-update' abitbol's annotation on concerned properties.
Parameters:
-
properties
ArrayThe properties to update.
_updateWindowList
()
private
Update all the windows.
_visibilityChanged
(
private
-
visibility
Called when the visibility changes.
Parameters:
-
visibility
BooleanCurrent visibility state (otptional, defaut=this.visible)
addClass
(
-
className
Add a class to the outer HTML element of the widget.
Parameters:
-
className
StringThe class to add.
center
()
Center the window.
destroy
()
Destroy the widget.
hide
()
Hide the widget (equivalent to widget.visible = false).
moveToBack
()
Bring the window to the back.
moveToFront
()
Bring the window to front.
registerCallback
(
-
id
-
wEvent
-
callback
-
thisArg
Register a callback for any PhotonUI/Widget event (called wEvent).
Callback signature:
function (Object(Base/Widget) [, arg1 [, arg2 [, ...]]])
removeChild
(
-
widget
Remove the given child.
Parameters:
-
widget
photonui.WidgetThe widget to remove/
removeClass
(
-
className
Remove a class from the outer HTML element of the widget.
Parameters:
-
className
StringThe class to remove.
show
()
Display the widget (equivalent to widget.visible = true).
unparent
()
Detache the widget from its parent.
Properties
__events
Object
private
Object containing references javascript events binding (for widget
internal use).
closeButtonVisible
Boolean
default: true
Determine if the close button in the title bar is displayed or not.
contextMenuName
String
The name of the managed contextual menu (
photonui.PopupWindow().name
).
Default: null (= no context menu)