Package de.willuhn.jameica.gui.input

Examples of de.willuhn.jameica.gui.input.ColorInput


    if (this.color == null)
    {
      int[] rgb = getUmsatzTyp().getColor();
      if (rgb == null || rgb.length != 3)
        rgb = new int[]{0,0,0};
      this.color = new ColorInput(new Color(GUI.getDisplay(),new RGB(rgb[0],rgb[1],rgb[2])),true);
      this.color.setEnabled(getUmsatzTyp().isCustomColor());
    }
    return this.color;
  }
View Full Code Here


   * @return Auswahlfeld.
   */
  public Input getBuchungSollForeground()
  {
    if (buchungSollFg == null)
      buchungSollFg = new ColorInput(Settings.getBuchungSollForeground(),true);
    return buchungSollFg;
  }
View Full Code Here

   * @return Auswahlfeld.
   */
  public Input getBuchungHabenForeground()
  {
    if (buchungHabenFg == null)
      buchungHabenFg = new ColorInput(Settings.getBuchungHabenForeground(),true);
    return buchungHabenFg;
  }
View Full Code Here

TOP

Related Classes of de.willuhn.jameica.gui.input.ColorInput

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.