Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / src / test / java / org / gvsig / gui / beans / propertiespanel / ui / TestSlider.java @ 40561

History | View | Annotate | Download (2.89 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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., 51 Franklin Street, Fifth Floor, Boston,
19
 * MA  02110-1301, USA.
20
 *
21
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
25
*
26
* Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
27
*
28
* This program is free software; you can redistribute it and/or
29
* modify it under the terms of the GNU General Public License
30
* as published by the Free Software Foundation; either version 2
31
* of the License, or (at your option) any later version.
32
*
33
* This program is distributed in the hope that it will be useful,
34
* but WITHOUT ANY WARRANTY; without even the implied warranty of
35
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
36
* GNU General Public License for more details.
37
*
38
* You should have received a copy of the GNU General Public License
39
* along with this program; if not, write to the Free Software
40
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
41
*/
42
package org.gvsig.gui.beans.propertiespanel.ui;
43

    
44
import java.awt.BorderLayout;
45
import java.awt.event.ActionEvent;
46
import java.awt.event.ActionListener;
47

    
48
import javax.swing.JButton;
49
import javax.swing.JColorChooser;
50
import javax.swing.event.ChangeEvent;
51
import javax.swing.event.ChangeListener;
52

    
53
import org.gvsig.gui.beans.propertiespanel.JPanelProperty;
54
/**
55
 * Panel que ira dentro del panel de propiedades
56
 *
57
 * @version 06/06/2007
58
 * @author BorSanZa - Borja S?nchez Zamorano (borja.sanchez@iver.es)
59
 */
60
public class TestSlider extends JPanelProperty implements ChangeListener, ActionListener {
61
        private static final long serialVersionUID = -4936433530376831937L;
62

    
63
        public TestSlider() {
64
                initialize();
65
        }
66

    
67
        private void initialize() {
68
                setLayout(new BorderLayout());
69
                JColorChooser color = new JColorChooser();
70
                add(color, BorderLayout.CENTER);
71
                JButton boton = new JButton("OK");
72
                add(boton, BorderLayout.SOUTH);
73
                boton.addActionListener(this);
74
                color.getSelectionModel().addChangeListener(this);
75
        }
76

    
77
        public void stateChanged(ChangeEvent e) {
78
                this.callStateChanged();
79
        }
80

    
81
        public void actionPerformed(ActionEvent e) {
82
                this.callStateChanged();
83
        }
84
}