Fx.Menu

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

Def

Constructor

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

Body

def add(a: Fx.Action): Unit
Source
__.scala
Source
__.scala

Inherited body

@targetName("addAll")
inline def ++=(inline v: ~[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.~.tp // ~~(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
@targetName("add")
inline def +=(inline v: Fx.Action | Opt[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.~.tp // Prints ~(1, 2, 3, 4, 5, 6)
Inherited from
Add
Source
Add.scala
@targetName("add_Opt")
def add_?(o: Opt[Fx.Action]): Unit

Optional add

Optional add

Adds element if option has value, does nothing for void option

Inherited from
Add
Source
Add.scala
def addAll(v: ~[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( ~~(7,8,9))

  x.~.tp // Stream(1, 2, 3, 4, 5, 6, 7, 8, 9)
Inherited from
Add
Source
Add.scala
@targetName("enable_Pro")
Inherited from
Action
Source
__.scala
lazy protected val eventStore: Store
Inherited from
Provider
Source
Provider.scala
@targetName("graphic_Pro")
Inherited from
Item
Source
__.scala
@targetName("id_Pro")
def id_*: OM
Inherited from
Item
Source
__.scala
def onAction[U](l: Fx.Action.Event => U): Control
Inherited from
Action
Source
__.scala
def onActionRun[U](run: => U): 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
__.scala
Inherited from
Action
Source
__.scala
@targetName("text_Pro")
def text_*: OM
Inherited from
Action
Source
__.scala
Inherited from
Action
Source
__.scala
@targetName("visible_Pro")
Inherited from
Action
Source
__.scala