From 4792e81070aa2bed027720875e3c2ea7462f282b Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Tue, 27 Feb 2018 10:07:02 +0100 Subject: Updated API documentantion. --- .../pl.treksoft.kvision.window/-window/index.html | 29 +++++++++++++++++++++- 1 file changed, 28 insertions(+), 1 deletion(-) (limited to 'docs/api/pl.treksoft.kvision.window/-window/index.html') diff --git a/docs/api/pl.treksoft.kvision.window/-window/index.html b/docs/api/pl.treksoft.kvision.window/-window/index.html index 9e238bee..8a45ef9e 100644 --- a/docs/api/pl.treksoft.kvision.window/-window/index.html +++ b/docs/api/pl.treksoft.kvision.window/-window/index.html @@ -113,6 +113,24 @@ +

afterDestroy

+ + +open fun afterDestroy(): Unit +

Method called after destroying Snabbdom vnode.

+ + + + +

focus

+ + +open fun focus(): Unit +

Makes the current window focused.

+ + + +

getChildren

@@ -138,6 +156,15 @@

Removes all children from the current container.

+ + +

toFront

+ + +open fun toFront(): Unit +

Moves the current window to the front.

+ +

Inherited Functions

@@ -180,7 +207,7 @@

window

-fun Container.window(caption: String? = null, width: CssSize? = CssSize(0, UNIT.auto), height: CssSize? = CssSize(0, UNIT.auto), resizable: Boolean = true, draggable: Boolean = true, closeButton: Boolean = false, classes: Set<String> = setOf(), init: Window.() -> Unit = null): Window +fun Container.window(caption: String? = null, contentWidth: CssSize? = CssSize(0, UNIT.auto), contentHeight: CssSize? = CssSize(0, UNIT.auto), isResizable: Boolean = true, isDraggable: Boolean = true, closeButton: Boolean = false, classes: Set<String> = setOf(), init: Window.() -> Unit = null): Window

DSL builder extension function.

-- cgit