From 61545b3f1fb1844af350d187edd26285e98f0466 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 26 Feb 2018 14:21:46 +0100 Subject: API documentation update --- .../pl.treksoft.kvision.modal/-confirm/index.html | 37 +++++++++++++++++++--- 1 file changed, 32 insertions(+), 5 deletions(-) (limited to 'docs/api/pl.treksoft.kvision.modal/-confirm/index.html') diff --git a/docs/api/pl.treksoft.kvision.modal/-confirm/index.html b/docs/api/pl.treksoft.kvision.modal/-confirm/index.html index 125a76b4..0bdebe0c 100644 --- a/docs/api/pl.treksoft.kvision.modal/-confirm/index.html +++ b/docs/api/pl.treksoft.kvision.modal/-confirm/index.html @@ -18,7 +18,7 @@

<init>

-Confirm(caption: String? = null, text: String? = null, rich: Boolean = false, align: ALIGN? = null, size: MODALSIZE? = null, animation: Boolean = true, cancelVisible: Boolean = false, noCallback: () -> Unit = null, yesCallback: () -> Unit = null) +Confirm(caption: String? = null, text: String? = null, rich: Boolean = false, align: Align? = null, size: ModalSize? = null, animation: Boolean = true, cancelVisible: Boolean = false, noCallback: () -> Unit = null, yesCallback: () -> Unit = null) @@ -30,7 +30,7 @@

align

-var align: ALIGN? +var align: Align?

Text align.

@@ -81,7 +81,7 @@ var caption: String? -

Window content text.

+

Window caption text.

@@ -98,7 +98,7 @@

size

-var size: MODALSIZE? +var size: ModalSize?

Window size.

@@ -145,6 +145,15 @@ +

getChildren

+ + +open fun getChildren(): List<Component> +

Returns a list of children of the current container.

+ + + +

getSnAttrs

@@ -172,6 +181,24 @@ +

remove

+ + +open fun remove(child: Component): SimplePanel +

Removes given component from the current container.

+ + + + +

removeAll

+ + +open fun removeAll(): SimplePanel +

Removes all children from the current container.

+ + + +

removeAllButtons

@@ -207,7 +234,7 @@

show

-fun show(caption: String? = null, text: String? = null, rich: Boolean = false, align: ALIGN? = null, size: MODALSIZE? = null, animation: Boolean = true, cancelVisible: Boolean = false, noCallback: () -> Unit = null, yesCallback: () -> Unit = null): Unit +fun show(caption: String? = null, text: String? = null, rich: Boolean = false, align: Align? = null, size: ModalSize? = null, animation: Boolean = true, cancelVisible: Boolean = false, noCallback: () -> Unit = null, yesCallback: () -> Unit = null): Unit

Helper function for opening Confirm window.

-- cgit