object ComboBox

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ComboBox
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class BuiltInEditor[A] extends Editor[A]

    Use this editor, if you want to reuse the builtin editor supplied by the current Look and Feel.

    Use this editor, if you want to reuse the builtin editor supplied by the current Look and Feel. This is restricted to a text field as the editor widget. The conversion from and to a string is done by the supplied functions.

    It's okay if string2A throws exceptions. They are caught by an input verifier.

  2. trait Editor[A] extends Publisher

    An editor for a combo box.

    An editor for a combo box. Let's you edit the currently selected item. It is highly recommended to use the BuiltInEditor class. For anything else, one cannot guarantee that it integrates nicely with the current LookAndFeel.

    Publishes action events.

Value Members

  1. implicit def doubleEditor(c: ComboBox[Double]): Editor[Double]
  2. implicit def floatEditor(c: ComboBox[Float]): Editor[Float]
  3. implicit def intEditor(c: ComboBox[Int]): Editor[Int]
  4. def newConstantModel[A](items: Seq[A]): ComboBoxModel[A]
  5. implicit def stringEditor(c: ComboBox[String]): Editor[String]