Packages

class CustomMenuItem extends MenuItem with SFXDelegate[javafx.scene.control.CustomMenuItem]

A MenuItem that allows for arbitrary nodes to be embedded within it, by assigning a Node to the content property.

Wraps a JavaFX CustomMenuItem.

Source
CustomMenuItem.scala
Linear Supertypes
MenuItem, FireDelegate[javafx.scene.control.MenuItem], EventHandlerDelegate1, Styleable, SFXDelegate[javafx.scene.control.CustomMenuItem], EventTarget, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CustomMenuItem
  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 CustomMenuItem(node: Node, hidOnClick: Boolean)

    Bridge constructor for boolean)

    Bridge constructor for boolean)

    node

    to be embedded inside this CustomMenuItem

    hidOnClick

    if false the menu will not hide when the user interacts with the node.

  2. new CustomMenuItem(node: Node)

    Constructs a CustomMenuItem and initializes its content with the node specified.

    Constructs a CustomMenuItem and initializes its content with the node specified.

    node

    to be embedded inside this CustomMenuItem

  3. new CustomMenuItem(delegate: javafx.scene.control.CustomMenuItem = new jfxsc.CustomMenuItem)

    Creates a new CustomMenuItem from a JavaFX one.

    Creates a new CustomMenuItem from a JavaFX one.

    delegate

    A JavaFX CustomMenuItem to be wrapped. Its default value is a new JavaFX CustomMenuItem.

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 content: ObjectProperty[javafx.scene.Node]

    The node to display within this CustomMenuItem.

  14. def content_=(value: Node): Unit
  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.CustomMenuItem

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    CustomMenuItemMenuItemSFXDelegate
  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.EventHandlerDelegate1.EventHandled.

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

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

    Fires some kind of event.

    Fires some kind of event.

    Definition Classes
    FireDelegate
  24. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @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
    EventHandlerDelegate1
  30. def hashCode(): Int

    returns

    The delegate hashcode

    Definition Classes
    SFXDelegate → AnyRef → Any
  31. def hideOnClick: BooleanProperty

    If true, this menu item, and all visible menus, will be hidden when this menu item is clicked on.

  32. def hideOnClick_=(value: Boolean): Unit
  33. def id: StringProperty

    Definition Classes
    MenuItem
  34. def id_=(v: String): Unit
    Definition Classes
    MenuItem
  35. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  36. def mnemonicParsing: BooleanProperty

    MnemonicParsing property to enable/disable text parsing.

    MnemonicParsing property to enable/disable text parsing.

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

    Definition Classes
    MenuItem
  42. def onAction_=(v: EventHandler[ActionEvent]): Unit
    Definition Classes
    MenuItem
  43. 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

  44. def onMenuValidation_=(eventHandler: EventHandler[Event]): Unit
    Definition Classes
    MenuItem
  45. def parentMenu: ReadOnlyObjectProperty[javafx.scene.control.Menu]

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

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

    The pseudo-class state of this Styleable.

    The pseudo-class state of this Styleable.

    Definition Classes
    Styleable
  49. 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
  50. 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
  51. def style: StringProperty

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

  55. 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
  56. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  57. def text: StringProperty

    Definition Classes
    MenuItem
  58. def text_=(v: String): Unit
    Definition Classes
    MenuItem
  59. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  60. 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
  61. 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
  62. def userData_=(v: AnyRef): Unit
    Definition Classes
    MenuItem
  63. def visible: BooleanProperty

    Definition Classes
    MenuItem
  64. def visible_=(v: Boolean): Unit
    Definition Classes
    MenuItem
  65. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  66. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  67. 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.CustomMenuItem]

Inherited from EventTarget

Inherited from AnyRef

Inherited from Any

Ungrouped