Statistics
| Revision:

svn-gvsig-desktop / trunk / extensions / extRasterTools / src / com / iver / cit / gvsig / rasterTools / saveRaster / pruebas2 / SaveRasterDialogPanel.java @ 4441

History | View | Annotate | Download (2.22 KB)

1
/*
2
 * Cresques Mapping Suite. Graphic Library for constructing mapping applications.
3
 *
4
 * Copyright (C) 2004-5.
5
 *
6
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8
 * as published by the Free Software Foundation; either version 2
9
 * of the License, or (at your option) any later version.
10
 *
11
 * This program is distributed in the hope that it will be useful,
12
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 * GNU General Public License for more details.
15
 *
16
 * You should have received a copy of the GNU General Public License
17
 * along with this program; if not, write to the Free Software
18
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
19
 *
20
 * For more information, contact:
21
 *
22
 * cresques@gmail.com
23
 */
24
package com.iver.cit.gvsig.rasterTools.saveRaster.pruebas2;
25

    
26
import javax.swing.JPanel;
27

    
28
import org.cresques.ui.DefaultDialogPanel;
29

    
30
import com.iver.cit.gvsig.rasterTools.saveRaster.gui.toolListeners.DataInputSaveListener;
31

    
32

    
33
/**
34
 * Panel que contiene los botones de Aceptar, Cancelar y Aplicar heredando de
35
 * DefaultDialogPanel. Dentro de este estar? el panel con los controles de
36
 * salvar a raster.
37
 * @author Nacho Brodin (brodin_ign@gva.es)
38
 */
39
public class SaveRasterDialogPanel extends DefaultDialogPanel {
40
    final private static long                 serialVersionUID = -3370601314380922368L;
41
    private DataInputSaveListener        listener =  null;
42

    
43
    public SaveRasterDialogPanel() {
44
        super(false);
45
        init();
46
    }
47

    
48
    /**
49
     * Inicializaci?n del panel.
50
     * @return void
51
     */
52
    public void init() {
53
            super.initialize();
54
        //Ocultamos el bot?n de aplicar
55
        this.setLocation(new java.awt.Point(0,0));
56
        this.setSize(new java.awt.Dimension(355,300));
57
        this.getApplyButton().setVisible(false);
58
    }
59

    
60
    /**
61
     * Obtiene el panel con los controles de Salvar a Raster.
62
     * @return
63
     */
64
    public JPanel getContentPanel() {
65
        if (contentPane == null) {
66
                contentPane = new SaveRasterControlsPanel();
67
        }
68
        return contentPane;
69
    }
70

    
71
        public DataInputSaveListener getListener() {
72
                return listener;
73
        }
74
}