/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ package org.openflexo.components.tabular; import java.awt.BorderLayout; import java.awt.FlowLayout; import java.util.Hashtable; import java.util.Map; import java.util.Vector; import java.util.logging.Level; import java.util.logging.Logger; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.SwingConstants; import org.openflexo.ch.FCH; import org.openflexo.foundation.FlexoModelObject; import org.openflexo.foundation.action.FlexoActionType; import org.openflexo.localization.FlexoLocalization; import org.openflexo.selection.SelectionListener; import org.openflexo.selection.SelectionManager; import org.openflexo.view.controller.FlexoController; /** * A compound tabular view represents a logical group of tabular views with a specified layout (for example on a JSplitPane), with * master/slave relationships. * * @author sguerin * */ public abstract class CompoundTabularView<O extends FlexoModelObject> extends JPanel implements SelectionListener { static final Logger logger = Logger.getLogger(CompoundTabularView.class.getPackage().getName()); private FlexoController _controller; private O _object; private JPanel controlPanel; private String title; private JComponent _contentPane; private Vector<TabularView> _masterTabularViews; private Vector<TabularView> _slaveTabularViews; /** * Stores controls: key is the JButton and value the FlexoActionType */ protected Hashtable<JButton, TabularViewAction> _controls; private JLabel titleLabel; public CompoundTabularView(O object, FlexoController controller, String t) { super(); _controller = controller; _object = object; this.title = t; _controls = new Hashtable<JButton, TabularViewAction>(); setLayout(new BorderLayout()); // controller.getSelectionManager().addToSelectionListeners(this); _masterTabularViews = new Vector<TabularView>(); _slaveTabularViews = new Vector<TabularView>(); } public FlexoController getController() { return _controller; } public SelectionManager getSelectionManager() { if (getController() != null) { return getController().getSelectionManager(); } return null; } public O getModelObject() { return _object; } protected JPanel getControlPanel() { if (controlPanel == null) { controlPanel = new JPanel(); controlPanel.setLayout(new FlowLayout()); } return controlPanel; } protected void addAction(TabularViewAction action) { JButton newButton = new JButton(); newButton.setText(action.getLocalizedName(newButton)); newButton.setIcon(action.getIcon()); newButton.setDisabledIcon(action.getDisabledIcon()); newButton.addActionListener(action); FCH.setHelpItem(newButton, action.getActionType().getUnlocalizedName()); getControlPanel().add(newButton); _controls.put(newButton, action); updateControls(); } protected void finalizeBuilding() { add(getTitlePanel(), BorderLayout.NORTH); add(getContentPane(), BorderLayout.CENTER); add(getControlPanel(), BorderLayout.SOUTH); validate(); } protected JPanel getTitlePanel() { titleLabel = new JLabel(FlexoLocalization.localizedForKeyWithParams(title, getModelObject()), SwingConstants.CENTER); JPanel titlePanel = new JPanel(); titlePanel.setLayout(new BorderLayout()); titlePanel.add(titleLabel, BorderLayout.CENTER); titlePanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); return titlePanel; } protected void updateTitlePanel() { titleLabel.setText(FlexoLocalization.localizedForKeyWithParams(title, getModelObject())); } protected JComponent getContentPane() { if (_contentPane == null) { _contentPane = buildContentPane(); } return _contentPane; } protected JComponent buildContentPane() { JLabel niLabel = new JLabel(FlexoLocalization.localizedForKey("not_implemented_yet"), SwingConstants.CENTER); JPanel niPanel = new JPanel(); niPanel.setLayout(new BorderLayout()); niPanel.add(niLabel, BorderLayout.CENTER); niPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10)); return niPanel; } /** * Returns the list of all master tabular views * * @return a Vector of TabularView instances */ public Vector<TabularView> getMasterTabularViews() { return _masterTabularViews; } /** * Returns the list of all slave tabular views * * @return a Vector of TabularView instances */ public Vector<TabularView> getSlaveTabularViews() { return _slaveTabularViews; } public void addToMasterTabularView(TabularView aMasterTabularView) { _masterTabularViews.add(aMasterTabularView); } public void addToSlaveTabularView(TabularView aSlaveTabularView, TabularView aMasterTabularView) { _slaveTabularViews.add(aSlaveTabularView); aMasterTabularView.addToSlaveTabularViews(aSlaveTabularView); } /** * Adds specified object to selection * * @param object */ @Override public void fireObjectSelected(FlexoModelObject object) { // addToSelection() received // logger.info ("addToSelection() "+object+" in "+this); // _focusedObject = object; for (TabularView next : _masterTabularViews) { next.fireObjectSelected(object); } for (TabularView next : _slaveTabularViews) { next.fireObjectSelected(object); } updateControls(); } /** * Removes specified object from selection * * @param object */ @Override public void fireObjectDeselected(FlexoModelObject object) { // removeFromSelection() received for (TabularView next : _masterTabularViews) { next.fireObjectDeselected(object); } for (TabularView next : _slaveTabularViews) { next.fireObjectDeselected(object); } updateControls(); } /** * Clear selection */ @Override public void fireResetSelection() { // resetSelection() received // _focusedObject = null; for (TabularView next : _masterTabularViews) { next.fireResetSelection(); } for (TabularView next : _slaveTabularViews) { next.fireResetSelection(); } updateControls(); } /** * Notify that the selection manager is performing a multiple selection */ @Override public void fireBeginMultipleSelection() { } /** * Notify that the selection manager has finished to perform a multiple selection */ @Override public void fireEndMultipleSelection() { } public void updateControls() { for (Map.Entry<JButton, TabularViewAction> e : _controls.entrySet()) { JButton button = e.getKey(); TabularViewAction action = e.getValue(); FlexoActionType actionType = action.getActionType(); try { button.setEnabled(actionType.isEnabled(action.getFocusedObject(), action.getGlobalSelection())); } catch (NullPointerException e1) { button.setEnabled(false); } } } public boolean represents(FlexoModelObject anObject) { if (logger.isLoggable(Level.FINE)) { logger.fine("represents() " + this + " obj: " + anObject); } if (anObject == null) { return false; } for (TabularView next : _masterTabularViews) { if (next.getModel().indexOf(anObject) > -1) { return true; } } for (TabularView next : _slaveTabularViews) { if (next.getModel().indexOf(anObject) > -1) { return true; } } return false; } /** * Returns all the objects currently placed in the SelectionManager which are represented (and thus, selected) in this view * * Return a Vector of FlexoModelObject * * @return */ public Vector<FlexoModelObject> getViewSelection() { // logger.info("View selection, current selection is "+getSelectionManager().getObjectSelection()); Vector<FlexoModelObject> returned = new Vector<FlexoModelObject>(getSelectionManager().getSelection()); for (FlexoModelObject next : getSelectionManager().getSelection()) { if (!represents(next)) { // logger.info("exclude "+next+" from view selection"); returned.remove(next); } } // logger.info("View selection, returned selection is "+returned); return returned; } }