/* ***************************************************************************** * JFire - it's hot - Free ERP System - http://jfire.org * * Copyright (C) 2004-2005 NightLabs - http://NightLabs.org * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Lesser General Public * * License as published by the Free Software Foundation; either * * version 2.1 of the License, or (at your option) any later version. * * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * * Lesser General Public License for more details. * * * * You should have received a copy of the GNU Lesser General Public * * License along with this library; if not, write to the * * Free Software Foundation, Inc., * * 51 Franklin St, Fifth Floor, * * Boston, MA 02110-1301 USA * * * * Or get it online : * * http://opensource.org/licenses/lgpl-license.php * * * * * ******************************************************************************/ package org.nightlabs.jfire.trade.ui.accounting; import java.util.ArrayList; import java.util.Collection; import java.util.HashSet; import java.util.Iterator; import java.util.List; import javax.jdo.JDOHelper; import org.eclipse.core.runtime.IStatus; import org.eclipse.core.runtime.Status; import org.eclipse.jface.viewers.ArrayContentProvider; import org.eclipse.jface.viewers.IStructuredSelection; import org.eclipse.jface.viewers.TableViewer; import org.eclipse.swt.SWT; import org.eclipse.swt.graphics.Image; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableColumn; import org.nightlabs.base.ui.job.Job; import org.nightlabs.base.ui.layout.WeightedTableLayout; import org.nightlabs.base.ui.resource.SharedImages; import org.nightlabs.base.ui.table.AbstractTableComposite; import org.nightlabs.base.ui.table.TableLabelProvider; import org.nightlabs.jdo.NLJDOHelper; import org.nightlabs.jfire.accounting.Account; import org.nightlabs.jfire.accounting.SummaryAccount; import org.nightlabs.jfire.accounting.dao.AccountDAO; import org.nightlabs.jfire.trade.ui.TradePlugin; import org.nightlabs.jfire.trade.ui.account.editor.AccountConfigurationPageController; import org.nightlabs.jfire.trade.ui.resource.Messages; import org.nightlabs.jfire.transfer.id.AnchorID; import org.nightlabs.progress.ProgressMonitor; import org.nightlabs.util.NLLocale; /** * A Table to view the SummaryAccounts of an Account. * * @author Alexander Bieber <alex[AT]nightlabs[DOT]de> * @author Daniel Mazurek <daniel[AT]nightlabs[DOT]de> * */ public class AccountSummaryAccountsTable extends AbstractTableComposite<Account> { private class ContentProvider extends ArrayContentProvider { @Override public Object[] getElements(Object inputElement) { if (inputElement instanceof Account) { Account account = (Account)inputElement; return account.getSummaryAccounts().toArray(); } return null; } } private class LabelProvider extends TableLabelProvider { @Override public Image getColumnImage(Object element, int columnIndex) { if (columnIndex != 0) return null; return SharedImages.getSharedImage(TradePlugin.getDefault(), AccountSummaryAccountsTable.class, "summary"); //$NON-NLS-1$ } public String getColumnText(Object element, int columnIndex) { if (element instanceof SummaryAccount) return ((SummaryAccount)element).getName().getText(NLLocale.getDefault().getLanguage()); return null; } } public static final String[] FETCH_GROUPS = AccountConfigurationPageController.FETCH_GROUPS; private Account account; /** * @param parent * @param style */ public AccountSummaryAccountsTable(Composite parent, int style) { super(parent, style); } /** * @param parent * @param style * @param initTable */ public AccountSummaryAccountsTable(Composite parent, int style, boolean initTable) { super(parent, style, initTable); } @Override protected void createTableColumns(TableViewer tableViewer, Table table) { new TableColumn(table, SWT.LEFT).setText(Messages.getString("org.nightlabs.jfire.trade.ui.accounting.AccountSummaryAccountsTable.summaryAccountTableColumn.text")); //$NON-NLS-1$ table.setLayout(new WeightedTableLayout(new int[] {1})); } /** * @see org.nightlabs.base.ui.table.AbstractTableComposite#setTableProvider(org.eclipse.jface.viewers.TableViewer) */ @Override protected void setTableProvider(TableViewer tableViewer) { tableViewer.setContentProvider(new ContentProvider()); tableViewer.setLabelProvider(new LabelProvider()); } public void setInput(Account account) { this.account = account; getTableViewer().setInput(account); } public void addSummaryAccount(final SummaryAccount summaryAccount) { Job job = new Job("Load Summary Account") { @Override protected IStatus run(ProgressMonitor monitor) throws Exception { // take summaryAccount form DAO to fetch with the right fetchGroups SummaryAccount sumAccount = (SummaryAccount) AccountDAO.sharedInstance().getAccount( (AnchorID)JDOHelper.getObjectId(summaryAccount), FETCH_GROUPS, NLJDOHelper.MAX_FETCH_DEPTH_NO_LIMIT, monitor); // IMHO not necessary, daniel // and make copy to avoid putting of wrong summaryAccount into cache // summaryAccount = Util.cloneSerializable(summaryAccount); account.addSummaryAccount(sumAccount); getDisplay().asyncExec(new Runnable() { @Override public void run() { getTableViewer().refresh(); } }); return Status.OK_STATUS; } }; job.setSystem(true); job.schedule(); } public void removeSummaryAccount(final SummaryAccount summaryAccount) { // ((ContentProvider)getTableViewer().getContentProvider()).removeSummaryAccount(summaryAccount); // getTableViewer().refresh(); Job job = new Job("Load Summary Account") { @Override protected IStatus run(ProgressMonitor monitor) throws Exception { // take summaryAccount form DAO to fetch with the right fetchGroups SummaryAccount sumAccount = (SummaryAccount) AccountDAO.sharedInstance().getAccount( (AnchorID)JDOHelper.getObjectId(summaryAccount), FETCH_GROUPS, NLJDOHelper.MAX_FETCH_DEPTH_NO_LIMIT, monitor); // IMHO not necessary, daniel // summaryAccount = Util.cloneSerializable(summaryAccount); account.removeSummaryAccount(sumAccount); getDisplay().asyncExec(new Runnable() { @Override public void run() { getTableViewer().refresh(); } }); return Status.OK_STATUS; } }; job.setSystem(true); job.schedule(); } /** * @return The first selected SummaryAccount or null if none selected */ public Account getSelectedSummaryAccount() { IStructuredSelection selection = (IStructuredSelection)getTableViewer().getSelection(); if (selection.size() > 0) return (Account)selection.getFirstElement(); return null; } /** * @return All selected SummaryAccount or null if none selected */ public Collection<Account> getSelectedSummaryAccounts() { IStructuredSelection selection = (IStructuredSelection)getTableViewer().getSelection(); List<Account> result = new ArrayList<Account>(); if (selection.size() > 0) { for (Iterator<Account> iter = selection.iterator(); iter.hasNext();) { Account account = iter.next(); result.add(account); } } return result; } /** * Returns a Collection of AnchorID that can be passed to * {@link org.nightlabs.jfire.accounting.AccountingManager#setAccountSummaryAccounts(org.nightlabs.jfire.transfer.id.AnchorID, java.util.Collection)} * to set the list of SummaryAccounts for the account set here with {@link #setInput(Account)}. */ public Collection<AnchorID> getSummaryAccounts() { Collection<SummaryAccount> summaryAccounts = account.getSummaryAccounts(); Collection<AnchorID> result = new HashSet<AnchorID>(); for (Iterator<SummaryAccount> iter = summaryAccounts.iterator(); iter.hasNext();) { SummaryAccount summaryAccount = iter.next(); result.add((AnchorID)JDOHelper.getObjectId(summaryAccount)); } return result; } }