scalafx.scene.control

Menu

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

Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/control/Menu.html.

Source
Menu.scala
Linear Supertypes
MenuItem, FireDelegate[javafx.scene.control.MenuItem], EventHandlerDelegate, Styleable, SFXDelegate[javafx.scene.control.Menu], EventTarget, AnyRef, Any
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Menu
  2. MenuItem
  3. FireDelegate
  4. EventHandlerDelegate
  5. Styleable
  6. SFXDelegate
  7. EventTarget
  8. AnyRef
  9. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

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 = ...)

Type Members

  1. type EventHandled = AnyRef { ... /* 5 definitions in type refinement */ }

    Definition Classes
    EventHandlerDelegate
  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"

  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"

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. object FilterMagnet

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

  7. object HandlerMagnet

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

  8. def accelerator: ObjectProperty[KeyCombination]

    Definition Classes
    MenuItem
  9. def accelerator_=(v: KeyCombination): Unit

    Definition Classes
    MenuItem
  10. 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
    EventHandlerDelegate
  11. 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
    EventHandlerDelegate
  12. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  13. def buildEventDispatchChain(chain: EventDispatchChain): EventDispatchChain

    Construct an event dispatch chain for this target.

    Construct an event dispatch chain for this target.

    Definition Classes
    EventHandlerDelegate
  14. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @throws( ... )
  15. def cssMetaData: Seq[CssMetaData[_ <: Styleable, _]]

    The CssMetaData of this Styleable.

    The CssMetaData of this Styleable.

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

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    MenuMenuItemSFXDelegate
  17. def disable: BooleanProperty

    Definition Classes
    MenuItem
  18. def disable_=(v: Boolean): Unit

    Definition Classes
    MenuItem
  19. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. 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
  21. def eventHandlerDelegate: EventHandled

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

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

    Attributes
    protected
    Definition Classes
    MenuItemEventHandlerDelegate
  22. 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
    EventHandlerDelegate
  23. def fire(): Unit

    Fires some kind of event.

    Fires some kind of event.

    Definition Classes
    FireDelegate
  24. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate()
  25. 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
  26. 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
  27. def graphic: ObjectProperty[javafx.scene.Node]

    Definition Classes
    MenuItem
  28. def graphic_=(v: Node): Unit

    Definition Classes
    MenuItem
  29. 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
    EventHandlerDelegate
  30. def hashCode(): Int

    returns

    The delegate hashcode

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

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

  32. def id: StringProperty

    Definition Classes
    MenuItem
  33. def id_=(v: String): Unit

    Definition Classes
    MenuItem
  34. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  35. def items: ObservableList[javafx.scene.control.MenuItem]

    The items to show within this menu.

  36. 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.

  37. def mnemonicParsing: BooleanProperty

    MnemonicParsing property to enable/disable text parsing.

    MnemonicParsing property to enable/disable text parsing.

    Definition Classes
    MenuItem
  38. def mnemonicParsing_=(v: Boolean): Unit

    Definition Classes
    MenuItem
  39. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  40. final def notify(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  41. final def notifyAll(): Unit

    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate()
  42. def onAction: ObjectProperty[EventHandler[ActionEvent]]

    Definition Classes
    MenuItem
  43. def onAction_=(v: EventHandler[ActionEvent]): Unit

    Definition Classes
    MenuItem
  44. def onHidden: ObjectProperty[EventHandler[Event]]

  45. def onHidden_=(implicit eventHandler: EventHandler[Event]): Unit

  46. def onHiding: ObjectProperty[EventHandler[Event]]

  47. def onHiding_=(implicit eventHandler: EventHandler[Event]): Unit

  48. 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

  49. def onMenuValidation_=(eventHandler: EventHandler[Event]): Unit

    Definition Classes
    MenuItem
  50. def onShowing: ObjectProperty[EventHandler[Event]]

  51. def onShowing_=(implicit eventHandler: EventHandler[Event]): Unit

  52. def onShown: ObjectProperty[EventHandler[Event]]

  53. def onShown_=(implicit eventHandler: EventHandler[Event]): Unit

  54. def parentMenu: ReadOnlyObjectProperty[javafx.scene.control.Menu]

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

    Definition Classes
    MenuItem
  56. 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
  57. def pseudoClassStates: ObservableSet[PseudoClass]

    The pseudo-class state of this Styleable.

    The pseudo-class state of this Styleable.

    Definition Classes
    Styleable
  58. 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
    EventHandlerDelegate
  59. 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
    EventHandlerDelegate
  60. 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.

  61. def showing: Boolean

    Gets the value of the property showing.

  62. def style: StringProperty

    Definition Classes
    MenuItem
  63. 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
  64. def style_=(v: String): Unit

    Definition Classes
    MenuItem
  65. 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
  66. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  67. def text: StringProperty

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

    Definition Classes
    MenuItem
  69. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  70. 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
  71. def userData: AnyRef

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

    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
  72. def userData_=(v: AnyRef): Unit

    Definition Classes
    MenuItem
  73. def visible: BooleanProperty

    Definition Classes
    MenuItem
  74. def visible_=(v: Boolean): Unit

    Definition Classes
    MenuItem
  75. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  77. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from MenuItem

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

Inherited from EventHandlerDelegate

Inherited from Styleable

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

Inherited from EventTarget

Inherited from AnyRef

Inherited from Any

Ungrouped