Fx.Menu

class Menu extends Fx.Menu.Item with Able.Add[Fx.Action]
Source
__.scala
class Fx.Action
class java.lang.Object
trait scala.Matchable
class Any

Def

Constructor

def this(text: String, enabled: Boolean)
Source
__.scala

Body

inline def ++=(v: Opt[Fx.Action]): Fx.Menu

Alias for addAll

Alias for addAll

Generally Opt could be added as a stream.

This overload is sligtly more efficient, but it is also required for mapped Opt expressions, where Opt type is harder to resolve and it would not compile.

Inherited from
Add
Source
Add.scala
inline def ++=(v: Stream[Fx.Action]): Fx.Menu

Alias for addAll

Alias for addAll

Calls addAll and returns container

 // Generic example
 val x =  Idx.M(1, 2, 3)

 x ++= (4 <> 6) ++= Stream(7, 8, 9)

 x.stream.tp // Stream(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
inline def +=(v: Fx.Action): Fx.Menu

Alias for add

Alias for add

Calls add and returns container

 // Generic example
 val x =  Idx.M(1, 2, 3)

  x += 4 += 5 += 6

  x.stream.tp // Prints Stream(1, 2, 3, 4, 5, 6)
Inherited from
Add
Source
Add.scala
def add(a: Fx.Action): Unit
Source
__.scala
def addAll(v: Stream[Fx.Action]): Unit

Add many

Add many

Adds given stream of elements to target container

 // Generic example
 val x =  Idx.M(1, 2, 3)

  x.addAll(4 <> 6)
  x.addAll( Stream(7,8,9))

  x.stream.tp // Stream(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
def enablePro: Pro.OM[Boolean]
Inherited from
Action
Source
__.scala
lazy protected val eventStore: Event.Store
Inherited from
Provider
Source
Provider.scala
def idPro: Pro.OM[String]
Inherited from
Item
Source
__.scala
Inherited from
Action
Source
__.scala
def onActionRun[U](run: => U): Event.Control
Inherited from
Action
Source
__.scala
final def real: REAL

JavaFX peer

JavaFX peer

Returns the real JavaFX peer, which makes GUI happen

JavaFx controls can be manipulated directly, especially for functionality not implemented in ScalqaFx

Inherited from
Gui
Source
Gui.scala
Inherited from
Action
Source
__.scala
def textPro: Pro.OM[String]
Inherited from
Action
Source
__.scala
Inherited from
Action
Source
__.scala
Inherited from
Action
Source
__.scala