/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008, Open Source Geospatial Foundation (OSGeo) * (C) 2008 - 2009, Johann Sorel * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; * version 2.1 of the License. * * This library 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 * Lesser General Public License for more details. */ package org.geotoolkit.gui.swing.style; import java.awt.Component; import java.beans.PropertyChangeEvent; import java.beans.PropertyChangeListener; import javax.swing.GroupLayout; import javax.swing.GroupLayout.Alignment; import javax.swing.JLabel; import javax.swing.LayoutStyle; import javax.swing.SwingConstants; import org.geotoolkit.gui.swing.resource.MessageBundle; import org.geotoolkit.map.MapLayer; import org.opengis.filter.expression.Expression; /** * * @author Johann Sorel * @module */ public class JOffSetPane extends StyleElementEditor<Expression> { /** Creates new form JOffSetPane */ public JOffSetPane() { super(Expression.class); initComponents(); guiOffset.setModel(0d, Double.NEGATIVE_INFINITY, Double.POSITIVE_INFINITY, 1d); } /** * {@inheritDoc } */ @Override public void setLayer(final MapLayer layer) { guiOffset.setLayer(layer); } /** * {@inheritDoc } */ @Override public MapLayer getLayer() { return guiOffset.getLayer(); } /** * {@inheritDoc } */ @Override public void parse(final Expression target) { guiOffset.parse(target); } /** * {@inheritDoc } */ @Override public Expression create() { return guiOffset.create(); } @Override protected Object[] getFirstColumnComponents() { return new Object[]{guiLabel}; } /** 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. */ @SuppressWarnings("unchecked") // <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents private void initComponents() { guiLabel = new JLabel(); guiOffset = new JNumberExpressionPane(); setOpaque(false); guiLabel.setText(MessageBundle.format("offset")); // NOI18N guiOffset.addPropertyChangeListener(new PropertyChangeListener() { public void propertyChange(PropertyChangeEvent evt) { JOffSetPane.this.propertyChange(evt); } }); GroupLayout layout = new GroupLayout(this); this.setLayout(layout); layout.setHorizontalGroup( layout.createParallelGroup(Alignment.LEADING) .addGroup(layout.createSequentialGroup() .addComponent(guiLabel) .addPreferredGap(LayoutStyle.ComponentPlacement.RELATED) .addComponent(guiOffset, GroupLayout.DEFAULT_SIZE, GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)) ); layout.setVerticalGroup( layout.createParallelGroup(Alignment.LEADING) .addComponent(guiLabel) .addComponent(guiOffset, GroupLayout.PREFERRED_SIZE, GroupLayout.DEFAULT_SIZE, GroupLayout.PREFERRED_SIZE) ); layout.linkSize(SwingConstants.VERTICAL, new Component[] {guiLabel, guiOffset}); }// </editor-fold>//GEN-END:initComponents private void propertyChange(PropertyChangeEvent evt) {//GEN-FIRST:event_propertyChange // TODO add your handling code here: if (PROPERTY_UPDATED.equalsIgnoreCase(evt.getPropertyName())) { firePropertyChange(PROPERTY_UPDATED, null, create()); } }//GEN-LAST:event_propertyChange // Variables declaration - do not modify//GEN-BEGIN:variables private JLabel guiLabel; private JNumberExpressionPane guiOffset; // End of variables declaration//GEN-END:variables }