Package de.willuhn.jameica.hbci.gui.parts

Source Code of de.willuhn.jameica.hbci.gui.parts.UmsatzTypList$MyMessageConsumer

/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/gui/parts/UmsatzTypList.java,v $
* $Revision: 1.12 $
* $Date: 2009/09/16 16:57:11 $
* $Author: willuhn $
* $Locker:  $
* $State: Exp $
*
* Copyright (c) by willuhn.webdesign
* All rights reserved
*
**********************************************************************/

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

import java.rmi.RemoteException;
import java.util.Hashtable;

import org.eclipse.swt.events.DisposeEvent;
import org.eclipse.swt.events.DisposeListener;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.graphics.RGB;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.TableItem;

import de.willuhn.datasource.GenericObject;
import de.willuhn.jameica.gui.Action;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.jameica.gui.Part;
import de.willuhn.jameica.gui.formatter.Formatter;
import de.willuhn.jameica.gui.formatter.TableFormatter;
import de.willuhn.jameica.gui.parts.TablePart;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.Settings;
import de.willuhn.jameica.hbci.messaging.ImportMessage;
import de.willuhn.jameica.hbci.messaging.ObjectChangedMessage;
import de.willuhn.jameica.hbci.messaging.ObjectMessage;
import de.willuhn.jameica.hbci.rmi.UmsatzTyp;
import de.willuhn.jameica.hbci.server.UmsatzTypUtil;
import de.willuhn.jameica.messaging.Message;
import de.willuhn.jameica.messaging.MessageConsumer;
import de.willuhn.jameica.system.Application;
import de.willuhn.logging.Logger;
import de.willuhn.util.I18N;

/**
* Implementierung einer fix und fertig vorkonfigurierten Liste mit den existiernden Umsatz-Typen.
*/
public class UmsatzTypList extends TablePart implements Part
{

  private I18N i18n = null;
  private MessageConsumer mc = null;
 
  private static Hashtable<String,Color> colorCache = new Hashtable<String,Color>();

  /**
   * ct.
   * @param action
   * @throws RemoteException
   */
  public UmsatzTypList(Action action) throws RemoteException
  {
    super(Settings.getDBService().createList(UmsatzTyp.class), action);
    this.i18n = Application.getPluginLoader().getPlugin(HBCI.class).getResources().getI18N();
    addColumn(i18n.tr("Bezeichnung"),"name");
    addColumn(i18n.tr("Nummer"),"nummer-int"); // BUGZILLA 554
    addColumn(i18n.tr("Suchbegriff"),"pattern"); // BUGZILLA 756
    addColumn(i18n.tr("Umsatzart"),"umsatztyp",new Formatter() {
      public String format(Object o)
      {
        if (o == null)
          return i18n.tr("egal");
        return UmsatzTypUtil.getNameForType(((Integer) o).intValue());
      }
    });
   
    this.setFormatter(new TableFormatter()
    {
      /**
       * @see de.willuhn.jameica.gui.formatter.TableFormatter#format(org.eclipse.swt.widgets.TableItem)
       */
      public void format(TableItem item)
      {
        if (item == null)
          return;

        try
        {
          UmsatzTyp ut = (UmsatzTyp) item.getData();
          if (ut == null || !ut.isCustomColor())
            return;

          int[] color = ut.getColor();
          if (color == null || color.length != 3)
            return;
         
          RGB rgb = new RGB(color[0],color[1],color[2]);
          Color c = colorCache.get(rgb.toString());
          if (c == null)
          {
            c = new Color(GUI.getDisplay(),rgb);
            colorCache.put(rgb.toString(),c);
          }
          item.setForeground(c);
        }
        catch (Exception e)
        {
          Logger.error("unable to apply custom color",e);
        }
      }
    });

    this.setMulti(true);
    this.setSummary(false);
    this.setRememberColWidths(true);
    this.setRememberOrder(true);
    this.setContextMenu(new de.willuhn.jameica.hbci.gui.menus.UmsatzTypList());
   
    this.mc = new MyMessageConsumer();
    Application.getMessagingFactory().registerMessageConsumer(this.mc);
  }
 
