object KeyCombination
- Source
- KeyCombination.scala
- Alphabetic
- By Inheritance
- KeyCombination
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
- class Modifier extends SFXDelegate[javafx.scene.input.KeyCombination.Modifier]
-
sealed abstract
class
ModifierValue extends SFXEnumDelegate[javafx.scene.input.KeyCombination.ModifierValue]
Wraps http://docs.oracle.com/javase/8/javafx/api/javafx/scene/input/KeyCombination.ModifierValue.html
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
val
AltAny: Modifier
Modifier which specifies that the alt key can be either up or down.
-
val
AltDown: Modifier
Modifier which specifies that the alt key must be down.
-
val
ControlAny: Modifier
Modifier which specifies that the control key can be either up or down.
-
val
ControlDown: Modifier
Modifier which specifies that the control key must be down.
-
val
MetaAny: Modifier
Modifier which specifies that the meta key can be either up or down.
-
val
MetaDown: Modifier
Modifier which specifies that the meta key must be down.
-
val
ShiftAny: Modifier
Modifier which specifies that the shift key can be either up or down.
-
val
ShiftDown: Modifier
Modifier which specifies that the shift key must be down.
-
val
ShortcutAny: Modifier
Modifier which specifies that the shortcut key can be either up or down.
-
val
ShortcutDown: Modifier
Modifier which specifies that the shortcut key must be down.
-
def
apply(value: String): KeyCombination
Constructs a new KeyCombination from the specified string.
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
keyCombination(name: String): KeyCombination
Constructs a new KeyCombination from the specified string.
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- implicit def sfxKeyCombination2jfx(kc: KeyCombination): javafx.scene.input.KeyCombination
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- object Modifier
- object ModifierValue extends SFXEnumDelegateCompanion[javafx.scene.input.KeyCombination.ModifierValue, ModifierValue]
Deprecated Value Members
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] ) @Deprecated
- Deprecated
-
def
valueOf(value: String): KeyCombination
Constructs a new KeyCombination from the specified string.
Constructs a new KeyCombination from the specified string.
- Annotations
- @deprecated
- Deprecated
(Since version 1.0) Use apply instead
ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8. This means that every ScalaFX application is also a valid Scala application. By extension it supports full interoperability with Java and can run anywhere the Java Virtual Machine (JVM) and JavaFX 2.0 or JavaFX 8 are supported.
Package Structure
ScalaFX package structure corresponds to JavaFX package structure, for instance
scalafx.animation
corresponds tojavafx.animation
.Example Usage
A basic ScalaFX application is created creating an object that is an instance of
JFXApp3
. Following Java FX theatre metaphor, it contains astage
that contains ascene
. Astage
roughly corresponds to a window in a typical UI environment. Thescene
holds UI content presented to the user. In the example below, the content is a pane with a singlelabel
component.