package org.autoplot.renderer; import org.das2.components.propertyeditor.EnumerationEditor; import java.awt.BorderLayout; import org.autoplot.help.AutoplotHelpSystem; import org.das2.graph.DasColorBar; import org.das2.graph.SpectrogramRenderer; import org.jdesktop.beansbinding.AutoBinding.UpdateStrategy; import org.jdesktop.beansbinding.BeanProperty; import org.jdesktop.beansbinding.BindingGroup; import org.jdesktop.beansbinding.Bindings; import org.autoplot.PlotStylePanel; import org.autoplot.dom.PlotElement; import org.autoplot.dom.PlotElementStyle; /** * * @author jbf */ public class SpectrogramStylePanel extends javax.swing.JPanel implements PlotStylePanel.StylePanel { EnumerationEditor edit; EnumerationEditor rebin; BindingGroup elementBindingContext; /** Creates new form PlotStylePanel */ public SpectrogramStylePanel() { initComponents(); edit = new EnumerationEditor(); edit.setValue( DasColorBar.Type.GRAYSCALE ); colortableTypePanel.add(edit.getCustomEditor(), BorderLayout.CENTER); rebin = new EnumerationEditor(); rebin.setValue( SpectrogramRenderer.RebinnerEnum.binAverage ); rebinPanel.add(rebin.getCustomEditor(), BorderLayout.CENTER); validate(); AutoplotHelpSystem.getHelpSystem().registerHelpID( this, PlotStylePanel.STYLEPANEL_HELP_ID ); } public void releaseElementBindings() { if ( elementBindingContext!=null ) { elementBindingContext.unbind(); elementBindingContext=null; } } public synchronized void doElementBindings(PlotElement element) { PlotElementStyle style= element.getStyle(); BindingGroup bc = new BindingGroup(); bc.addBinding(Bindings.createAutoBinding( UpdateStrategy.READ_WRITE, style, BeanProperty.create( "colortable" ), edit, BeanProperty.create("value"))); bc.addBinding(Bindings.createAutoBinding( UpdateStrategy.READ_WRITE, style, BeanProperty.create( "rebinMethod" ), rebin, BeanProperty.create("value"))); if ( elementBindingContext!=null ) releaseElementBindings(); bc.bind(); repaint(); elementBindingContext= bc; } /** This method is called from within the constructor to * initialize the form. * WARNING: Do NOT modify this code. The content of this method is * always regenerated by the Form Editor. */ // //GEN-BEGIN:initComponents private void initComponents() { jPanel1 = new javax.swing.JPanel(); colortableTypePanel = new javax.swing.JPanel(); jLabel4 = new javax.swing.JLabel(); jLabel5 = new javax.swing.JLabel(); rebinPanel = new javax.swing.JPanel(); jPanel1.setBorder(javax.swing.BorderFactory.createTitledBorder("Spectrogram [?]")); colortableTypePanel.setLayout(new java.awt.BorderLayout()); jLabel4.setText("Colortable:"); jLabel4.setToolTipText("Color table for spectrograms"); jLabel5.setText("Rebin:"); jLabel5.setToolTipText("method for binning to pixel resolution"); rebinPanel.setToolTipText(""); rebinPanel.setLayout(new java.awt.BorderLayout()); org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1); jPanel1.setLayout(jPanel1Layout); jPanel1Layout.setHorizontalGroup( jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jPanel1Layout.createSequentialGroup() .addContainerGap() .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jLabel4) .add(jLabel5)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(rebinPanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 152, Short.MAX_VALUE) .add(colortableTypePanel, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 152, Short.MAX_VALUE)) .addContainerGap()) ); jPanel1Layout.setVerticalGroup( jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jPanel1Layout.createSequentialGroup() .add(7, 7, 7) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.CENTER) .add(jLabel4, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 27, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE) .add(colortableTypePanel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 28, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)) .addPreferredGap(org.jdesktop.layout.LayoutStyle.RELATED) .add(jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.CENTER) .add(jLabel5) .add(rebinPanel, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE, 25, org.jdesktop.layout.GroupLayout.PREFERRED_SIZE)) .add(253, 253, 253)) ); jPanel1Layout.linkSize(new java.awt.Component[] {colortableTypePanel, rebinPanel}, org.jdesktop.layout.GroupLayout.VERTICAL); org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) ); layout.setVerticalGroup( layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING) .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, 349, Short.MAX_VALUE) ); }// //GEN-END:initComponents // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.JPanel colortableTypePanel; private javax.swing.JLabel jLabel4; private javax.swing.JLabel jLabel5; private javax.swing.JPanel jPanel1; private javax.swing.JPanel rebinPanel; // End of variables declaration//GEN-END:variables }