Packages

class RadioMenuItem extends MenuItem with Toggle with SFXDelegate[javafx.scene.control.RadioMenuItem]

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

Instance Constructors

  1. new RadioMenuItem(text: String, graphic: Node)

    Constructs a RadioMenuItem and sets the display text with the specified text and sets the graphic scalafx.scene.Node to the given node.

  2. new RadioMenuItem(text: String)

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

  3. new RadioMenuItem(delegate: javafx.scene.control.RadioMenuItem)

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

    JavaFX object to be wrapped.

    JavaFX object to be wrapped.

    Definition Classes
    RadioMenuItemMenuItemSFXDelegate
  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 id: StringProperty

    Definition Classes
    MenuItem
  30. def id_=(v: String): Unit
    Definition Classes
    MenuItem
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def mnemonicParsing: BooleanProperty

    MnemonicParsing property to enable/disable text parsing.

    MnemonicParsing property to enable/disable text parsing.

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

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

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

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

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

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

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

    Definition Classes
    RadioMenuItemToggleMenuItem
  44. def pseudoClassStates: ObservableSet[PseudoClass]

    The pseudo-class state of this Styleable.

    The pseudo-class state of this Styleable.

    Definition Classes
    Styleable
  45. 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
  46. 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
  47. def selected: BooleanProperty

    The selected state for this Toggle.

    The selected state for this Toggle. Indicates whether this Control is selected.

    Definition Classes
    Toggle
  48. def selected_=(v: Boolean): Unit
    Definition Classes
    Toggle
  49. def style: StringProperty

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

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

    Definition Classes
    MenuItem
  56. def text_=(v: String): Unit
    Definition Classes
    MenuItem
  57. def toString(): String

    returns

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

    Definition Classes
    SFXDelegate → AnyRef → Any
  58. def toggleGroup: ObjectProperty[javafx.scene.control.ToggleGroup]

    The scalafx.scene.control.ToggleGroup to which this Toggle belongs.

    The scalafx.scene.control.ToggleGroup to which this Toggle belongs.

    Definition Classes
    Toggle
  59. def toggleGroup_=(v: ToggleGroup): Unit
    Definition Classes
    Toggle
  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 Toggle

Inherited from MenuItem

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

Inherited from EventHandlerDelegate1

Inherited from Styleable

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

Inherited from EventTarget

Inherited from AnyRef

Inherited from Any

Ungrouped