Edvin Syse
Edvin Syse
@ctadlock This should go into the tornadofx2 repo now, shouldn't it?
If you really have a use case for subclassing `Scope`, you can call the constructor that accepts a workspace: ```kotlin class PageScope(workspace: Workspace) : Scope(workspace) ``` However, I suspect you...
There's no need, just put a PersonModel in the scope, no need to subclass it. I can't actually think of any good use cases to subclass Scope in a normal...
You're getting an extension function called `add` which is intented to be used to add UI elements to parent elements. Without seeing a complete example, I'm guessing, but I think...
This is planned implemented with Java 11 modules. We will probably start with the REST module, because it is the most obvious and really the only one that has external...
We’re talking about very little code, adding no considerable weight to the binary and the functionality is there if you need it, or you can choose not to use it....
I know plenty of people are using coroutines with TornadoFX, though there is no special support for it. Not sure if it's even needed :) Take a look here for...
If we do a major rewrite of the dependency injection mechanism in TornadoFX, I suggest making third party injection frameworks a first class citizen perhaps? TornadoFX could ship with a...
I'll be happy to merge a PR, provided it doesn't break any existing functionality :)
I don't think there is any need to track the tab view order. I think it's better to add them to the stack from left to right as they appear...