Statistics
| Revision:

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

History | View | Annotate | Download (2.7 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.slidertext;
43

    
44
import javax.swing.JFrame;
45

    
46
import org.gvsig.gui.beans.slidertext.listeners.SliderEvent;
47
import org.gvsig.gui.beans.slidertext.listeners.SliderListener;
48

    
49
public class TestSliderTextTable implements SliderListener {
50
        private int                                 w = 350, h = 150;
51
        private JFrame                                 frame=new JFrame();
52
        private SliderTextContainer        slider = null;
53

    
54
        public TestSliderTextTable() {
55
                slider = new SliderTextContainer(-255, 255, 0);
56
                slider.addValueChangedListener(this);
57

    
58
                frame.getContentPane().add(slider);
59
                frame.setSize(w, h);
60
                frame.setVisible(true);
61
                frame.setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
62
        }
63

    
64
        public static void main(String[] args) {
65
                new TestSliderTextTable();
66
        }
67

    
68
        public void actionValueChanged(SliderEvent e) {
69
                System.out.println("- Changed: " + slider.getValue());
70
        }
71

    
72
        public void actionValueDragged(SliderEvent e) {
73
//                System.out.println("+ Dragged: " + slider.getValue());
74
        }
75
}