Packages

class Menu extends MenuItem with EventTarget with SFXDelegate[javafx.scene.control.Menu]

Source
Menu.scala
Linear Supertypes
MenuItem, FireDelegate[javafx.scene.control.MenuItem], EventHandlerDelegate1, Styleable, SFXDelegate[javafx.scene.control.Menu], EventTarget, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Menu
  2. MenuItem
  3. FireDelegate
  4. EventHandlerDelegate1
  5. Styleable
  6. SFXDelegate
  7. EventTarget
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Menu(label: String)

    Constructs a Menu and sets the display text with the specified text.

  2. new Menu(label: String, node: Node)

    Constructs a Menu and sets the display text with the specified text and sets the graphic Node to the given node.

  3. new Menu(delegate: javafx.scene.control.Menu = new jfxsc.Menu("default"))

Type Members

  1. trait EventHandled extends AnyRef

    Trait used for handle events manipulation.

    Trait used for handle events manipulation. JavaFX class wrapped must have methods defined in scalafx.event.EventHandlerDelegate1.EventHandled Type:

    def addEventHandler   [E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[E])
    def removeEventHandler[E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[E])
    def addEventFilter    [E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[E])
    def removeEventFilter [E <: jfxe.Event](eventType: jfxe.EventType[E], eventHandler: jfxe.EventHandler[E])
    def buildEventDispatchChain(chain: jfxe.EventDispatchChain): jfxe.EventDispatchChain
    Definition Classes
    EventHandlerDelegate1
  2. sealed trait FilterMagnet[J <: javafx.event.Event, S <: SFXDelegate[J]] extends AnyRef

    Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Definition Classes
    EventHandlerDelegate1
  3. sealed trait HandlerMagnet[J <: javafx.event.Event, S <: SFXDelegate[J]] extends AnyRef

    Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Trait implementing Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Definition Classes
    EventHandlerDelegate1

