Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.library / org.gvsig.ui / src / test / java / org / gvsig / gui / beans / colorchooser / TestColorChooser.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) 2005 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.colorchooser;
43

    
44
import java.awt.Dimension;
45
import java.util.EventObject;
46

    
47
import org.gvsig.gui.beans.TestUI;
48
/**
49
* Test del ColorChooser
50
*
51
* @version 08/05/2007
52
* @author BorSanZa - Borja S?nchez Zamorano (borja.sanchez@iver.es)
53
*/
54
public class TestColorChooser implements ColorChooserListener {
55
        private TestUI       jFrame       = new TestUI("TestColorChooser");
56
        private ColorChooser colorChooser = null;
57

    
58
        public TestColorChooser() {
59
                initialize();
60
        }
61

    
62
        private void initialize() {
63
                colorChooser = new ColorChooser();
64
                colorChooser.addValueChangedListener(this);
65
                colorChooser.setEnabled(true);
66

    
67
                jFrame.setSize(new Dimension(258, 167));
68
                jFrame.setContentPane(colorChooser);
69
                jFrame.setVisible(true);
70
        }
71

    
72
        /**
73
         * @param args
74
         */
75
        public static void main(String[] args) {
76
                new TestColorChooser();
77
        }
78

    
79
        public void actionValueChanged(EventObject e) {
80
                System.out.println("Changed: " + colorChooser.getColor() + ", " + colorChooser.getColor().getAlpha());
81
        }
82

    
83
        public void actionValueDragged(EventObject e) {
84
                System.out.println("Dragged: " + colorChooser.getColor() + ", " + colorChooser.getColor().getAlpha());
85
        }
86
}