blob: 9e2de7f3a2fe67b6051ba2273a863f22d63b39eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/*
* Copyright (c) 2018. Robert Jaros
*/
package pl.treksoft.kvision.toolbar
import pl.treksoft.kvision.core.Container
import pl.treksoft.kvision.panel.SimplePanel
/**
* The Bootstrap toolbar.
*
* @constructor
* @param classes a set of CSS class names
* @param init an initializer extension function
*/
open class Toolbar(
classes: Set<String> = setOf(), init: (Toolbar.() -> Unit)? = null
) : SimplePanel(classes + "btn-toolbar") {
init {
role = "toolbar"
@Suppress("LeakingThis")
init?.invoke(this)
}
companion object {
/**
* DSL builder extension function.
*
* It takes the same parameters as the constructor of the built component.
*/
fun Container.toolbar(
classes: Set<String> = setOf(), init: (Toolbar.() -> Unit)? = null
): Toolbar {
val toolbar = Toolbar(classes).apply { init?.invoke(this) }
this.add(toolbar)
return toolbar
}
}
}
|