/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2007 - 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.Dimension; import java.awt.event.ActionEvent; import java.beans.PropertyChangeEvent; import javax.swing.ImageIcon; import org.geotoolkit.gui.swing.resource.IconBundle; import org.geotoolkit.map.MapLayer; import org.geotoolkit.style.StyleConstants; import org.opengis.filter.expression.Expression; /** * * @author Johann Sorel (Puzzle-GIS) * @module */ public class JLineCapExpressionPane extends StyleElementEditor<Expression>{ private static final ImageIcon ICON_CAP_ROUND = IconBundle.getIcon("16_linecap_round"); private static final ImageIcon ICON_CAP_SQUARE = IconBundle.getIcon("16_linecap_square"); private static final ImageIcon ICON_CAP_BUTT = IconBundle.getIcon("16_linecap_butt"); private final Dimension specialSize; /** Creates new form JColorExpressionPane */ public JLineCapExpressionPane() { super(Expression.class); initComponents(); guiRound.setIcon(ICON_CAP_ROUND); guiSquare.setIcon(ICON_CAP_SQUARE); guiButt.setIcon(ICON_CAP_BUTT); specialSize = guiSpecial.getPreferredSize(); } public void setExpressionVisible(boolean visible){ guiSpecial.setPreferredSize( visible ? new Dimension(specialSize) : new Dimension(1, 1)); guiSpecial.setVisible(visible); } @Override public void setLayer(final MapLayer layer) { super.setLayer(layer); guiSpecial.setLayer(layer); } /** 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() { java.awt.GridBagConstraints gridBagConstraints; capGroup = new javax.swing.ButtonGroup(); guiSpecial = new org.geotoolkit.gui.swing.style.JSpecialExpressionButton(); guiSquare = new javax.swing.JToggleButton(); guiRound = new javax.swing.JToggleButton(); guiButt = new javax.swing.JToggleButton(); jLabel1 = new javax.swing.JLabel(); setOpaque(false); setLayout(new java.awt.GridBagLayout()); guiSpecial.addPropertyChangeListener(new java.beans.PropertyChangeListener() { public void propertyChange(java.beans.PropertyChangeEvent evt) { guiSpecialPropertyChange(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 3; gridBagConstraints.gridy = 0; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.weighty = 1.0; add(guiSpecial, gridBagConstraints); capGroup.add(guiSquare); guiSquare.setBorderPainted(false); guiSquare.setIconTextGap(0); guiSquare.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { guiSquareActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 0; gridBagConstraints.gridy = 0; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.weighty = 1.0; add(guiSquare, gridBagConstraints); capGroup.add(guiRound); guiRound.setSelected(true); guiRound.setBorderPainted(false); guiRound.setIconTextGap(0); guiRound.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { guiRoundActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 1; gridBagConstraints.gridy = 0; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.weighty = 1.0; add(guiRound, gridBagConstraints); capGroup.add(guiButt); guiButt.setBorderPainted(false); guiButt.setIconTextGap(0); guiButt.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent evt) { guiButtActionPerformed(evt); } }); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 2; gridBagConstraints.gridy = 0; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.weighty = 1.0; add(guiButt, gridBagConstraints); gridBagConstraints = new java.awt.GridBagConstraints(); gridBagConstraints.gridx = 4; gridBagConstraints.gridy = 0; gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH; gridBagConstraints.weightx = 1.0; gridBagConstraints.weighty = 1.0; add(jLabel1, gridBagConstraints); }// </editor-fold>//GEN-END:initComponents private void guiSpecialPropertyChange(final PropertyChangeEvent evt) {//GEN-FIRST:event_guiSpecialPropertyChange if(evt.getPropertyName().equals(JSpecialExpressionButton.EXPRESSION_PROPERTY)) { parse(guiSpecial.get()); } }//GEN-LAST:event_guiSpecialPropertyChange private void guiRoundActionPerformed(final ActionEvent evt) {//GEN-FIRST:event_guiRoundActionPerformed parse(StyleConstants.STROKE_CAP_ROUND); }//GEN-LAST:event_guiRoundActionPerformed private void guiSquareActionPerformed(final ActionEvent evt) {//GEN-FIRST:event_guiSquareActionPerformed parse(StyleConstants.STROKE_CAP_SQUARE); }//GEN-LAST:event_guiSquareActionPerformed private void guiButtActionPerformed(final ActionEvent evt) {//GEN-FIRST:event_guiButtActionPerformed parse(StyleConstants.STROKE_CAP_BUTT); }//GEN-LAST:event_guiButtActionPerformed // Variables declaration - do not modify//GEN-BEGIN:variables private javax.swing.ButtonGroup capGroup; private javax.swing.JToggleButton guiButt; private javax.swing.JToggleButton guiRound; private org.geotoolkit.gui.swing.style.JSpecialExpressionButton guiSpecial; private javax.swing.JToggleButton guiSquare; private javax.swing.JLabel jLabel1; // End of variables declaration//GEN-END:variables @Override public void parse(final Expression target) { if(target != null){ if(StyleConstants.STROKE_CAP_BUTT.equals(target)){ guiSpecial.parse(null); guiButt.setSelected(true); }else if(StyleConstants.STROKE_CAP_ROUND.equals(target)){ guiSpecial.parse(null); guiRound.setSelected(true); }else if(StyleConstants.STROKE_CAP_SQUARE.equals(target)){ guiSpecial.parse(null); guiSquare.setSelected(true); }else{ guiSpecial.parse(target); capGroup.clearSelection(); } }else{ guiSpecial.parse(null); guiButt.setSelected(true); guiRound.setSelected(false); guiSquare.setSelected(false); } guiButt.setEnabled(guiSpecial.get()==null); guiButt.setToolTipText(guiSpecial.getToolTipText()); guiRound.setEnabled(guiSpecial.get()==null); guiRound.setToolTipText(guiSpecial.getToolTipText()); guiSquare.setEnabled(guiSpecial.get()==null); guiSquare.setToolTipText(guiSpecial.getToolTipText()); firePropertyChange(PROPERTY_UPDATED, null, create()); } @Override public Expression create() { final Expression special = guiSpecial.get(); if(special != null){ return special; }else{ if(guiRound.isSelected()) return StyleConstants.STROKE_CAP_ROUND; else if(guiSquare.isSelected()) return StyleConstants.STROKE_CAP_SQUARE; else return StyleConstants.STROKE_CAP_BUTT; } } @Override protected Object[] getFirstColumnComponents() { return new Object[]{}; } }