Packages

  • package root

    ScalaFX is a UI DSL written within the Scala Language that sits on top of JavaFX 2.x and and JavaFX 8.

    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 to javafx.animation.

    Example Usage

    A basic ScalaFX application is created creating an object that is an instance of JFXApp. Following Java FX theatre metaphor, it contains a stage that contains a scene. A stage roughly corresponds to a window in a typical UI environment. The scene holds UI content presented to the user. In the example below, the content is a pane with a single label component.

    package hello
    
    import scalafx.application.JFXApp
    import scalafx.application.JFXApp.PrimaryStage
    import scalafx.geometry.Insets
    import scalafx.scene.Scene
    import scalafx.scene.control.Label
    import scalafx.scene.layout.BorderPane
    
    object HelloWorld extends JFXApp {
      stage = new PrimaryStage {
        title = "Hello"
        scene = new Scene {
          root = new BorderPane {
            padding = Insets(25)
            center = new Label("Hello World")
          }
        }
      }
    }
    Definition Classes
    root
  • package scalafx

    Base package for ScalaFX classes.

    Base package for ScalaFX classes.

    Definition Classes
    root
  • package print

    Wraps javafx.print package.

    Wraps javafx.print package.

    Definition Classes
    scalafx
    Since

    8.0

  • Collation
  • JobSettings
  • PageLayout
  • PageOrientation
  • PageRange
  • Paper
  • PaperSource
  • PrintColor
  • PrintIncludes
  • PrintQuality
  • PrintResolution
  • PrintSides
  • Printer
  • PrinterAttributes
  • PrinterJob

object PrintIncludes extends PrintIncludes

Companion Object for scalafx.print.PrintIncludes.