  /**
   * @see de.willuhn.jameica.gui.Part#paint(org.eclipse.swt.widgets.Composite)
   */
  public synchronized void paint(Composite parent) throws RemoteException
  {
    parent.addDisposeListener(new DisposeListener() {
      public void widgetDisposed(DisposeEvent e)
      {
        Application.getMessagingFactory().unRegisterMessageConsumer(mc);
      }
    });
    super.paint(parent);
  }

 
  /**
   * Hierueber werden wir ueber importierte Umsatz-Typen informiert und aktualisieren
   * die Tabelle.
   */
  private class MyMessageConsumer implements MessageConsumer
  {

    /**
     * @see de.willuhn.jameica.messaging.MessageConsumer#autoRegister()
     */
    public boolean autoRegister()
    {
      return false;
    }

    /**
     * @see de.willuhn.jameica.messaging.MessageConsumer#getExpectedMessageTypes()
     */
    public Class[] getExpectedMessageTypes()
    {
      return new Class[]{
        ImportMessage.class,
        ObjectChangedMessage.class
      };
    }

    /**
     * @see de.willuhn.jameica.messaging.MessageConsumer#handleMessage(de.willuhn.jameica.messaging.Message)
     */
    public void handleMessage(Message message) throws Exception
    {
      final GenericObject data = ((ObjectMessage)message).getObject();

      if (data == null || !(data instanceof UmsatzTyp))
        return;

      GUI.getDisplay().syncExec(new Runnable() {
        public void run()
        {
          try
          {
            removeItem(data);
            addItem(data);
            sort();
          }
          catch (Exception e)
          {
            Logger.error("unable to add object to list",e);
          }
        }
      });

    }
   
  }
}


/**********************************************************************
* $Log: UmsatzTypList.java,v $
* Revision 1.12  2009/09/16 16:57:11  willuhn
* @N BUGZILLA 756 - Teil 1
*
* Revision 1.11  2009/05/08 13:58:30  willuhn
* @N Icons in allen Menus und auf allen Buttons
* @N Fuer Umsatz-Kategorien koennen nun benutzerdefinierte Farben vergeben werden
*
* Revision 1.10  2008/08/29 16:46:24  willuhn
* @N BUGZILLA 616
*
* Revision 1.9  2008/02/27 10:31:20  willuhn
* @B Bug 554
*
* Revision 1.8  2008/02/13 23:44:27  willuhn
* @R Hibiscus-Eigenformat (binaer-serialisierte Objekte) bei Export und Import abgeklemmt
* @N Import und Export von Umsatz-Kategorien im XML-Format
* @B Verzaehler bei XML-Import
*
* Revision 1.7  2007/03/10 07:17:58  jost
* Neu: Nummer für die Sortierung der Umsatz-Kategorien
*
* Revision 1.6  2006/11/24 00:07:09  willuhn
* @C Konfiguration der Umsatz-Kategorien in View Einstellungen verschoben
* @N Redesign View Einstellungen
*
* Revision 1.5  2006/11/23 23:24:17  willuhn
* @N Umsatz-Kategorien: DB-Update, Edit
*
* Revision 1.4  2006/11/23 17:25:37  willuhn
* @N Umsatz-Kategorien - in PROGRESS!
*
* Revision 1.3  2005/12/30 00:14:45  willuhn
* @N first working pie charts
*
* Revision 1.2  2005/12/29 01:22:12  willuhn
* @R UmsatzZuordnung entfernt
* @B Debugging am Pie-Chart
*
* Revision 1.1  2005/12/05 20:16:15  willuhn
* @N Umsatz-Filter Refactoring
*
**********************************************************************/
TOP

Related Classes of de.willuhn.jameica.hbci.gui.parts.UmsatzTypList$MyMessageConsumer

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.