//$HeadURL$ /*---------------- FILE HEADER ------------------------------------------ This file is part of deegree. Copyright (C) 2001-2008 by: Department of Geography, University of Bonn http://www.giub.uni-bonn.de/deegree/ lat/lon GmbH http://www.lat-lon.de 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; either version 2.1 of the License, or (at your option) any later version. 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. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Contact: Andreas Poth lat/lon GmbH Aennchenstr. 19 53177 Bonn Germany E-Mail: poth@lat-lon.de Prof. Dr. Klaus Greve Department of Geography University of Bonn Meckenheimer Allee 166 53115 Bonn Germany E-Mail: greve@giub.uni-bonn.de ---------------------------------------------------------------------------*/ package org.deegree.igeo.views.swing.geoprocessing; import java.awt.BorderLayout; import java.awt.Container; import java.awt.FlowLayout; import java.awt.GridBagConstraints; import java.awt.GridBagLayout; import java.awt.Insets; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JButton; import javax.swing.JPanel; import javax.swing.JTextArea; import javax.swing.border.TitledBorder; import org.deegree.crs.components.Unit; import org.deegree.datatypes.QualifiedName; import org.deegree.igeo.commands.geoprocessing.BufferCommand.BUFFERTYPE; import org.deegree.igeo.config.ViewFormType; import org.deegree.igeo.i18n.Messages; import org.deegree.igeo.modules.geoprocessing.BufferModule; import org.deegree.igeo.views.DialogFactory; import org.deegree.igeo.views.swing.DefaultDialog; import org.deegree.igeo.views.swing.util.IconRegistry; /** * * TODO add class documentation here * * @author <a href="mailto:name@deegree.org">Andreas Poth</a> * @author last edited by: $Author$ * * @version $Revision$, $Date$ */ public class ExtendedBufferDialog extends DefaultDialog implements BufferModel { private static final long serialVersionUID = 4150442055008217584L; private JPanel pnDescription; private JTextArea taDescription; private ExtendedBufferPanel extenedBufferPanel; private JButton btCancel; private JButton btOK; private JPanel pnButton; /** * */ public ExtendedBufferDialog() { } private void initGUI() { try { { GridBagLayout thisLayout = new GridBagLayout(); thisLayout.rowWeights = new double[] { 0.0, 0.1 }; thisLayout.rowHeights = new int[] { 296, 7 }; thisLayout.columnWeights = new double[] { 0.0, 0.1 }; thisLayout.columnWidths = new int[] { 172, 7 }; getContentPane().setLayout( thisLayout ); { pnDescription = new JPanel(); BorderLayout pnDescriptionLayout = new BorderLayout(); pnDescription.setLayout( pnDescriptionLayout ); getContentPane().add( pnDescription, new GridBagConstraints( 0, 0, 1, 2, 0.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets( 0, 0, 0, 0 ), 0, 0 ) ); pnDescription.setBorder( BorderFactory.createTitledBorder( null, Messages.getMessage( getLocale(), "$MD11419" ), TitledBorder.LEADING, TitledBorder.DEFAULT_POSITION ) ); { taDescription = new JTextArea(); taDescription.setLineWrap( true ); taDescription.setWrapStyleWord( true ); taDescription.setEditable( false ); pnDescription.add( taDescription, BorderLayout.CENTER ); taDescription.setText( Messages.getMessage( getLocale(), "$MD10561" ) ); taDescription.setBackground( pnDescription.getBackground() ); } } { pnButton = new JPanel(); FlowLayout pnButtonLayout = new FlowLayout(); pnButtonLayout.setAlignment( FlowLayout.LEFT ); pnButton.setLayout( pnButtonLayout ); getContentPane().add( pnButton, new GridBagConstraints( 1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.BOTH, new Insets( 0, 0, 0, 0 ), 0, 0 ) ); { btOK = new JButton( Messages.getMessage( getLocale(), "$MD10567" ), IconRegistry.getIcon( "accept.png" ) ); btOK.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e ) { if ( getNewLayerName().trim().length() == 0 ) { DialogFactory.openWarningDialog( "application", this, "layer name must be entered", "Warning" ); return; } ( (BufferModule<Container>) owner ).buffer(); } } ); pnButton.add( btOK ); } { btCancel = new JButton( Messages.getMessage( getLocale(), "$MD10568" ), IconRegistry.getIcon( "cancel.png" ) ); btCancel.addActionListener( new ActionListener() { public void actionPerformed( ActionEvent e ) { owner.clear(); dispose(); } } ); pnButton.add( btCancel ); } } { extenedBufferPanel = new ExtendedBufferPanel(); getContentPane().add( extenedBufferPanel, new GridBagConstraints( 1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.CENTER, GridBagConstraints.NONE, new Insets( 0, 0, 0, 0 ), 0, 0 ) ); } } this.setSize( 776, 405 ); } catch ( Exception e ) { e.printStackTrace(); } } @Override public void init( ViewFormType viewForm ) throws Exception { super.init( viewForm ); initGUI(); extenedBufferPanel.registerModule( this.owner ); extenedBufferPanel.init( viewForm ); setModal( false ); setAlwaysOnTop( false ); setVisible( true ); toFront(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getCapStyle() */ public int getCapStyle() { return extenedBufferPanel.getCapStyle(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getDistance() */ public double[] getDistances() { return extenedBufferPanel.getDistances(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getGeometryProperty() */ public QualifiedName getGeometryProperty() { return extenedBufferPanel.getGeometryProperty(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getNewLayerName() */ public String getNewLayerName() { return extenedBufferPanel.getNewLayerName(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getSegments() */ public int getSegments() { return extenedBufferPanel.getSegments(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getBufferType() */ public BUFFERTYPE getBufferType() { return extenedBufferPanel.getBufferType(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#shallMerge() */ public boolean shallMerge() { return extenedBufferPanel.shallMerge(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getPropertyForBufferDistance() */ public QualifiedName getPropertyForBufferDistance() { return extenedBufferPanel.getPropertyForBufferDistance(); } /* * (non-Javadoc) * * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#isOverlayedBuffers() */ public boolean isOverlayedBuffers() { return extenedBufferPanel.isOverlayedBuffers(); } /* (non-Javadoc) * @see org.deegree.igeo.views.swing.geoprocessing.BufferModel#getBufferUnit() */ public Unit getBufferUnit() { return extenedBufferPanel.getBufferUnit(); } }