poohbar
02/21/2018, 10:52 PMbkenn
02/21/2018, 10:54 PMpoohbar
02/21/2018, 10:55 PMbkenn
02/21/2018, 10:56 PMRuckus
02/21/2018, 10:57 PMSelect this checkbox to automatically make (compile) the project each time project files change on your disk, for example, on save or autosave, or when you get the latest project revision from your version control system.
poohbar
02/21/2018, 11:00 PMHotswap
failed whenever I changed the DSL structure slightlypoohbar
02/21/2018, 11:01 PMRuckus
02/21/2018, 11:02 PMpoohbar
02/21/2018, 11:02 PMpoohbar
02/21/2018, 11:10 PMenter
, I found shortcut { }
but thats for combinationspoohbar
02/21/2018, 11:11 PMshortcut("enter")
works but it looks a bit off to mebkenn
02/21/2018, 11:11 PMsetOnKeyPressed {
if(it.code == KeyCode.ENTER) {
op()
}
}
poohbar
02/21/2018, 11:11 PMpoohbar
02/22/2018, 2:32 AMhbox {
style {
backgroundColor += c("yellow")
}
button("+") { hgrow = ALWAYS }
button("-") { hgrow = ALWAYS }
}
poohbar
02/22/2018, 2:32 AMimage.png▾
poohbar
02/22/2018, 2:32 AMpoohbar
02/22/2018, 2:33 AMcarlw
02/22/2018, 2:43 AMpoohbar
02/22/2018, 2:47 AMRuckus
02/22/2018, 3:02 AMpoohbar
02/22/2018, 1:17 PMr4zzz4k
02/22/2018, 1:25 PMtieskedh
02/23/2018, 1:38 PMpoohbar
02/23/2018, 2:10 PMval ref = vbox {
// happily building
}
And now in a function or elsewhere where I have ref
I would like to do something like:
builder(ref) {
// continue happily build
}
kristofdho
02/23/2018, 2:41 PMwith(ref) {
// builder
}
like shown here: https://github.com/edvin/tornadofx-samples/blob/master/login/src/main/kotlin/no/tornado/fxsample/login/LoginScreen.kt#L25edvin
02/23/2018, 3:16 PMpoohbar
02/23/2018, 3:43 PMedvin
02/23/2018, 3:53 PMpoohbar
02/23/2018, 3:56 PMGroup
poohbar
02/23/2018, 3:56 PM