Package de.willuhn.jameica.gui.input

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


  private CheckboxInput getSave()
  {
    if (this.save != null)
      return this.save;
   
    this.save = new CheckboxInput(false);
    this.save.setEnabled(this.config != null);
    return this.save;
  }
View Full Code Here


    else
      container.addText(i18n.tr("Die �berweisungen werden zu einem Sammelauftrag zusammengefasst."),true);

    if (this.canDelete)
    {
      this.check = new CheckboxInput(false);
      this.check.setName(i18n.tr("Einzelauftr�ge nach �bernahme in die Sammelauftr�ge l�schen"));
      container.addInput(this.check);
    }
    ButtonArea b = new ButtonArea();
View Full Code Here

    ////////////////////////////////////////////////////////////////////////////

   
    ////////////////////////////////////////////////////////////////////////////
    // Checkbox
    this.checkbox = new CheckboxInput(this.interval != null);
    this.checkbox.setName(i18n.tr("Auftrag regelm��ig wiederholen"));
    this.checkbox.addListener(listener);
    ////////////////////////////////////////////////////////////////////////////
   
    ////////////////////////////////////////////////////////////////////////////
View Full Code Here

  public CheckboxInput getSoftPin()
  {
    if (this.useSoftPin != null)
      return this.useSoftPin;

    this.useSoftPin = new CheckboxInput(getConfig().useSoftPin());
    this.useSoftPin.setName(i18n.tr("Tastatur des PCs zur PIN-Eingabe verwenden"));
    return this.useSoftPin;
  }
View Full Code Here

  private CheckboxInput getSave()
  {
    if (this.save != null)
      return this.save;
   
    this.save = new CheckboxInput(false);
    this.save.setEnabled(this.config != null);
    return this.save;
  }
View Full Code Here

    boolean enabled = t.isNewObject() && t.getGegenkontoNummer() == null;
   
    // Per Hidden-Parameter kann die Checkbox komplett ausgeschaltet werden
    de.willuhn.jameica.system.Settings settings = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getSettings();
    enabled &= settings.getBoolean("transfer.addressbook.autoadd",true);
    storeEmpfaenger = new CheckboxInput(enabled);

    return storeEmpfaenger;
  }
View Full Code Here

  protected CheckboxInput getPending()
  {
    if (this.pending != null)
      return this.pending;
   
    this.pending = new CheckboxInput(settings.getBoolean("transferlist.filter.pending",false));
    this.pending.setName(i18n.tr("Nur offene Auftr�ge anzeigen"));
    this.pending.addListener(this.listener);
    this.pending.addListener(new Listener() {
      public void handleEvent(Event event)
      {
View Full Code Here

   * @return Checkbox.
   */
  public CheckboxInput getOnlineMode()
  {
    if (onlineMode == null)
      onlineMode = new CheckboxInput(Settings.getOnlineMode());
    return onlineMode;
  }
View Full Code Here

   */
  public CheckboxInput getDecimalGrouping()
  {
    //  BUGZILLA 101 http://www.willuhn.de/bugzilla/show_bug.cgi?id=101
    if (decimalGrouping == null)
      decimalGrouping = new CheckboxInput(Settings.getDecimalGrouping());
    return decimalGrouping;
  }
View Full Code Here

   */
  public CheckboxInput getKontoCheck()
  {
    if (kontoCheck == null)
    {
      kontoCheck = new CheckboxInput(Settings.getKontoCheck());
      Listener l = new Listener() {
        public void handleEvent(Event event)
        {
          getKontoCheckExcludeAddressbook().setEnabled(((Boolean)kontoCheck.getValue()).booleanValue());
        }
View Full Code Here

TOP

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

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.