From 806edfceeefe7fda47924f97237974e99fe28a02 Mon Sep 17 00:00:00 2001 From: Robert Jaros Date: Mon, 2 Apr 2018 01:35:47 +0200 Subject: API documentantion update --- api/pl.treksoft.kvision.core/-widget/index.html | 43 ++++++++++++++++++++----- 1 file changed, 35 insertions(+), 8 deletions(-) (limited to 'api/pl.treksoft.kvision.core/-widget/index.html') diff --git a/api/pl.treksoft.kvision.core/-widget/index.html b/api/pl.treksoft.kvision.core/-widget/index.html index c5a5ebca..f15382b8 100644 --- a/api/pl.treksoft.kvision.core/-widget/index.html +++ b/api/pl.treksoft.kvision.core/-widget/index.html @@ -51,7 +51,7 @@

parent

-open var parent: Component? +open var parent: Container?

Parent of the current component.

@@ -188,6 +188,15 @@ +

display

+ + +open var display: Display? +

CSS display of the current component.

+ + + +

float

@@ -753,6 +762,15 @@ +

setContextMenu

+ + +open fun setContextMenu(contextMenu: ContextMenu): Widget +

Sets context menu for the current widget.

+ + + +

setDragDropData

@@ -846,7 +864,7 @@

AbstractTextInput

-abstract class AbstractTextInput : Widget +abstract class AbstractTextInput : Widget, FormInput

Base class for basic text components.

@@ -864,7 +882,7 @@

CheckInput

-open class CheckInput : Widget +open class CheckInput : Widget, FormInput

The basic input component rendered as HTML input type="checkbox" or input type="radio".

@@ -891,12 +909,21 @@

DateTimeInput

-open class DateTimeInput : Widget +open class DateTimeInput : Widget, FormInput

Basic date/time chooser component.

+

Iframe

+ + +open class Iframe : Widget +

Iframe component.

+ + + +

Image

@@ -927,17 +954,17 @@

SpinnerInput

-open class SpinnerInput : Widget +open class SpinnerInput : Widget, FormInput

The basic component for spinner control.

-

WidgetWrapper

+

UploadInput

-open class WidgetWrapper : Widget -

This class allows to wrap a component into separately styled DIV element.

+open class UploadInput : Widget, FormInput +

The file upload component.

-- cgit