Source
PrintIncludes.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PrintIncludes
  2. PrintIncludes
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  11. implicit def jfxCollation2sfx(c: javafx.print.Collation): Collation

    Converts a JavaFX Collation instance to its ScalaFX counterpart.

    Converts a JavaFX Collation instance to its ScalaFX counterpart.

    c

    JavaFX Collation

    returns

    ScalaFX Collation

    Definition Classes
    PrintIncludes
  12. implicit def jfxJobSettings2sfx(js: javafx.print.JobSettings): JobSettings

    Converts a JavaFX PrinterJob.JobStatus instance to its ScalaFX counterpart.

    Converts a JavaFX PrinterJob.JobStatus instance to its ScalaFX counterpart.

    js

    JavaFX PrinterJob.JobStatus

    returns

    ScalaFX PrinterJob.JobStatus

    Definition Classes
    PrintIncludes
  13. implicit def jfxPageLayout2sfx(pl: javafx.print.PageLayout): PageLayout

    Converts a JavaFX PageLayout instance to its ScalaFX counterpart.

    Converts a JavaFX PageLayout instance to its ScalaFX counterpart.

    pl

    JavaFX PageLayout

    returns

    ScalaFX PageLayout

    Definition Classes
    PrintIncludes
  14. implicit def jfxPageOrientation2sfx(po: javafx.print.PageOrientation): PageOrientation

    Converts a JavaFX PageOrientation instance to its ScalaFX counterpart.

    Converts a JavaFX PageOrientation instance to its ScalaFX counterpart.

    po

    JavaFX PageOrientation

    returns

    ScalaFX PageOrientation

    Definition Classes
    PrintIncludes
  15. implicit def jfxPageRange2sfx(pr: javafx.print.PageRange): PageRange

    Converts a JavaFX PrintResolution instance to its ScalaFX counterpart.

    Converts a JavaFX PrintResolution instance to its ScalaFX counterpart.

    pr

    JavaFX PrintResolution

    returns

    ScalaFX PrintResolution

    Definition Classes
    PrintIncludes
  16. implicit def jfxPaper2sfx(pp: javafx.print.Paper): Paper

    Converts a JavaFX Paper instance to its ScalaFX counterpart.

    Converts a JavaFX Paper instance to its ScalaFX counterpart.

    pp

    JavaFX Paper

    returns

    ScalaFX Paper

    Definition Classes
    PrintIncludes
  17. implicit def jfxPaperSource2sfx(ps: javafx.print.PaperSource): PaperSource

    Converts a JavaFX PrintSides instance to its ScalaFX counterpart.

    Converts a JavaFX PrintSides instance to its ScalaFX counterpart.

    ps

    JavaFX PrintSides

    returns

    ScalaFX Paper

    Definition Classes
    PrintIncludes
  18. implicit def jfxPrintColor2sfx(pc: javafx.print.PrintColor): PrintColor

    Converts a JavaFX PrintColor instance to its ScalaFX counterpart.

    Converts a JavaFX PrintColor instance to its ScalaFX counterpart.

    pc

    JavaFX PrintColor

    returns

    ScalaFX PrintColor

    Definition Classes
    PrintIncludes
  19. implicit def jfxPrintJob2sfx(pj: javafx.print.PrinterJob): PrinterJob

    Converts a JavaFX PrinterJob instance to its ScalaFX counterpart.

    Converts a JavaFX PrinterJob instance to its ScalaFX counterpart.

    pj

    JavaFX PrinterJob

    returns

    ScalaFX PrinterJob

    Definition Classes
    PrintIncludes
  20. implicit def jfxPrintJobJobStatus2sfx(js: JobStatus): JobStatus

    Converts a JavaFX PrinterJob.JobStatus instance to its ScalaFX counterpart.

    Converts a JavaFX PrinterJob.JobStatus instance to its ScalaFX counterpart.

    js

    JavaFX PrinterJob.JobStatus

    returns

    ScalaFX PrinterJob.JobStatus

    Definition Classes
    PrintIncludes
  21. implicit def jfxPrintQuality2sfx(pq: javafx.print.PrintQuality): PrintQuality

    Converts a JavaFX PrintQuality instance to its ScalaFX counterpart.

    Converts a JavaFX PrintQuality instance to its ScalaFX counterpart.

    pq

    JavaFX PrintQuality

    returns

    ScalaFX PrintQuality

    Definition Classes
    PrintIncludes
  22. implicit def jfxPrintResolution2sfx(pr: javafx.print.PrintResolution): PrintResolution

    Converts a JavaFX PrintResolution instance to its ScalaFX counterpart.

    Converts a JavaFX PrintResolution instance to its ScalaFX counterpart.

    pr

    JavaFX PrintResolution

    returns

    ScalaFX PrintResolution

    Definition Classes
    PrintIncludes
  23. implicit def jfxPrintSides2sfx(ps: javafx.print.PrintSides): PrintSides

    Converts a JavaFX PrintSides instance to its ScalaFX counterpart.

    Converts a JavaFX PrintSides instance to its ScalaFX counterpart.

    ps

    JavaFX PrintSides

    returns

    ScalaFX PrintSides

    Definition Classes
    PrintIncludes
  24. implicit def jfxPrinter2sfx(p: javafx.print.Printer): Printer

    Converts a JavaFX Printer instance to its ScalaFX counterpart.

    Converts a JavaFX Printer instance to its ScalaFX counterpart.

    p

    JavaFX Printer

    returns

    ScalaFX Printer

    Definition Classes
    PrintIncludes
  25. implicit def jfxPrinterAttributes2sfx(pa: javafx.print.PrinterAttributes): PrinterAttributes

    Converts a JavaFX PrinterAttributes instance to its ScalaFX counterpart.

    Converts a JavaFX PrinterAttributes instance to its ScalaFX counterpart.

    pa

    JavaFX PrinterAttributes

    returns

    ScalaFX PrinterAttributes

    Definition Classes
    PrintIncludes
  26. implicit def jfxPrinterMarginType2sfx(mt: MarginType): MarginType

    Converts a JavaFX Printer.MarginType instance to its ScalaFX counterpart.

    Converts a JavaFX Printer.MarginType instance to its ScalaFX counterpart.

    mt

    JavaFX Printer.MarginType

    returns

    ScalaFX Printer.MarginType

    Definition Classes
    PrintIncludes
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  30. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  31. def toString(): String
    Definition Classes
    AnyRef → Any
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. 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 PrintIncludes

Inherited from AnyRef

Inherited from Any

Ungrouped