scalqa
package scalqa
Member
object Fx
GUI API
Fx is an easy to use wrapper of JavaFx technology. Scalqa observable containers like Idx.OM and Pro.OM serve as a simple to use data model. All the GUI controls are wrapped into Scala style classes.
Some use examples can be found in samplesFx.
There is also a "Trading Station" example as a stand alone project.
- Source
- __.scala
object Gen
General Utilities
Gen is fully exported to scalqa root, thus all members and aliases of Gen can be called with or without "Gen." prefix.
For example:
val v: Gen.Number.Percent = ???
// is same as
val v: Gen.Percent = ???
// is same as
val v: Percent = ???
- Source
- __.scala
object Lang
Language Extensions
Lang is fully exported to scalqa root, thus all members of Lang can be called with or without "Lang." prefix.
For example:
val v: Lang.Byte.Idx = ???
// is same as
val v: Byte.Idx = ???
val v: Lang.Int.Buffer = ???
// is same as
val v: Int.Buffer = ???
- Source
- __.scala