From d8cd67062b8de6e8398dc6dfd00d201200c82414 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Fri, 9 Feb 2018 13:40:35 +0100 Subject: API doc and readme --- .../pl.treksoft.kvision.panel/-h-panel/-init-.html | 27 ++++ .../pl.treksoft.kvision.panel/-h-panel/index.html | 138 +++++++++++++++++++++ 2 files changed, 165 insertions(+) create mode 100644 docs/api/pl.treksoft.kvision.panel/-h-panel/-init-.html create mode 100644 docs/api/pl.treksoft.kvision.panel/-h-panel/index.html (limited to 'docs/api/pl.treksoft.kvision.panel/-h-panel') diff --git a/docs/api/pl.treksoft.kvision.panel/-h-panel/-init-.html b/docs/api/pl.treksoft.kvision.panel/-h-panel/-init-.html new file mode 100644 index 00000000..c8658fcd --- /dev/null +++ b/docs/api/pl.treksoft.kvision.panel/-h-panel/-init-.html @@ -0,0 +1,27 @@ + + + +HPanel.<init> - kvision + + + +kvision / pl.treksoft.kvision.panel / HPanel / <init>
+
+

<init>

+ +HPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf()) +

Parameters

+

+wrap - flexbox wrap

+

+justify - flexbox content justification

+

+alignItems - flexbox items alignment

+

+spacing - spacing between columns/rows

+

+classes - a set of CSS class names

+

Constructor
+

+ + diff --git a/docs/api/pl.treksoft.kvision.panel/-h-panel/index.html b/docs/api/pl.treksoft.kvision.panel/-h-panel/index.html new file mode 100644 index 00000000..957eddbc --- /dev/null +++ b/docs/api/pl.treksoft.kvision.panel/-h-panel/index.html @@ -0,0 +1,138 @@ + + + +HPanel - kvision + + + +kvision / pl.treksoft.kvision.panel / HPanel
+
+

HPanel

+open class HPanel : FlexPanel +

The container with horizontal layout.

+

This is a special case of the flexbox layout.

+

Constructors

+ + + + + + + +
+

<init>

+
+HPanel(wrap: FLEXWRAP? = null, justify: FLEXJUSTIFY? = null, alignItems: FLEXALIGNITEMS? = null, spacing: Int? = null, classes: Set<String> = setOf())
+

Inherited Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

alignContent

+
+var alignContent: FLEXALIGNCONTENT? +

CSS flexbox content alignment.

+
+

alignItems

+
+var alignItems: FLEXALIGNITEMS? +

CSS flexbox items alignment.

+
+

direction

+
+var direction: FLEXDIR? +

CSS flexbox direction.

+
+

justify

+
+var justify: FLEXJUSTIFY? +

CSS flexbox content justification.

+
+

spacing

+
+var spacing: Int? +

The spacing between columns/rows.

+
+

wrap

+
+var wrap: FLEXWRAP? +

CSS flexbox wrap mode.

+
+

Inherited Functions

+ + + + + + + + + + + + + + + + + + + + + + + +
+

add

+
+fun add(child: Component, order: Int? = null, grow: Int? = null, shrink: Int? = null, basis: Int? = null, alignSelf: FLEXALIGNITEMS? = null, classes: Set<String> = setOf()): FlexPanel +

Adds a component to the flexbox container.

+open fun add(child: Component): FlexPanel +

Adds given component to the current container.

+
+

addAll

+
+open fun addAll(children: List<Component>): FlexPanel +

Adds a list of components to the current container.

+
+

getSnStyle

+
+open fun getSnStyle(): List<StringPair> +

Returns the list of String pairs defining CSS style attributes and their values.

+
+

remove

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

Removes given component from the current container.

+
+

removeAll

+
+open fun removeAll(): FlexPanel +

Removes all children from the current container.

+
+ + -- cgit