/* The contents of this file are subject to the Common Public Attribution License Version 1.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.projity.com/license . The License is based on the Mozilla Public License Version 1.1 but Sections 14 and 15 have been added to cover use of software over a computer network and provide for limited attribution for the Original Developer. In addition, Exhibit A has been modified to be consistent with Exhibit B. Software distributed under the License is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. The Original Code is OpenProj. The Original Developer is the Initial Developer and is Projity, Inc. All portions of the code written by Projity are Copyright (c) 2006, 2007. All Rights Reserved. Contributors Projity, Inc. Alternatively, the contents of this file may be used under the terms of the Projity End-User License Agreeement (the Projity License), in which case the provisions of the Projity License are applicable instead of those above. If you wish to allow use of your version of this file only under the terms of the Projity License and not to allow others to use your version of this file under the CPAL, indicate your decision by deleting the provisions above and replace them with the notice and other provisions required by the Projity License. If you do not delete the provisions above, a recipient may use your version of this file under either the CPAL or the Projity License. [NOTE: The text of this license may differ slightly from the text of the notices in Exhibits A and B of the license at http://www.projity.com/license. You should use the latest text at http://www.projity.com/license for your modifications. You may not remove this license text from the source files.] Attribution Information: Attribution Copyright Notice: Copyright � 2006, 2007 Projity, Inc. Attribution Phrase (not exceeding 10 words): Powered by OpenProj, an open source solution from Projity. Attribution URL: http://www.projity.com Graphic Image as provided in the Covered Code as file: openproj_logo.png with alternatives listed on http://www.projity.com/logo Display of Attribution Information is required in Larger Works which are defined in the CPAL as a work which combines Covered Code or portions thereof with code not governed by the terms of the CPAL. However, in addition to the other notice obligations, all copies of the Covered Code in Executable and Source Code form distributed must, as a form of attribution of the original author, include on each user interface screen the "OpenProj" logo visible to all users. The OpenProj logo should be located horizontally aligned with the menu bar and left justified on the top left of the screen adjacent to the File menu. The logo must be at least 100 x 25 pixels. When users click on the "OpenProj" logo it must direct them back to http://www.projity.com. */ package com.projity.pm.graphic.spreadsheet.time; import java.util.ArrayList; import java.util.EventListener; import javax.swing.event.EventListenerList; import com.projity.field.Field; import com.projity.field.FieldContext; import com.projity.field.FieldParseException; import com.projity.graphic.configuration.ActionList; import com.projity.graphic.configuration.CellStyle; import com.projity.grouping.core.Node; import com.projity.grouping.core.model.NodeModel; import com.projity.pm.graphic.model.cache.GraphicNode; import com.projity.pm.graphic.model.cache.NodeModelCache; import com.projity.pm.graphic.spreadsheet.common.CommonSpreadSheetModel; import com.projity.pm.graphic.timescale.CoordinatesConverter; import com.projity.pm.time.HasStartAndEnd; import com.projity.timescale.TimeScaleEvent; import com.projity.timescale.TimeScaleListener; import com.projity.util.Alert; /** * */ public class TimeSpreadSheetModel extends CommonSpreadSheetModel implements TimeScaleListener{ protected ArrayList selectedFieldArray; //timescale protected CoordinatesConverter coord; protected ArrayList timeIntervals; // cache: data filled by FieldContext fieldContext = new FieldContext(); // this is re-used like a renderer //TimeSpreadSheetModel with coord.getProjectTimeIterator() ArrayList fieldArray; public final ArrayList getFieldArray() { return fieldArray; } public TimeSpreadSheetModel(NodeModelCache cache,ArrayList fieldArray, CellStyle cellStyle, ActionList actionList) { super(cache,null,cellStyle,actionList); this.fieldArray = fieldArray; selectedFieldArray=new ArrayList(); timeIntervals=new ArrayList(); resetSelectedFieldArray(); //initCellStyle(); setFieldContext(fieldContext); } // public void graphicNodesCompositeEvent(CompositeCacheEvent compositeEvent){ // fireTableStructureChanged(); //// for (Iterator i=compositeEvent.getNodeEvents().iterator();i.hasNext();){ //// final CacheEvent e=(CacheEvent)i.next(); //// e.forIntervals(new Closure() { //// public void execute(Object obj) { //// CacheInterval i = (CacheInterval) obj; //// if (e.getType()==CacheEvent.NODES_CHANGED) //// fireTableRowsUpdated(i.getStart(), i.getEnd()); //// else if (e.getType()==CacheEvent.NODES_INSERTED) //// fireTableRowsInserted(i.getStart(), i.getEnd()); //// else if (e.getType()==CacheEvent.NODES_REMOVED) //// fireTableRowsDeleted(i.getStart(), i.getEnd()); //// } //// }); //// } // } // public TimeSpreadSheetModel(NodeModel model,ArrayList fieldArray, CellStyle cellStyle,String viewName) { // super(NodeModelCacheFactory.getInstance().createDefaultCache(model,viewName),fieldArray,cellStyle); // selectedFieldArray=new ArrayList(); // resetSelectedFieldArray(); // //initCellStyle(); // setFieldContext(fieldContext); // } /*public void initCellStyle(){ cellStyle=new CellStyle(){ CellFormat cellProperties=new CellFormat(); public CellFormat getCellProperties(GraphicNode node){ cellProperties.setBold(node.isSummary()); cellProperties.setCompositeIcon(node.isSummary()); cellProperties.setBackground((node.isAssignment())?"NORMAL_LIGHT_YELLOW":"NORMAL_YELLOW"); return cellProperties; } }; }*/ public void resetSelectedFieldArray(){ int oldSize=selectedFieldArray.size(); selectedFieldArray.clear(); if (fieldArray.size()>0) selectedFieldArray.add(fieldArray.get(0)); //only size is used if (oldSize!=selectedFieldArray.size()){ fireFieldArrayChanged(this); fireUpdateAll(); } } public void setFieldArray(ArrayList fieldArray) { this.fieldArray = fieldArray; resetSelectedFieldArray(); } public ArrayList getSelectedFieldArray() { return selectedFieldArray; } public void setSelectedFieldArray(ArrayList selectedFieldArray) { int oldSize=this.selectedFieldArray.size(); this.selectedFieldArray = selectedFieldArray; //only size is used if (oldSize!=selectedFieldArray.size()){ fireFieldArrayChanged(this); fireUpdateAll(); } } public void selectFieldArray(Field field){ int oldSize=selectedFieldArray.size(); if (selectedFieldArray.contains(field)){ selectedFieldArray.remove(field); if (selectedFieldArray.size()==0) resetSelectedFieldArray(); }else{ selectedFieldArray.add(selectedFieldArray.size(),field); } //only size is used if (oldSize!=selectedFieldArray.size()){ fireFieldArrayChanged(this); fireUpdateAll(); } } public boolean isComposite(GraphicNode node){ return node.isComposite(); } /*public int getColumnCount() { return 0;//TODO }*/ public int getRowMultiple() { return selectedFieldArray.size(); } void resetTimeIntervals(){ timeIntervals.clear(); } void addTimeInterval(HasStartAndEnd interval){ timeIntervals.add(interval); } public Object getValueAt(int row, int col) { if (col==0) return getFieldInRow(row).toString(); // Node node=getNodeInRow(row/getRowMultiple()); Node node=getNodeInRow(row); if (node.isVoid()) return null; getFieldContext().setInterval((HasStartAndEnd)timeIntervals.get(col-1)); return getFieldInRow(row).getValue(node, getCache().getWalkersModel(), fieldContext); //TODO } public void setValueAt(Object value, int row, int col) { Object oldValue=getValueAt(row,col); if (oldValue==null&&(value==null||"".equals(value))) return; if (col == 0) return; try { Node rowNode = getNodeInRow(row); if (rowNode.isVirtual()) return; getFieldContext().setInterval((HasStartAndEnd)timeIntervals.get(col-1)); getCache().getModel().setFieldValue(getFieldInRow(row),rowNode, this, value, fieldContext,NodeModel.NORMAL); fireTableCellUpdated(row, col); } catch (FieldParseException e) { Alert.error(e.getMessage()); //TODO clean up messages } } public Field getFieldInRow(int row){ if (selectedFieldArray.size()==0) return null; return (Field)selectedFieldArray.get(row%getRowMultiple()); } public Class getColumnClass(int col) { //for header only if (col==0) return String.class; return null; } public Class getRowClass(int row) { Field field=getFieldInRow(row); if (field==null) return String.class; else return field.getDisplayType(); } protected int columnCount=1; void incrementColumnCount(){columnCount++;} void decrementColumnCount(){columnCount--;} public int getColumnCount() { return columnCount;//((coord==null)?0:coord.countProjectIntervals())+1; } public boolean isCellEditable(int row, int col) { if (col==0) return false; Node node=getNodeInRow(row); if (node.isVoid()) return true; getFieldContext().setInterval((HasStartAndEnd)timeIntervals.get(col-1)); return ! getFieldInRow(row).isReadOnly(node, getCache().getWalkersModel(),fieldContext); } // timescale public CoordinatesConverter getCoord() { return coord; } public void setCoord(CoordinatesConverter coord) { if (this.coord!=null) this.coord.removeTimeScaleListener(this); this.coord = coord; coord.addTimeScaleListener(this); } public void timeScaleChanged(TimeScaleEvent e) { } //selectedFieldArray event handling protected EventListenerList listenerList = new EventListenerList(); public void addFieldArrayListener(FieldArrayListener l) { listenerList.add(FieldArrayListener.class, l); } public void removeFieldArrayListener(FieldArrayListener l) { listenerList.remove(FieldArrayListener.class, l); } public FieldArrayListener[] getFieldArrayListeners() { return (FieldArrayListener[]) listenerList.getListeners(FieldArrayListener.class); } protected void fireFieldArrayChanged(Object source) { Object[] listeners = listenerList.getListenerList(); FieldArrayEvent e = null; for (int i = listeners.length - 2; i >= 0; i -= 2) { if (listeners[i] == FieldArrayListener.class) { if (e == null) { e = new FieldArrayEvent(source,getSelectedFieldArray()); } ((FieldArrayListener) listeners[i + 1]).fieldArrayChanged(e); } } } public EventListener[] getFieldArrayListeners(Class listenerType) { return listenerList.getListeners(listenerType); } }