Value Members

  1. object FilterMagnet

    Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Definition Classes
    EventHandlerDelegate1
  2. object HandlerMagnet

    Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Companion object implementing Magnet Pattern Magnet Pattern to avoid compilation error "ambiguous reference to overloaded definition"

    Definition Classes
    EventHandlerDelegate1
  3. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def ##: Int
    Definition Classes
    AnyRef → Any
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def accelerator: ObjectProperty[KeyCombination]

    Definition Classes
    MenuItem
  7. def accelerator_=(v: KeyCombination): Unit
    Definition Classes
    MenuItem
  8. def addEventFilter[E <: Event](eventType: EventType[E], eventHandler: EventHandler[E]): Unit

    Registers an event filter to this task.

    Registers an event filter to this task. Registered event filters get an event before any associated event handlers.

    E

    Event class

    eventType

    the type of the events to receive by the filter

    eventHandler

    the filter to register that will filter event

    Definition Classes
    EventHandlerDelegate1
  9. def addEventHandler[E <: Event](eventType: EventType[E], eventHandler: EventHandler[E]): Unit

    Registers an event handler to this task.

    Registers an event handler to this task. Any event filters are first processed, then the specified onFoo event handlers, and finally any event handlers registered by this method. As with other events in the scene graph, if an event is consumed, it will not continue dispatching.

    E

    Event class

    eventType

    the type of the events to receive by the handler

    eventHandler

    the handler to register that will manipulate event

    Definition Classes
    EventHandlerDelegate1
  10. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  11. def buildEventDispatchChain(chain: EventDispatchChain): EventDispatchChain

    Construct an event dispatch chain for this target.

    Construct an event dispatch chain for this target.

    Definition Classes
    EventHandlerDelegate1
  12. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  13. def cssMetaData: Seq[CssMetaData[_ <: Styleable, _]]

    The CssMetaData of this Styleable.

    The CssMetaData of this Styleable.

    Definition Classes
    Styleable
  14. val delegate: javafx.scene.control.Menu

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    MenuMenuItemSFXDelegate
  15. def disable: BooleanProperty

    Definition Classes
    MenuItem
  16. def disable_=(v: Boolean): Unit
    Definition Classes
    MenuItem
  17. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. def equals(ref: Any): Boolean

    Verifies if a object is equals to this delegate.

    Verifies if a object is equals to this delegate.

    ref

    Object to be compared.

    returns

    if the other object is equals to this delegate or not.

    Definition Classes
    SFXDelegate → AnyRef → Any
  19. def eventHandlerDelegate: EventHandled

    Returns a object that implements scalafx.event.EventHandlerDelegate1.EventHandled.

    Returns a object that implements scalafx.event.EventHandlerDelegate1.EventHandled.

    Attributes
    protected
    Definition Classes
    MenuItemEventHandlerDelegate1
  20. def filterEvent[J <: Event, S <: Event with SFXDelegate[J]](eventType: EventType[J])(filter: FilterMagnet[J, S]): Subscription

    Registers an event filter.

    Registers an event filter. Registered event filters get an event before any associated event handlers.

    Example of filtering mouse events

    pane.filterEvent(MouseEvent.Any) {
      me: MouseEvent => {
        me.eventType match {
          case MouseEvent.MousePressed => {
            ...
          }
          case MouseEvent.MouseDragged => {
            ...
          }
          case _ => {
            ...
          }
        }
      }
    }

    or

    pane.filterEvent(MouseEvent.Any) { () => println("Some mouse event handled") }
    J

    type JavaFX delegate of the event

    S

    ScalaFX type for J type wrapper.

    eventType

    type of events that will be handled.

    filter

    code handling the event, see examples above.

    Definition Classes
    EventHandlerDelegate1
  21. def fire(): Unit

    Fires some kind of event.

    Fires some kind of event.

    Definition Classes
    FireDelegate
  22. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. def getId: String

    The id of this Styleable.

    The id of this Styleable.

    IMPLEMENTATION NOTE: For this method was adopted the name getId instead id to not conflict with its subclasses already have a method with this name which returns a StringProperty.

    Definition Classes
    Styleable
  24. def getStyle: String

    A string representation of the CSS style associated with this specific Node.

    A string representation of the CSS style associated with this specific Node.

    IMPLEMENTATION NOTE: For this method was adopted the name getStyle instead style to not conflict with its subclasses already have a method with this name which returns a StringProperty.

    Definition Classes
    Styleable
  25. def graphic: ObjectProperty[javafx.scene.Node]

    Definition Classes
    MenuItem
  26. def graphic_=(v: Node): Unit
    Definition Classes
    MenuItem
  27. def handleEvent[J <: Event, S <: Event with SFXDelegate[J]](eventType: EventType[J])(handler: HandlerMagnet[J, S]): Subscription

    Registers an event handler.

    Registers an event handler. The handler is called when the node receives an Event of the specified type during the bubbling phase of event delivery.

    Example of handling mouse events

    pane.handleEvent(MouseEvent.Any) {
      me: MouseEvent => {
        me.eventType match {
          case MouseEvent.MousePressed => ...
          case MouseEvent.MouseDragged => ...
          case _                       => {}
        }
      }
    }

    or

    pane.handleEvent(MouseEvent.Any) { () => println("Some mouse event handled") }
    J

    type JavaFX delegate of the event

    S

    ScalaFX type for J type wrapper.

    eventType

    type of events that will be handled.

    handler

    code handling the event, see examples above.

    returns

    Returns a subscription that can be used to cancel/remove this event handler

    Definition Classes
    EventHandlerDelegate1
  28. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  29. def hide(): Unit

    Hides the ContextMenu if it was previously showing, and any showing submenus.

  30. def id: StringProperty

    Definition Classes
    MenuItem
  31. def id_=(v: String): Unit
    Definition Classes
    MenuItem
  32. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  33. def items: ObservableBuffer[javafx.scene.control.MenuItem]

    The items to show within this menu.

  34. def items_=(c: Iterable[MenuItem]): Unit

    Sets the menu items, replacing the prior content.

    Sets the menu items, replacing the prior content. If you want append to current content, use add or similar.

    c

    Menu items to replace prior content.

  35. def mnemonicParsing: BooleanProperty

    MnemonicParsing property to enable/disable text parsing.

    MnemonicParsing property to enable/disable text parsing.

    Definition Classes
    MenuItem
  36. def mnemonicParsing_=(v: Boolean): Unit
    Definition Classes
    MenuItem
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  39. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  40. def onAction: ObjectProperty[EventHandler[ActionEvent]]

    Definition Classes
    MenuItem
  41. def onAction_=(v: EventHandler[ActionEvent]): Unit
    Definition Classes
    MenuItem
  42. def onHidden: ObjectProperty[EventHandler[Event]]
  43. def onHidden_=(implicit eventHandler: EventHandler[Event]): Unit
  44. def onHiding: ObjectProperty[EventHandler[Event]]
  45. def onHiding_=(implicit eventHandler: EventHandler[Event]): Unit
  46. def onMenuValidation: ObjectProperty[EventHandler[Event]]

    The event handler that is associated with invocation of an accelerator for a MenuItem.

    The event handler that is associated with invocation of an accelerator for a MenuItem. This can happen when a key sequence for an accelerator is pressed. The event handler is also invoked when onShowing event handler is called.

    Definition Classes
    MenuItem
    Since

    2.2

  47. def onMenuValidation_=(eventHandler: EventHandler[Event]): Unit
    Definition Classes
    MenuItem
  48. def onShowing: ObjectProperty[EventHandler[Event]]
  49. def onShowing_=(implicit eventHandler: EventHandler[Event]): Unit
  50. def onShown: ObjectProperty[EventHandler[Event]]
  51. def onShown_=(implicit eventHandler: EventHandler[Event]): Unit
  52. def parentMenu: ReadOnlyObjectProperty[javafx.scene.control.Menu]

    Definition Classes
    MenuItem
  53. def parentPopup: ReadOnlyObjectProperty[javafx.scene.control.ContextMenu]

    Definition Classes
    MenuItem
  54. def properties: ObservableMap[AnyRef, AnyRef]

    Returns an observable map of properties on this menu item for use primarily by application developers.

    Returns an observable map of properties on this menu item for use primarily by application developers.

    Definition Classes
    MenuItem
  55. def pseudoClassStates: ObservableSet[PseudoClass]

    The pseudo-class state of this Styleable.

    The pseudo-class state of this Styleable.

    Definition Classes
    Styleable
  56. def removeEventFilter[E <: Event](eventType: EventType[E], eventHandler: EventHandler[E]): Unit

    Unregisters a previously registered event filter from this task.

    Unregisters a previously registered event filter from this task. One filter might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the filter.

    E

    Event class

    eventType

    the event type from which to unregister

    eventHandler

    the filter to unregister

    Definition Classes
    EventHandlerDelegate1
  57. def removeEventHandler[E <: Event](eventType: EventType[E], eventHandler: EventHandler[E]): Unit

    Unregisters a previously registered event handler from this task.

    Unregisters a previously registered event handler from this task. One handler might have been registered for different event types, so the caller needs to specify the particular event type from which to unregister the handler.

    E

    Event class

    eventType

    the event type from which to unregister

    eventHandler

    the handler to unregister

    Definition Classes
    EventHandlerDelegate1
  58. def show(): Unit

    If the Menu is not disabled and the ContextMenu is not already showing, then this will cause the ContextMenu to be shown.

  59. def showing: Boolean

    Gets the value of the property showing.

  60. def style: StringProperty

    Definition Classes
    MenuItem
  61. def styleClass: ObservableBuffer[String]

    A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.

    A list of String identifiers which can be used to logically group Nodes, specifically for an external style engine.

    Definition Classes
    Styleable
  62. def style_=(v: String): Unit
    Definition Classes
    MenuItem
  63. def styleableNode: Node

    Returns the Node that represents this Styleable object.

    Returns the Node that represents this Styleable object. This method should be overridden in cases where the Styleable is not itself a Node, so that it may optionally return the relevant root node representation of itself. By default this method returns null, which can mean that either the Styleable itself is a Node, or if that is not the case, that the Styleable does not have a node representation available at the time of request.

    returns

    the Node that represents this Styleable object

    Definition Classes
    Styleable
    Since

    9

  64. def styleableParent: Styleable

    The parent of this Styleable, or null if there is no parent.

    The parent of this Styleable, or null if there is no parent.

    Definition Classes
    Styleable
  65. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  66. def text: StringProperty

    Definition Classes
    MenuItem
  67. def text_=(v: String): Unit
    Definition Classes
    MenuItem
  68. def toString(): String

    returns

    Returns the original delegate's toString() adding a [SFX] prefix.

    Definition Classes
    SFXDelegate → AnyRef → Any
  69. def typeSelector: String

    The type of this Styleable that is to be used in selector matching.

    The type of this Styleable that is to be used in selector matching.

    Definition Classes
    Styleable
  70. def userData: AnyRef

    Returns a previously set Object property, or null if no such property has been set using the setUserData(java.lang.Object) method.

    Returns a previously set Object property, or null if no such property has been set using the setUserData(java.lang.Object) method.

    Definition Classes
    MenuItem
  71. def userData_=(v: AnyRef): Unit
    Definition Classes
    MenuItem
  72. def visible: BooleanProperty

    Definition Classes
    MenuItem
  73. def visible_=(v: Boolean): Unit
    Definition Classes
    MenuItem
  74. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  75. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  76. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from MenuItem

Inherited from FireDelegate[javafx.scene.control.MenuItem]

Inherited from EventHandlerDelegate1

Inherited from Styleable

Inherited from SFXDelegate[javafx.scene.control.Menu]

Inherited from EventTarget

Inherited from AnyRef

Inherited from Any

Ungrouped