Package de.willuhn.jameica.hbci.gui.boxes

Source Code of de.willuhn.jameica.hbci.gui.boxes.NeueUmsaetze

/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/gui/boxes/NeueUmsaetze.java,v $
* $Revision: 1.8 $
* $Date: 2011/04/29 15:33:28 $
* $Author: willuhn $
* $Locker:  $
* $State: Exp $
*
* Copyright (c) by willuhn software & services
* All rights reserved
*
**********************************************************************/

package de.willuhn.jameica.hbci.gui.boxes;

import java.rmi.RemoteException;

import org.eclipse.swt.widgets.Composite;

import de.willuhn.datasource.GenericIterator;
import de.willuhn.jameica.gui.boxes.AbstractBox;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.Settings;
import de.willuhn.jameica.hbci.gui.action.UmsatzDetail;
import de.willuhn.jameica.hbci.gui.parts.UmsatzList;
import de.willuhn.jameica.hbci.gui.parts.columns.KontoColumn;
import de.willuhn.jameica.system.Application;
import de.willuhn.util.I18N;

/**
* zeigt eine Liste mit neu hinzugekommenen Umsaetzen an.
*/
public class NeueUmsaetze extends AbstractBox
{
  private final static I18N i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();
 
  /**
   * @see de.willuhn.jameica.gui.boxes.Box#getDefaultEnabled()
   */
  public boolean getDefaultEnabled()
  {
    return true;
  }

  /**
   * @see de.willuhn.jameica.gui.boxes.Box#getDefaultIndex()
   */
  public int getDefaultIndex()
  {
    return 6;
  }

  /**
   * @see de.willuhn.jameica.gui.boxes.Box#getName()
   */
  public String getName()
  {
    return "Hibiscus: " + i18n.tr("Neue Ums�tze");
  }

  /**
   * @see de.willuhn.jameica.gui.Part#paint(org.eclipse.swt.widgets.Composite)
   */
  public void paint(Composite parent) throws RemoteException
  {
    GenericIterator list = de.willuhn.jameica.hbci.messaging.NeueUmsaetze.getNeueUmsaetze();
    UmsatzList umsaetze = new UmsatzList(list,new UmsatzDetail());
    umsaetze.addColumn(new KontoColumn());
    umsaetze.setFilterVisible(false);
    umsaetze.paint(parent);
  }

  /**
   * @see de.willuhn.jameica.gui.boxes.Box#isActive()
   */
  public boolean isActive()
  {
    return super.isActive() && !Settings.isFirstStart();
  }
 
  /**
   * @see de.willuhn.jameica.gui.boxes.AbstractBox#getHeight()
   */
  public int getHeight()
  {
    return 180;
  }
}


/*********************************************************************
* $Log: NeueUmsaetze.java,v $
* Revision 1.8  2011/04/29 15:33:28  willuhn
* @N Neue Spalte "ausgefuehrt_am", in der das tatsaechliche Ausfuehrungsdatum von Auftraegen vermerkt wird
*
* Revision 1.7  2010-08-12 17:12:32  willuhn
* @N Saldo-Chart komplett ueberarbeitet (Daten wurden vorher mehrmals geladen, Summen-Funktion, Anzeige mehrerer Konten, Durchschnitt ueber mehrere Konten, Bugfixing, echte "Homogenisierung" der Salden via SaldoFinder)
*
* Revision 1.6  2009/08/27 11:48:09  willuhn
* @N Eigenes Konto in Box "Neue Umsaetze" mit anzeigen
*
* Revision 1.5  2008/03/04 10:36:41  willuhn
* @N Default-Hoehe vergroessert
*
* Revision 1.4  2007/12/29 18:45:37  willuhn
* @N Hoehe von Boxen explizit konfigurierbar
*
* Revision 1.3  2007/12/18 17:10:22  willuhn
* @N Neues ExpandPart
* @N Boxen auf der Startseite koennen jetzt zusammengeklappt werden
*
* Revision 1.2  2007/03/02 14:49:14  willuhn
* @R removed old firststart view
* @C do not show boxes on first start
*
* Revision 1.1  2007/01/30 18:25:33  willuhn
* @N Bug 302
*
**********************************************************************/
TOP

Related Classes of de.willuhn.jameica.hbci.gui.boxes.NeueUmsaetze

TOP
Copyright © 2018 www.massapi.com. 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.