/* $Id: TabChecklist.java 17815 2010-01-12 18:34:07Z linus $ ***************************************************************************** * Copyright (c) 2009 Contributors - see below * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * mvw ***************************************************************************** * * Some portions of this file was previously release using the BSD License: */ // Copyright (c) 1996-2007 The Regents of the University of California. All // Rights Reserved. Permission to use, copy, modify, and distribute this // software and its documentation without fee, and without a written // agreement is hereby granted, provided that the above copyright notice // and this paragraph appear in all copies. This software program and // documentation are copyrighted by The Regents of the University of // California. The software program and documentation are supplied "AS // IS", without any accompanying services from The Regents. The Regents // does not warrant that the operation of the program will be // uninterrupted or error-free. The end-user understands that the program // was developed for research purposes and is advised not to rely // exclusively on the program for any reason. IN NO EVENT SHALL THE // UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, // SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, // ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF // THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF // SUCH DAMAGE. THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY // WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE // PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE UNIVERSITY OF // CALIFORNIA HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, // UPDATES, ENHANCEMENTS, OR MODIFICATIONS. package org.argouml.cognitive.checklist.ui; import java.awt.BorderLayout; import java.awt.Dimension; import java.awt.Font; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.ComponentEvent; import java.awt.event.ComponentListener; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.beans.VetoableChangeListener; import javax.swing.JLabel; import javax.swing.JScrollPane; import javax.swing.JTable; import javax.swing.SwingUtilities; import javax.swing.event.ListSelectionEvent; import javax.swing.event.ListSelectionListener; import javax.swing.table.AbstractTableModel; import javax.swing.table.TableColumn; import org.apache.log4j.Logger; import org.argouml.application.api.AbstractArgoJPanel; import org.argouml.cognitive.Translator; import org.argouml.cognitive.checklist.CheckItem; import org.argouml.cognitive.checklist.CheckManager; import org.argouml.cognitive.checklist.Checklist; import org.argouml.cognitive.checklist.ChecklistStatus; import org.argouml.model.Model; import org.argouml.swingext.UpArrowIcon; import org.argouml.ui.LookAndFeelMgr; import org.argouml.ui.TabModelTarget; import org.argouml.ui.targetmanager.TargetEvent; import org.tigris.gef.presentation.Fig; /** * Tab to show the checklist for a certain element. */ public class TabChecklist extends AbstractArgoJPanel implements TabModelTarget, ActionListener, ListSelectionListener, ComponentListener { //////////////////////////////////////////////////////////////// // instance variables private Object target; private TableModelChecklist tableModel = null; private boolean shouldBeEnabled = false; private JTable table = new JTable(10, 2); /** * The constructor. */ public TabChecklist() { super("tab.checklist"); setIcon(new UpArrowIcon()); tableModel = new TableModelChecklist(this); table.setModel(tableModel); Font labelFont = LookAndFeelMgr.getInstance().getStandardFont(); table.setFont(labelFont); table.setIntercellSpacing(new Dimension(0, 1)); table.setShowVerticalLines(false); table.getSelectionModel().addListSelectionListener(this); table.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); TableColumn checkCol = table.getColumnModel().getColumn(0); TableColumn descCol = table.getColumnModel().getColumn(1); checkCol.setMinWidth(20); checkCol.setMaxWidth(30); checkCol.setWidth(30); descCol.setPreferredWidth(900); table.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); table.sizeColumnsToFit(-1); JScrollPane sp = new JScrollPane(table); setLayout(new BorderLayout()); add(new JLabel(Translator.localize("tab.checklist.warning")), BorderLayout.NORTH); add(sp, BorderLayout.CENTER); addComponentListener(this); } /** * Converts a selected element to a target that is appropriate for a * checklist.<p> * * The argument can be either * a Fig, if a Figure when something is selected from a diagram * or a model element when an object is selected from the explorer.<p> * * @param t that is an object. * @return target that is always model element. */ private Object findTarget(Object t) { if (t instanceof Fig) { Fig f = (Fig) t; t = f.getOwner(); } return t; } //////////////////////////////////////////////////////////////// // accessors /** * Actually prepares the Tab. * * @param t is the target to show the list for. */ public void setTarget(Object t) { target = findTarget(t); if (target == null) { shouldBeEnabled = false; return; } shouldBeEnabled = true; if (isVisible()) { setTargetInternal(target); } } private void setTargetInternal(Object t) { if (t == null) { return; } Checklist cl = CheckManager.getChecklistFor(t); if (cl == null) { target = null; shouldBeEnabled = false; return; } tableModel.setTarget(t); resizeColumns(); } /* * @see org.argouml.ui.TabTarget#getTarget() */ public Object getTarget() { return target; } /* * @see org.argouml.ui.TabTarget#refresh() */ public void refresh() { setTarget(target); } /* * @see org.argouml.ui.TabTarget#shouldBeEnabled(java.lang.Object) */ public boolean shouldBeEnabled(Object t) { t = findTarget(t); if (t == null) { shouldBeEnabled = false; return shouldBeEnabled; } shouldBeEnabled = true; Checklist cl = CheckManager.getChecklistFor(t); if (cl == null) { shouldBeEnabled = false; return shouldBeEnabled; } return shouldBeEnabled; } /** * Resize the columns to fit. */ public void resizeColumns() { TableColumn checkCol = table.getColumnModel().getColumn(0); TableColumn descCol = table.getColumnModel().getColumn(1); checkCol.setMinWidth(20); checkCol.setMaxWidth(30); checkCol.setWidth(30); descCol.setPreferredWidth(900); table.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN); table.sizeColumnsToFit(0); validate(); } //////////////////////////////////////////////////////////////// // event handling /* * Enable buttons when selection made. * * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ public void actionPerformed(ActionEvent ae) { } /* * @see javax.swing.event.ListSelectionListener#valueChanged(javax.swing.event.ListSelectionEvent) */ public void valueChanged(ListSelectionEvent lse) { } /* * @see org.argouml.ui.targetmanager.TargetListener#targetAdded(org.argouml.ui.targetmanager.TargetEvent) */ public void targetAdded(TargetEvent e) { } /* * @see org.argouml.ui.targetmanager.TargetListener#targetRemoved(org.argouml.ui.targetmanager.TargetEvent) */ public void targetRemoved(TargetEvent e) { setTarget(e.getNewTarget()); } /* * @see org.argouml.ui.targetmanager.TargetListener#targetSet(org.argouml.ui.targetmanager.TargetEvent) */ public void targetSet(TargetEvent e) { setTarget(e.getNewTarget()); } /* * @see java.awt.event.ComponentListener#componentShown(java.awt.event.ComponentEvent) */ public void componentShown(ComponentEvent e) { // Update our model with our saved target setTargetInternal(target); } /* * @see java.awt.event.ComponentListener#componentHidden(java.awt.event.ComponentEvent) */ public void componentHidden(ComponentEvent e) { // Stop updating model when we're not visible setTargetInternal(null); } public void componentMoved(ComponentEvent e) { // ignored } public void componentResized(ComponentEvent e) { // ignored } } /* end class TabChecklist */ /** * The table model for checklists. */ class TableModelChecklist extends AbstractTableModel implements VetoableChangeListener, PropertyChangeListener { /** * Logger. */ private static final Logger LOG = Logger.getLogger(TableModelChecklist.class); //////////////// // instance varables private Object target; private TabChecklist panel; //////////////// // constructor /** * Constructor. * * @param tc The TabChecklist to show. */ public TableModelChecklist(TabChecklist tc) { panel = tc; } //////////////// // accessors /** * This function is called when the target is changed (by the user). * It updates the items, and causes events to arrive when the UML model * of the new target gets updated.<p> * * Limited to the target name changes, to reduce the number of events fired. * * @param t the new target */ public void setTarget(Object t) { if (Model.getFacade().isAElement(target)) { Model.getPump().removeModelEventListener(this, target); } target = t; if (Model.getFacade().isAElement(target)) { Model.getPump().addModelEventListener(this, target, "name"); } fireTableStructureChanged(); } //////////////// // TableModel implemetation /* * @see javax.swing.table.TableModel#getColumnCount() */ public int getColumnCount() { return 2; } /* * @see javax.swing.table.TableModel#getColumnName(int) */ @Override public String getColumnName(int c) { if (c == 0) { return "X"; } if (c == 1) { return Translator.localize("tab.checklist.description"); } return "XXX"; } /* * @see javax.swing.table.TableModel#getColumnClass(int) */ public Class getColumnClass(int c) { if (c == 0) { return Boolean.class; } else if (c == 1) { return String.class; } else { return String.class; } } /* * @see javax.swing.table.TableModel#isCellEditable(int, int) */ @Override public boolean isCellEditable(int row, int col) { return col == 0; } /* * @see javax.swing.table.TableModel#getRowCount() */ public int getRowCount() { if (target == null) { return 0; } Checklist cl = CheckManager.getChecklistFor(target); if (cl == null) { return 0; } return cl.size(); } /* * @see javax.swing.table.TableModel#getValueAt(int, int) */ public Object getValueAt(int row, int col) { Checklist cl = CheckManager.getChecklistFor(target); if (cl == null) { return "no checklist"; } CheckItem ci = cl.get(row); if (col == 0) { ChecklistStatus stat = CheckManager.getStatusFor(target); return (stat.contains(ci)) ? Boolean.TRUE : Boolean.FALSE; } else if (col == 1) { return ci.getDescription(target); } else { return "CL-" + row * 2 + col; } } /* * @see javax.swing.table.TableModel#setValueAt(java.lang.Object, int, int) */ @Override public void setValueAt(Object aValue, int rowIndex, int columnIndex) { LOG.debug("setting table value " + rowIndex + ", " + columnIndex); if (columnIndex != 0) { return; } if (!(aValue instanceof Boolean)) { return; } boolean val = ((Boolean) aValue).booleanValue(); Checklist cl = CheckManager.getChecklistFor(target); if (cl == null) { return; } CheckItem ci = cl.get(rowIndex); if (columnIndex == 0) { ChecklistStatus stat = CheckManager.getStatusFor(target); if (val) { stat.add(ci); } else { stat.remove(ci); } } } //////////////// // event handlers /* * @see java.beans.VetoableChangeListener#vetoableChange(java.beans.PropertyChangeEvent) */ public void vetoableChange(PropertyChangeEvent pce) { SwingUtilities.invokeLater(new Runnable() { public void run() { fireTableStructureChanged(); panel.resizeColumns(); } }); } /* * @see java.beans.PropertyChangeListener#propertyChange(java.beans.PropertyChangeEvent) */ public void propertyChange(PropertyChangeEvent evt) { fireTableStructureChanged(); panel.resizeColumns(); } }