/* * org.openmicroscopy.shoola.agents.metadata.editor.DetectorComponent * *------------------------------------------------------------------------------ * Copyright (C) 2006-2009 University of Dundee. All rights reserved. * * * This program 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 2 of the License, or * (at your option) any later version. * This program 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 this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * *------------------------------------------------------------------------------ */ package org.openmicroscopy.shoola.agents.metadata.editor; //Java imports import java.awt.Font; import java.awt.GridBagLayout; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; import java.util.Set; import java.util.Map.Entry; import javax.swing.BorderFactory; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; //Third-party libraries //Application-internal dependencies import org.openmicroscopy.shoola.agents.util.DataComponent; import org.openmicroscopy.shoola.agents.util.EditorUtil; import org.openmicroscopy.shoola.env.data.model.EnumerationObject; import org.openmicroscopy.shoola.util.ui.JLabelButton; import org.openmicroscopy.shoola.util.ui.NumericalTextField; import org.openmicroscopy.shoola.util.ui.OMEComboBox; import org.openmicroscopy.shoola.util.ui.OMETextArea; import org.openmicroscopy.shoola.util.ui.UIUtilities; /** * Component displaying information about the detector. * * @author Jean-Marie Burel      * <a href="mailto:j.burel@dundee.ac.uk">j.burel@dundee.ac.uk</a> * @author Donald MacDonald      * <a href="mailto:donald@lifesci.dundee.ac.uk">donald@lifesci.dundee.ac.uk</a> * @version 3.0 * <small> * (<b>Internal version:</b> $Revision: $Date: $) * </small> * @since 3.0-Beta4 */ class DetectorComponent extends JPanel implements PropertyChangeListener { /** The component displaying the binning options. */ private OMEComboBox binningBox; /** The component displaying the detector options. */ private OMEComboBox detectorBox; /** The fields displaying the metadata. */ private Map<String, DataComponent> fieldsDetector; /** Button to show or hides the unset fields of the detector. */ private JLabelButton unsetDetector; /** Flag indicating the unset fields for the detector are displayed. */ private boolean unsetDetectorShown; /** Reference to the parent of this component. */ private AcquisitionDataUI parent; /** Reference to the Model. */ private EditorModel model; /** Resets the various boxes with enumerations. */ private void resetBoxes() { List<EnumerationObject> l; l = model.getChannelEnumerations(Editor.BINNING); EnumerationObject[] array = new EnumerationObject[l.size()+1]; Iterator<EnumerationObject> j = l.iterator(); int i = 0; while (j.hasNext()) { array[i] = j.next(); i++; } array[i] = new EnumerationObject(AnnotationUI.NO_SET_TEXT); binningBox = EditorUtil.createComboBox(array); l = model.getChannelEnumerations(Editor.DETECTOR_TYPE); array = new EnumerationObject[l.size()+1]; j = l.iterator(); i = 0; while (j.hasNext()) { array[i] = j.next(); i++; } array[i] = new EnumerationObject(AnnotationUI.NO_SET_TEXT); detectorBox = EditorUtil.createComboBox(array); } /** Initializes the components. */ private void initComponents() { resetBoxes(); fieldsDetector = new LinkedHashMap<String, DataComponent>(); unsetDetector = null; unsetDetectorShown = false; } /** Shows or hides the unset fields. */ private void displayUnsetDetectorFields() { unsetDetectorShown = !unsetDetectorShown; String s = AcquisitionDataUI.SHOW_UNSET; if (unsetDetectorShown) s = AcquisitionDataUI.HIDE_UNSET; unsetDetector.setText(s); parent.layoutFields(this, unsetDetector, fieldsDetector, unsetDetectorShown); } /** * Transforms the detector metadata. * * @param details The value to transform. */ private void transformDetectorSource(Map<String, Object> details) { DataComponent comp; JLabel label; JComponent area; String key; Object value; label = new JLabel(); Font font = label.getFont(); int sizeLabel = font.getSize()-2; Object selected; List notSet = (List) details.get(EditorUtil.NOT_SET); details.remove(EditorUtil.NOT_SET); if (notSet.size() > 0 && unsetDetector == null) { unsetDetector = parent.formatUnsetFieldsControl(); unsetDetector.addPropertyChangeListener(this); } Set entrySet = details.entrySet(); Entry entry; Iterator i = entrySet.iterator(); boolean set; String v = ""; while (i.hasNext()) { entry = (Entry) i.next(); key = (String) entry.getKey(); set = !notSet.contains(key); value = entry.getValue(); label = UIUtilities.setTextFont(key, Font.BOLD, sizeLabel); label.setBackground(UIUtilities.BACKGROUND_COLOR); if (EditorUtil.BINNING.equals(key)) { selected = model.getChannelEnumerationSelected(Editor.BINNING, (String) value); if (selected != null) binningBox.setSelectedItem(selected); else { set = false; binningBox.setSelectedIndex(binningBox.getItemCount()-1); notSet.add(key); } binningBox.setEditedColor(UIUtilities.EDITED_COLOR); area = binningBox;//parent.replaceCombobox(binningBox); } else if (EditorUtil.TYPE.equals(key)) { selected = model.getChannelEnumerationSelected( Editor.DETECTOR_TYPE, (String) value); if (selected != null) { detectorBox.setSelectedItem(selected); } else { set = false; notSet.add(key); detectorBox.setSelectedIndex(detectorBox.getItemCount()-1); } detectorBox.setEditedColor(UIUtilities.EDITED_COLOR); area = detectorBox;//parent.replaceCombobox(detectorBox); } else if (value instanceof Number) { area = UIUtilities.createComponent(NumericalTextField.class, null); if (value instanceof Double) { v = ""+UIUtilities.roundTwoDecimals( ((Number) value).doubleValue()); ((NumericalTextField) area).setNumberType(Double.class); } else if (value instanceof Float) { v = ""+UIUtilities.roundTwoDecimals( ((Number) value).doubleValue()); ((NumericalTextField) area).setNumberType(Float.class); } else v = ""+value; ((NumericalTextField) area).setText(v); ((NumericalTextField) area).setEditedColor( UIUtilities.EDITED_COLOR); } else { area = UIUtilities.createComponent(OMETextArea.class, null); if (value == null || value.equals("")) value = AnnotationUI.DEFAULT_TEXT; ((OMETextArea) area).setEditable(false); ((OMETextArea) area).setText((String) value); ((OMETextArea) area).setEditedColor(UIUtilities.EDITED_COLOR); } area.setEnabled(!set); comp = new DataComponent(label, area); comp.setEnabled(false); comp.setSetField(!notSet.contains(key)); fieldsDetector.put(key, comp); } } /** Builds and lays out the UI. */ private void buildGUI() { setBorder(BorderFactory.createTitledBorder("Detector")); setBackground(UIUtilities.BACKGROUND_COLOR); setLayout(new GridBagLayout()); } /** * Creates a new instance. * * @param parent The UI reference. * @param model Reference to the model. */ DetectorComponent(AcquisitionDataUI parent, EditorModel model) { this.parent = parent; this.model = model; initComponents(); buildGUI(); } /** * Transforms the detector metadata. * * @param details The value to transform. */ void displayDetector(Map<String, Object> details) { resetBoxes(); fieldsDetector.clear(); transformDetectorSource(details); parent.layoutFields(this, unsetDetector, fieldsDetector, unsetDetectorShown); parent.attachListener(fieldsDetector); } /** * Returns <code>true</code> if data to save, <code>false</code> * otherwise. * * @return See above. */ boolean hasDataToSave() { return parent.hasDataToSave(fieldsDetector); } /** Prepares the data to save. */ void prepareDataToSave() { } /** * Reacts to property fired by the <code>JLabelButton</code>. * @see PropertyChangeListener#propertyChange(PropertyChangeEvent) */ public void propertyChange(PropertyChangeEvent evt) { String name = evt.getPropertyName(); if (JLabelButton.SELECTED_PROPERTY.equals(name)) displayUnsetDetectorFields(); } }