Revision 38294

View differences:

tags/v2_0_0_Build_2047/libraries/libUIComponent/pom.xml
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5

  
6
	<modelVersion>4.0.0</modelVersion>
7
	<artifactId>org.gvsig.ui</artifactId>
8
	<packaging>jar</packaging>
9
	<version>2.0.1-SNAPSHOT</version>
10
	<name>libUIComponent</name>
11
	<description>Swing components collection</description>
12
	<parent>
13
		<groupId>org.gvsig</groupId>
14
		<artifactId>org.gvsig.maven.base.pom</artifactId>
15
		<version>1.0.8-SNAPSHOT</version>
16
	</parent>
17
	<scm>
18
		<connection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libUIComponent</connection>
19
		<developerConnection>scm:svn:https://devel.gvsig.org/svn/gvsig-desktop/branches/v2_0_0_prep/libraries/libUIComponent</developerConnection>
20
		<url>https://devel.gvsig.org/redmine/projects/gvsig-desktop/repository/show/branches/v2_0_0_prep/libraries/libUIComponent</url>
21
	</scm>
22
	<repositories>
23
		<repository>
24
			<id>gvsig-public-http-repository</id>
25
			<name>gvSIG maven public HTTP repository</name>
26
			<url>http://devel.gvsig.org/m2repo/j2se</url>
27
			<releases>
28
				<enabled>true</enabled>
29
				<updatePolicy>daily</updatePolicy>
30
				<checksumPolicy>warn</checksumPolicy>
31
			</releases>
32
			<snapshots>
33
				<enabled>true</enabled>
34
				<updatePolicy>daily</updatePolicy>
35
				<checksumPolicy>warn</checksumPolicy>
36
			</snapshots>
37
		</repository>
38
	</repositories>
39
	<dependencyManagement>
40
		<dependencies>
41
			<dependency>
42
				<groupId>org.gvsig</groupId>
43
				<artifactId>org.gvsig.core.maven.dependencies</artifactId>
44
				<version>2.0.1-SNAPSHOT</version>
45
				<type>pom</type>
46
				<scope>import</scope>
47
			</dependency>
48
		</dependencies>
49
	</dependencyManagement>
50
	<dependencies>
51
		<dependency>
52
			<groupId>org.gvsig</groupId>
53
			<artifactId>org.gvsig.i18n</artifactId>
54
			<scope>compile</scope>
55
		</dependency>
56
		<dependency>
57
			<groupId>org.gvsig</groupId>
58
			<artifactId>org.gvsig.tools.lib</artifactId>
59
			<scope>compile</scope>
60
		</dependency>
61
		<dependency>
62
			<groupId>org.jfree</groupId>
63
			<artifactId>jfreechart</artifactId>
64
			<scope>compile</scope>
65
		</dependency>
66
		<dependency>
67
			<groupId>net.sf</groupId>
68
			<artifactId>flib-jcalendar</artifactId>
69
			<scope>compile</scope>
70
		</dependency>
71
		<dependency>
72
			<groupId>jwizardcomponent</groupId>
73
			<artifactId>jwizardcomponent</artifactId>
74
			<scope>compile</scope>
75
		</dependency>
76
		<dependency>
77
			<groupId>org.slf4j</groupId>
78
			<artifactId>slf4j-api</artifactId>
79
			<scope>compile</scope>
80
		</dependency>
81
		<dependency>
82
			<groupId>org.gvsig.external</groupId>
83
			<artifactId>org.gvsig.external.jump</artifactId>
84
			<scope>compile</scope>
85
			<version>1.0.0-SNAPSHOT</version>
86
		</dependency>
87
	</dependencies>
88
	<build>
89
		<sourceDirectory>src</sourceDirectory>
90
		<testSourceDirectory>src-test-ui</testSourceDirectory>
91
		<resources>
92
			<resource>
93
				<directory>src</directory>
94
				<includes>
95
					<include>**/*.gif</include>
96
					<include>**/*.png</include>
97
					<include>**/*.PNG</include>
98
					<include> **/*.bmp</include>
99
					<include> **/*.jpg</include>
100
					<include> **/*.jpeg</include>
101
					<include> **/*.properties</include>
102
				</includes>
103
			</resource>
104
			<resource>
105
				<targetPath>org/gvsig/gui/beans/resources/translations</targetPath>
106
				<filtering>false</filtering>
107
				<directory>${basedir}/config</directory>
108
				<includes>
109
					<include>*.properties</include>
110
				</includes>
111
			</resource>
112
		</resources>
113
		<!-- TODO: MAKE TESTS WORK AND REMOVE THIS OPTION -->
114
		<plugins>
115
			<plugin>
116
				<groupId>org.apache.maven.plugins</groupId>
117
				<artifactId>maven-surefire-plugin</artifactId>
118
				<configuration>
119
					<skipTests>true</skipTests>
120
				</configuration>
121
			</plugin>
122
			<plugin>
123
				<groupId>org.apache.maven.plugins</groupId>
124
				<artifactId>maven-compiler-plugin</artifactId>
125
				<configuration>
126
					<testExcludes>
127
						<exclude>**</exclude>
128
					</testExcludes>
129
				</configuration>
130
			</plugin>
131
		</plugins>
132
	</build>
133

  
134
	<profiles>
135
		<profile>
136
			<id>eclipse-project</id>
137
			<build>
138
				<plugins>
139
					<plugin>
140
						<artifactId>maven-antrun-plugin</artifactId>
141
						<configuration>
142
							<tasks>
143
								<ant antfile="${basedir}/../build/ant-tasks/eclipse-tasks.xml"
144
									target="eclipse.eclipse" />
145
							</tasks>
146
						</configuration>
147
						<dependencies>
148
							<dependency>
149
								<groupId>org.apache.ant</groupId>
150
								<artifactId>ant-trax</artifactId>
151
								<version>1.7.1</version>
152
							</dependency>
153
							<dependency>
154
								<groupId>xalan</groupId>
155
								<artifactId>xalan</artifactId>
156
								<version>2.6.0</version>
157
							</dependency>
158
						</dependencies>
159
					</plugin>
160
				</plugins>
161
			</build>
162
		</profile>
163
		<profile>
164
			<id>gvsig-install</id>
165
			<activation>
166
				<activeByDefault>true</activeByDefault>
167
			</activation>
168
			<properties>
169
				<!-- gvSIG installation folder -->
170
				<gvsig.install.dir>${basedir}/../build/product
171
				</gvsig.install.dir>
172
			</properties>
173
		</profile>
174
	</profiles>
175
	<properties>
176
		<eclipse.project.name>libUIComponent</eclipse.project.name>
177
	</properties>
178
</project>
tags/v2_0_0_Build_2047/libraries/libUIComponent/.cvsignore
1
bin
2
bin-test
0 3

  
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/controls/dnd/JDnDTableTest.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2005 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 *
19
 * For more information, contact:
20
 *
21
 *  Generalitat Valenciana
22
 *   Conselleria d'Infraestructures i Transport
23
 *   Av. Blasco Ib??ez, 50
24
 *   46010 VALENCIA
25
 *   SPAIN
26
 *
27
 *      +34 963862235
28
 *   gvsig@gva.es
29
 *      www.gvsig.gva.es
30
 *
31
 *    or
32
 *
33
 *   IVER T.I. S.A
34
 *   Salamanca 50
35
 *   46005 Valencia
36
 *   Spain
37
 *
38
 *   +34 963163400
39
 *   dac@iver.es
40
 */
41

  
42
/* CVS MESSAGES:
43
*
44
* $Id$
45
* $Log$
46
* Revision 1.2  2007-08-21 09:58:04  bsanchez
47
* - Quitados imports innecesarios
48
* - Quitado codigo no usado
49
* - Cambio de deprecated show por setVisible(true)
50
*
51
* Revision 1.1  2007/08/20 08:34:46  evercher
52
* He fusionado LibUI con LibUIComponents
53
*
54
* Revision 1.1  2006/09/27 13:34:57  jaume
55
* *** empty log message ***
56
*
57
*
58
*/
59
package controls.dnd;
60

  
61
import java.awt.Dimension;
62

  
63
import javax.swing.JFrame;
64
import javax.swing.JPanel;
65

  
66
import org.gvsig.gui.beans.TestUI;
67
import org.gvsig.gui.beans.controls.dnd.JDnDList;
68
import org.gvsig.gui.beans.controls.dnd.JDnDListModel;
69
import org.gvsig.gui.beans.controls.dnd.JDnDTable;
70
import org.gvsig.gui.beans.controls.dnd.JDnDTableModel;
71
/**
72
 * El model que ha de suportar les funcions d'una JDnDTable. Encara est? en
73
 * proves.
74
 *
75
 * @author jaume
76
 */
77
public class JDnDTableTest {
78
	static String[] colNames = new String[] {"1234", "abcd", "qwerty"};
79
	static String[][] values = new String[][] {new String[] {"a1", "a2", "a3"},
80
										new String[] {"b1", "b2", "b3"},
81
										new String[] {"c1", "c2", "c3"}};
82

  
83
	public static void main(String args[]) {
84
		JFrame f = new TestUI("JDnDTableTest");
85
		JPanel content = new JPanel();
86
		content.setPreferredSize(new Dimension(500,400));
87

  
88
		JDnDTableModel model = new JDnDTableModel(values, colNames);
89
		JDnDListModel listModel = new JDnDListModel();
90
		listModel.addElement("a");
91
		listModel.addElement("b");
92
		listModel.addElement("c");
93

  
94
		JDnDTable tbl = new JDnDTable();
95

  
96
		tbl.setModel(model);
97
		tbl.setSize(new Dimension(450, 350));
98
		JDnDList list = new JDnDList();
99
		list.setModel(listModel);
100
		content.add(tbl);
101
		content.add(list);
102
		f.setContentPane(content);
103
		f.pack();
104
		f.setVisible(true);
105
	}
106
}
0 107

  
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/buttonspanel/TestButtonsPanel.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19
package org.gvsig.gui.beans.buttonspanel;
20

  
21
import java.awt.FlowLayout;
22

  
23
import org.gvsig.gui.beans.TestUI;
24
/**
25
 * <code>TestButtonsPanel</code> es un test para comprobar el funcionamiento de
26
 * la clase <code>ButtonsPanel</code>.
27
 *
28
 * @version 15/03/2007
29
 * @author BorSanZa - Borja Sanchez Zamorano (borja.sanchez@iver.es)
30
 */
31
public class TestButtonsPanel implements ButtonsPanelListener {
32
	private TestUI frame = new TestUI("TestButtonsPanel");
33

  
34
	public TestButtonsPanel(){
35
		frame.getContentPane().setLayout(new java.awt.GridLayout(0, 1));
36

  
37
		frame.setSize(320, 320);
38
		ButtonsPanel bp = new ButtonsPanel(ButtonsPanel.BUTTONS_ACCEPT);
39
		bp.addButtonPressedListener(this);
40
		frame.getContentPane().add(bp);
41
		bp = new ButtonsPanel(ButtonsPanel.BUTTONS_ACCEPTCANCEL);
42
		bp.addButtonPressedListener(this);
43
		bp.setLayout(new java.awt.FlowLayout(FlowLayout.CENTER));
44
		frame.getContentPane().add(bp);
45
		bp = new ButtonsPanel(ButtonsPanel.BUTTONS_ACCEPTCANCELAPPLY);
46
		bp.setLayout(new java.awt.FlowLayout(FlowLayout.LEFT));
47
		bp.addButtonPressedListener(this);
48
		frame.getContentPane().add(bp);
49
		bp = new ButtonsPanel(ButtonsPanel.BUTTONS_YESNO);
50
		bp.addButtonPressedListener(this);
51

  
52
		bp.getButton(ButtonsPanel.BUTTONS_YESNO).setEnabled(false);
53

  
54
		frame.getContentPane().add(bp);
55
		bp = new ButtonsPanel(ButtonsPanel.BUTTONS_CLOSE);
56
		bp.addButtonPressedListener(this);
57
		frame.getContentPane().add(bp);
58
		bp = new ButtonsPanel(ButtonsPanel.BUTTONS_EXIT);
59
		bp.addButtonPressedListener(this);
60
		bp.addButton("1", 55);
61
		bp.addButton("bp.addButtonPressedListener(this);", 56);
62

  
63
//		bp.getButton(ButtonsPanel.BUTTON_ACCEPT).isEnabled();
64

  
65
		frame.getContentPane().add(bp);
66
		frame.setVisible(true);
67
	}
68

  
69
	public static void main(String[] args){
70
		new TestButtonsPanel();
71
	}
72

  
73
	public void actionButtonPressed(ButtonsPanelEvent e) {
74
		System.out.println(e.getButton());
75
		if (ButtonsPanel.BUTTON_EXIT == e.getButton()) {
76
			frame.dispose();
77
		}
78
	}
79
}
0 80

  
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/defaultbuttonspanel/TestDefaultButtonsPanel.java
1
package org.gvsig.gui.beans.defaultbuttonspanel;
2

  
3
/* gvSIG. Geographic Information System of the Valencian Government
4
 *
5
 * Copyright (C) 2007-2008 Infrastructures and Transports Department
6
 * of the Valencian Government (CIT)
7
 * 
8
 * This program is free software; you can redistribute it and/or
9
 * modify it under the terms of the GNU General Public License
10
 * as published by the Free Software Foundation; either version 2
11
 * of the License, or (at your option) any later version.
12
 * 
13
 * This program is distributed in the hope that it will be useful,
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 * GNU General Public License for more details.
17
 *  
18
 * You should have received a copy of the GNU General Public License
19
 * along with this program; if not, write to the Free Software
20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
21
 * MA  02110-1301, USA.
22
 * 
23
 */
24

  
25
import java.awt.BorderLayout;
26

  
27
import javax.swing.JButton;
28

  
29
import org.gvsig.gui.beans.TestUI;
30
import org.gvsig.gui.beans.buttonspanel.ButtonsPanel;
31
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelEvent;
32
import org.gvsig.gui.beans.buttonspanel.ButtonsPanelListener;
33

  
34
/**
35
 * <code>TestDialogPanel</code>. Test para comprobar el funcionamiento de la
36
 * clase <code>DialogPanel</code>
37
 *
38
 * @version 15/03/2007
39
 * @author BorSanZa - Borja Sanchez Zamorano (borja.sanchez@iver.es)
40
 */
41
public class TestDefaultButtonsPanel implements ButtonsPanelListener {
42
	private TestUI frame = new TestUI("TestDefaultButtonsPanel");
43

  
44
	class NewComponentDialog extends DefaultButtonsPanel {
45
		private static final long serialVersionUID = 4452922507292538671L;
46

  
47
		public NewComponentDialog() {
48
			super(ButtonsPanel.BUTTONS_YESNO);
49
			this.setLayout(new BorderLayout());
50
			JButton b = new JButton("prueba");
51
			this.add(b, java.awt.BorderLayout.NORTH);
52
			JButton c = new JButton("prueba2");
53
			this.add(c, java.awt.BorderLayout.CENTER);
54
		}
55
	}
56

  
57
	NewComponentDialog ncd;
58

  
59
	public TestDefaultButtonsPanel() {
60
		ncd = new NewComponentDialog();
61

  
62
		frame.setSize(640, 480);
63
		frame.getContentPane().add(ncd);
64

  
65
		ncd.addButtonPressedListener(this);
66
		frame.setVisible(true);
67
	}
68

  
69
	public static void main(String[] args) {
70
		new TestDefaultButtonsPanel();
71
	}
72

  
73
	public void actionButtonPressed(ButtonsPanelEvent e) {
74
		System.out.println("Bot?n pulsado: " + e.getButton());
75
	}
76
}
0 77

  
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/comboboxconfigurablelookup/programmertests/TestJComboBoxConfigurableLookUp.java
1
package org.gvsig.gui.beans.comboboxconfigurablelookup.programmertests;
2

  
3
import java.awt.Dimension;
4

  
5
import javax.swing.JFrame;
6
import javax.swing.JOptionPane;
7

  
8
import org.gvsig.gui.beans.Messages;
9
import org.gvsig.gui.beans.comboboxconfigurablelookup.DefaultComboBoxConfigurableLookUpModel;
10
import org.gvsig.gui.beans.comboboxconfigurablelookup.JComboBoxConfigurableLookUp;
11

  
12

  
13

  
14
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
15
 *
16
 * Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
17
 *
18
 * This program is free software; you can redistribute it and/or
19
 * modify it under the terms of the GNU General Public License
20
 * as published by the Free Software Foundation; either version 2
21
 * of the License, or (at your option) any later version.
22
 *
23
 * This program is distributed in the hope that it will be useful,
24
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26
 * GNU General Public License for more details.
27
 *
28
 * You should have received a copy of the GNU General Public License
29
 * along with this program; if not, write to the Free Software
30
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
31
 *
32
 * For more information, contact:
33
 *
34
 *  Generalitat Valenciana
35
 *   Conselleria d'Infraestructures i Transport
36
 *   Av. Blasco Ib??ez, 50
37
 *   46010 VALENCIA
38
 *   SPAIN
39
 *
40
 *      +34 963862235
41
 *   gvsig@gva.es
42
 *      www.gvsig.gva.es
43
 *
44
 *    or
45
 *
46
 *   IVER T.I. S.A
47
 *   Salamanca 50
48
 *   46005 Valencia
49
 *   Spain
50
 *
51
 *   +34 963163400
52
 *   dac@iver.es
53
 */
54

  
55
/**
56
 * <p>Tests the class {@link JComboBoxConfigurableLookUp JComboBoxConfigurableLookUp} .</p>
57
 * 
58
 * <p>Notes:
59
 *  <ul>
60
 *   <li>MORE TESTS COULD BE ADDED!!!</li>
61
 *   <li>DON'T REMOVE TEST COMMENTED!!!</li>
62
 *  </ul>
63
 * </p>
64
 *
65
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
66
 * @version 07/02/2008
67
 */
68
public class TestJComboBoxConfigurableLookUp extends JFrame {
69
	private static final long serialVersionUID = -422198204525608333L;
70

  
71
	/**
72
	 * Test method for the <code>TestJComboBoxConfigurableLookUp</code>
73
	 * 
74
	 * @param args
75
	 */
76
	public static void main(String[] args)
77
	{
78
		int width = 300;
79
		int height = 60;
80
		
81
		try
82
		{
83
			// Objects creation
84
			JFrame jF = new JFrame();
85
	
86
			// Create a TestJComboBoxConfigurableLookUp, sets the behavior configuration and add Items
87
			
88
			// ---- TESTS ----
89
			// Test the default behavior
90
			JComboBoxConfigurableLookUp jCBSD = new JComboBoxConfigurableLookUp();
91

  
92
			// -- TESTS FLAGS FOR CONTROL --
93
			// Test the change of the flag 'onlyOneColor'
94
			// jCBSD.setOnlyOneColorOnText(true);
95
			// jCBSD.setOnlyOneColorOnText(false);
96
			
97
			// Test the change of the flag 'beepEnabled'
98
			// jCBSD.setBeepEnabled(false);
99
			// jCBSD.setBeepEnabled(true);
100

  
101
			// Test the change of the flag 'hidePopupIfThereAreNoItems'
102
			// jCBSD.setHidePopupIfThereAreNoItems(false);
103
			// jCBSD.setHidePopupIfThereAreNoItems(true);
104
			
105
			// Test the change of the flag 'toForceSelectAnItem'
106
			// jCBSD.setToForceSelectAnItem(false);
107
			// jCBSD.setToForceSelectAnItem(true);
108
			
109

  
110
			// --- TESTS ADDING A MODEL ---
111
			// -- TESTS FLAGS FOR THE MODEL --
112
			// DefaultComboBoxConfigurableLookUpModel model = new DefaultComboBoxConfigurableLookUpModel();
113
			DefaultComboBoxConfigurableLookUpModel model = new DefaultComboBoxConfigurableLookUpModel(new Object[] {"Item1", "Item2", "Item3", "Item4", "Item5"});
114
			// DefaultComboBoxConfigurableLookUpModel model = (DefaultComboBoxConfigurableLookUpModel) jCBSD.getModel();
115
				
116
			// Test the change of the flag 'itemsShownInListBox'
117
			// model.setLanguageRules("en_US");
118
			// model.setLanguageRules("fr_FR");
119
			// model.setLanguageRules("es_ES");
120
			// model.setLanguageRules(DefaultComboBoxConfigurableLookUpModel.DEFAULT_LANGUAGE_RULES_CONFIGURATION);
121
				
122
			// Test the change of the flag 'caseSensitive'
123
			// model.setCaseSensitive(false);
124
			// model.setCaseSensitive(DefaultComboBoxConfigurableLookUpModel.CASE_INSENSITIVE);
125
			// model.setCaseSensitive(true);
126
			// model.setCaseSensitive(DefaultComboBoxConfigurableLookUpModel.CASE_SENSITIVE);
127
			 
128
			// Test the change of the flag 'itemsOrder'
129
			// model.setItemsOrder(DefaultComboBoxConfigurableLookUpModel.MAINTAIN_POSITION);
130
			// model.setItemsOrder(DefaultComboBoxConfigurableLookUpModel.ALPHABETICAL_ORDERED);
131
			// model.setItemsOrder(DefaultComboBoxConfigurableLookUpModel.MAINTAIN_AGENT_POSITIONS);
132
			
133
			// Test the change of the flag 'itemsShownInListBox'
134
			// model.setShowAllItemsInListBox(DefaultComboBoxConfigurableLookUpModel.SHOW_ALL_ITEMS);
135
			// model.setShowAllItemsInListBox(true);
136
			// model.setShowAllItemsInListBox(DefaultComboBoxConfigurableLookUpModel.SHOW_ONLY_MATCHES);
137
			// model.setShowAllItemsInListBox(false);
138

  
139
			// Test the change of the flag 'completeArrowKeySelection'
140
			// jCBSD.setCompleteArrowKeySelection(true);
141
			// jCBSD.setCompleteArrowKeySelection(false);
142

  
143
			// Test the change of the flag 'displayAllItemsWithArrowButton'
144
			// jCBSD.setDisplayAllItemsWithArrowButton(false);
145
			 jCBSD.setDisplayAllItemsWithArrowButton(true);
146

  
147
			// Adds the new model
148
			jCBSD.setModel(model);
149

  
150
			// --- ADD ITEMS TO THE COMPONENT AND OTHER TESTS ---
151
			// Add some items to test if has too much delay with an average number of items
152
			jCBSD.addItem("extAddEventTheme");
153
			jCBSD.addItem("?and?");
154
			jCBSD.addItem("_fwAndami");
155
			jCBSD.addItem("extJDBC");
156

  
157
			jCBSD.addItem("extCAD");
158
			jCBSD.addItem("libuiDownCase");
159
			jCBSD.addItem("appgvSig");
160
			// jCBSD.setSelectedItem("appgvSig");
161
			// jCBSD.removeAllItems();
162
			jCBSD.addItem("RemoteServices");
163
			jCBSD.addItem("?and?");	
164
			jCBSD.addItem("?");
165
			// jCBSD.setSelectedItem("appgvSig");
166
			// jCBSD.setSelectedItem(jCBSD.getItemAt(3)); //Test setSelectedItem
167
			jCBSD.addItem("extNomenclatorIGN");
168

  
169
            // jCBSD.setSelectedItem(jCBSD.getItemAt(1)); //Test setSelectedItem
170
            // jCBSD.setSelectedIndex(1); //Test setSelectedIndex
171
			jCBSD.addItem("extWMS");
172
			jCBSD.addItem("?AND?");
173
			jCBSD.addItem("window");
174
			jCBSD.addItem("?");
175
			jCBSD.addItem("LIBUI");
176
            jCBSD.setSelectedItem("window");
177
			jCBSD.addItem("libCorePlugin");
178
			jCBSD.addItem("libCq CMS for java");
179
			jCBSD.addItem("libDriverManager");
180

  
181
            // jCBSD.setSelectedItem("libDriverManager");
182
			////				jCBSD.addItem("libFMap");
183
			////				jCBSD.addItem("libG_fwAndamiDBMS");
184
			////				jCBSD.addItem("libIverUtiles");
185
			////				jCBSD.addItem("libNomenclatorIGN");
186
			////				jCBSD.addItem("libNomenclatorIGN_GUI");
187
			////				jCBSD.addItem("libRemoteServices");
188
			//////				jCBSD.addItem("extNomenclatorIGN"); // Duplication test
189
			////				jCBSD.addItem("libUI");
190
			////				jCBSD.addItem("a");
191
			////				jCBSD.addItem("aa");
192
			////				jCBSD.addItem("aaa");
193
			////				jCBSD.addItem("aaaa");
194
			////				jCBSD.addItem("aaaaa");
195
			////				jCBSD.addItem("b");
196
			////				jCBSD.addItem("bbb");
197
			////				jCBSD.addItem("bb");
198
			////				jCBSD.addItem("c");
199
			////				jCBSD.addItem(".");
200
			////				jCBSD.addItem("ccc");
201
			////				jCBSD.addItem("cc");
202
			////				jCBSD.addItem("cccc");
203
			////				jCBSD.addItem("ddd");
204
			////				jCBSD.addItem("d");
205
			////				jCBSD.addItem("dd");
206
			////				jCBSD.addItem("dddd");
207
			////				jCBSD.addItem("e");
208
			////				jCBSD.addItem("eee");
209
			////				jCBSD.addItem("ee");
210
			////				jCBSD.addItem("eeee");
211
			//				jCBSD.addItem("ff");
212
			//				jCBSD.addItem("f");
213
			////				jCBSD.addItem("LIBZZMAYUSCULA1");
214
			////				jCBSD.addItem("ff"); // Duplication test
215
			////				jCBSD.addItem("asldf");
216
			////				jCBSD.addItem("wej");
217
			////				jCBSD.addItem("asdf");
218
			////				jCBSD.addItem("LIBMAYUSCULA2");
219
			////				jCBSD.addItem("qera");
220
			////				jCBSD.addItem("zxvcas");
221
			////				jCBSD.addItem("wea");
222
			////				jCBSD.addItem("asr");
223
			////				jCBSD.addItem("asra");
224
			////				jCBSD.addItem("LIBMAYUSCULA1");
225
			////				jCBSD.addItem("rar");
226
			////				jCBSD.addItem("afda");
227
			////				jCBSD.addItem("ljvkgk");
228
			////				jCBSD.addItem("zcv");
229
			////				jCBSD.addItem("gfhdt");
230
			////				jCBSD.addItem("dfhgd");
231
			////				jCBSD.addItem("dfh");
232
			////				jCBSD.addItem("dfhs");
233
			////				jCBSD.addItem("sfszv");
234
			////				jCBSD.addItem("qer");
235
			////				jCBSD.addItem("adfazva");
236
			////				jCBSD.addItem("xnd");
237
			////				jCBSD.addItem("vdkjgd");
238
			////				jCBSD.addItem("ddhd");
239
			////				jCBSD.addItem("dxgx");
240
			
241
			////				jCBSD.addItem("cnsf");
242
			////				jCBSD.addItem("ssfgs");
243
			////				jCBSD.addItem("sgfsbx");
244
			////				jCBSD.addItem("sfxb");
245
			////				jCBSD.addItem("chdgk");
246
			////				jCBSD.addItem("jgu");
247
			////				jCBSD.addItem("gkgj");
248
			////				jCBSD.addItem("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccddddddddddddddddddddddddddddddddddddddddddddddeeeeeeeeeeeeeeeeeeeeeeeeeee");
249
			////				jCBSD.addItem("ljko?j.n");
250
			////				jCBSD.addItem("hfjf");
251
			////				jCBSD.addItem("xbxb");
252
			////				jCBSD.addItem(".,lhhi");
253
			////				jCBSD.addItem("hklx_fwAndami");
254
			////				jCBSD.addItem("cvn");
255
			////				jCBSD.addItem("dgh");
256
			////				jCBSD.addItem("cncv");
257
			////				jCBSD.addItem("sg");
258
			////				jCBSD.addItem("b,mjk");
259
			////				jCBSD.addItem("xv");
260
			////				jCBSD.addItem("sgghu");
261
			////				jCBSD.addItem("saxc");
262
			////				jCBSD.addItem("srts");
263
			////				jCBSD.addItem("sduyg");
264
			////				jCBSD.addItem("sxfsrs");
265
			////				jCBSD.addItem("rsdtf");
266
			////				jCBSD.addItem("po`llh");
267
			////				jCBSD.addItem("fghtf54j");
268
			////				jCBSD.addItem("s25ewsd");
269
			////				jCBSD.addItem("uo8khkj");
270
			////				jCBSD.addItem("sfg45");
271
			////				jCBSD.addItem("3gd");
272
			////				jCBSD.addItem("5dhd");
273
			////				jCBSD.addItem("sg4dh6");
274
			////				jCBSD.addItem("dfh5");
275
			////				jCBSD.addItem("s4hfj74");
276
			////				jCBSD.addItem("sdg534");
277
			////				jCBSD.addItem("2452etdfg");
278
			////				jCBSD.addItem("2ui068");
279
			////				jCBSD.addItem("3dsd sgr");
280
			////				jCBSD.addItem("sr sgsr");
281
			////				jCBSD.addItem("sssssssss");
282
			////				jCBSD.addItem("aaaaass");
283
			////				jCBSD.addItem("ss");
284
			////				jCBSD.addItem("sry");
285
			////				jCBSD.addItem("h?hj");
286
			////				jCBSD.addItem("gkgb");
287
			////				jCBSD.addItem("gkgu");
288
			////				jCBSD.addItem("gjugvfc");
289
			////				jCBSD.addItem("dghdd");
290
			////				jCBSD.addItem("dhdt");
291
			////				jCBSD.addItem("dhgd");
292
			////				jCBSD.addItem("ddtughd");
293
			////				jCBSD.addItem("ffuklj?d");
294
			////				jCBSD.addItem("j?olk.j");
295
			////				jCBSD.addItem("las alupoai a?ieurpay");
296
			////				jCBSD.addItem("tytresd");
297
			////				jCBSD.addItem("fgkg");
298
			////				jCBSD.addItem("lhh");
299
			////				jCBSD.addItem("hkhlhip");
300
			////				jCBSD.addItem("k?popi0??=(J");
301
			////				jCBSD.addItem("af??=)(/?/");
302
			////				jCBSD.addItem("-a,malj'=)/");
303
			////				jCBSD.addItem("2gw");
304
			////				jCBSD.addItem("5teu");
305
			////				jCBSD.addItem("4576jfff");
306
			////				jCBSD.addItem("urtyu");
307
			////				jCBSD.addItem("fi7");
308
			////				jCBSD.addItem("git7t4h");
309
			////				jCBSD.addItem("hr6frr");
310
			////				jCBSD.addItem("ehe5et");
311
			////				jCBSD.addItem("eue5klhj");
312
			////				jCBSD.addItem("yoiyoy");
313
			////				jCBSD.addItem("yoyi");
314
			////				jCBSD.addItem("sgcsc");
315
			////				jCBSD.addItem("sgmff74");
316
			////				jCBSD.addItem("dd43d d6dhlhju");
317
			////				jCBSD.addItem("gkjngr");
318
			////				jCBSD.addItem("dbddht");
319
			////				jCBSD.addItem("sbd");
320
			////				jCBSD.addItem("dcbd5opihjj");
321
			////				jCBSD.addItem("pujtth");
322
			////				jCBSD.addItem("ZZZZZ");
323
			////				jCBSD.addItem("ytht");
324
			////				jCBSD.addItem("tjgt");
325
			////				jCBSD.addItem("rrf");
326
			////				jCBSD.addItem("BLIUE? ");
327
			////				jCBSD.addItem("?AND?");
328
			////				jCBSD.addItem("axaaa4iktiu");
329
			////				jCBSD.addItem("tttyir");
330
			////				jCBSD.addItem("ruyrrruu4");
331
			////				jCBSD.addItem("rryewrsw");
332
			////				jCBSD.addItem("wertw");
333
			////				jCBSD.addItem("wer26e");
334
			////				jCBSD.addItem("eceye");
335
			////				jCBSD.addItem("etye7yyy-er");
336
			////				jCBSD.addItem("eyert7e7e7");
337
			////				jCBSD.addItem("_abcdefghijklmn?opqrstuvwxyz");
338
			////				jCBSD.addItem("_0123456789");
339
			////				jCBSD.addItem("sstsnmmsutt");
340
			////				jCBSD.addItem("dcytdtyd");
341
			////				jCBSD.addItem("dcdtdty");
342
			////				jCBSD.addItem("dctycd");
343
			////				jCBSD.addItem("cstyd");
344
			////				jCBSD.addItem("dbddcytdsssc");
345
			////				jCBSD.addItem("cdydt");
346
			////				jCBSD.addItem("scscydu");
347
			////				jCBSD.addItem("axct");
348
			////				jCBSD.addItem("joobfvd");
349
			////				jCBSD.addItem("jomj");
350
			////				jCBSD.addItem("omjo");
351
			////				jCBSD.addItem("mol");
352
			////				jCBSD.addItem("agdhfj");
353
			////				jCBSD.addItem("fjfhjuh,ooom");
354
			////				jCBSD.addItem("affjfa");
355
			////				jCBSD.addItem("afjfjyfga");
356
			////				jCBSD.addItem("NOMENCLATOR");
357
			////				jCBSD.addItem("asg");
358
			////				jCBSD.addItem("afaea");
359
			////				jCBSD.addItem("gvSIG");
360
			////				jCBSD.addItem("yoiey");
361
			////				jCBSD.addItem("35");
362
			////				jCBSD.addItem("ewgw2dh");
363
			////				jCBSD.addItem("titgr");
364
			////				jCBSD.addItem("o9yky");
365
			////				jCBSD.addItem("kyio8gbr");
366
			////				jCBSD.addItem("eve5yed574rir");
367
			////				jCBSD.addItem("578tygmtio");
368
			////				jCBSD.addItem("t43262ryteye");
369
			////				jCBSD.addItem("wvwx");
370
			////				jCBSD.addItem("zssscwwwwww");
371
			////				jCBSD.addItem("sgvr");
372
			////				jCBSD.addItem("...");
373
			//				jCBSD.addItem("?LTIMO ITEM EN A?ADIRSE");
374
			
375
			// --- END ADD ITEMS TO THE COMPONENT AND OTHER TESTS ---
376
			
377
			// Test of no item default selection 
378
			// jCBSD.setSelectedIndex(-1);
379
			
380
			// Other tests
381
			// jCBSD.setSelectedIndex(0);
382
			// System.out.println("Selected: " + jCBSD.getSelectedItem());
383
			// jCBSD.setSelectedIndex(3);
384
			// System.out.println("Item at 3: " + jCBSD.getItemAt(3));
385
			// jCBSD.setSelectedItem("?AND?");
386

  
387
			// System.out.println("Index of LIBUI: " + ((DefaultComboBoxConfigurableLookUpModel)jCBSD.getModel()).getIndexOf("LIBUI"));
388
			// jCBSD.addItem("A?ADIDO");
389
			// jCBSD.removeItemAt(0);
390
			// jCBSD.removeAllItems();
391
			// ((DefaultComboBoxConfigurableLookUpModel)jCBSD.getModel()).removeAllElements();
392
			// System.out.println("Number of elements (list box): " + jCBSD.getItemCount());
393

  
394
			// Tests the method ''setPrototypeDisplayValue''
395
			// jCBSD.addItem("ABCDEFGHIJKLMN?OPQRSTUVWXYZ-ABCDEFGHIJKLMN?OPQRSTUVWXYZ-ABCDEFGHIJKLMN?OPQRSTUVWXYZ");
396
			// jCBSD.setSelectedItem("ABCDEFGHIJKLMN?OPQRSTUVWXYZ-ABCDEFGHIJKLMN?OPQRSTUVWXYZ-ABCDEFGHIJKLMN?OPQRSTUVWXYZ");
397
			// jCBSD.setPrototypeDisplayValue("ABCDEFGHIJKLMN?OPQRSTUVWXYZ");
398
			
399
			// Configure the JFrame
400
			jF.setTitle("Test JComboBoxConfigurableLookUp");
401
			jF.setSize(new Dimension(width, height));	    
402
		    jF.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
403
		    jF.getContentPane().add(jCBSD);
404
		    jF.setVisible(true);
405

  
406
		    // More tests
407
			// jCBSD.setSelectedIndex(0); // Failures before the component could be showed
408
			// System.out.println("Selected: " + jCBSD.getSelectedItem());
409
			// jCBSD.setSelectedIndex(3); // Failures before the component could be showed
410
			// System.out.println("Item at 3: " + jCBSD.getItemAt(3));
411
			// jCBSD.setSelectedItem("?AND?"); // Failures before the component could be showed
412
		    
413
		    // Test a Look up Agent
414
		    // model.setLookUpAgent(new SampleAgent());
415
		    
416
		    // Test changing the renderer
417
		    // jCBSD.setRenderer(new SampleBasicComboBoxRenderer());
418
		    
419
			// More tests
420
			// jCBSD.removeAllItems();
421
			// jCBSD.addItem("extCAD");
422
			// jCBSD.addItem("libuiDownCase");
423
			// jCBSD.addItem("appgvSig");
424
			// jCBSD.removeAllItems();
425
			// jCBSD.addItem("extCAD");
426
			// jCBSD.addItem("libuiDownCase");
427
			// jCBSD.addItem("appgvSig");
428
			// jCBSD.setSelectedItem("libuiDownCase");
429
		    
430
		    // Test change the editor
431
		    // jCBSD.setEditor(new SampleComboBoxEditor());
432
		}
433
		catch(Exception e)
434
		{
435
			e.printStackTrace();
436
			JOptionPane.showMessageDialog(null, Messages.getText("testJComboBoxConfigurableLookUpErrorMessage"), Messages.getText("error"), JOptionPane.ERROR_MESSAGE);
437
		}
438
	}
439
}
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/comboboxconfigurablelookup/programmertests/SampleAgent.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.gui.beans.comboboxconfigurablelookup.programmertests;
21

  
22
import java.util.ArrayList;
23
import java.util.List;
24
import java.util.Vector;
25

  
26
import org.gvsig.gui.beans.comboboxconfigurablelookup.ILookUp;
27
import org.gvsig.gui.beans.comboboxconfigurablelookup.StringComparator;
28

  
29
/**
30
 * <p>Sample of personalized look up algorithm for the model of a <code>JComboBoxConfigurableLookUp</code> object.</p>
31
 * 
32
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
33
 * @version 08/02/2008
34
 */
35
public class SampleAgent implements ILookUp {
36
	/**
37
	 * <p>Creates a new instance of the class <code>StartsWithLookUpAgent</code>.</p>
38
	 */
39
	public SampleAgent() {
40
	}
41
	
42
	/*
43
	 * (non-Javadoc)
44
	 * @see org.gvsig.gui.beans.comboboxconfigurablelookup.ILookUp#doLookUpConsideringCaseSensitive(java.lang.String, java.util.Vector, org.gvsig.gui.beans.comboboxconfigurablelookup.StringComparator)
45
	 */
46
	public List<Object> doLookUpConsideringCaseSensitive(String text, Vector<Object> sortOrderedItems, StringComparator comp) {
47
		if (sortOrderedItems == null)
48
			return null;
49

  
50
		List<Object> list = new ArrayList<Object>();
51
		
52
		for (int i = 0; i < (sortOrderedItems.size()); i++) {
53
			if (i % 2 == 0)
54
				list.add(sortOrderedItems.get(i));
55
		}
56

  
57
		return list;
58
	}
59

  
60
	/*
61
	 * (non-Javadoc)
62
	 * @see org.gvsig.gui.beans.comboboxconfigurablelookup.ILookUp#doLookUpIgnoringCaseSensitive(java.lang.String, java.util.Vector, org.gvsig.gui.beans.comboboxconfigurablelookup.StringComparator)
63
	 */
64
	public List<Object> doLookUpIgnoringCaseSensitive(String text, Vector<Object> sortOrderedItems, StringComparator comp) {
65
		if (sortOrderedItems == null)
66
			return null;
67

  
68
		List<Object> list = new ArrayList<Object>();
69
		
70
		for (int i = 0; i < (sortOrderedItems.size()); i++) {
71
			if (i % 2 == 0)
72
				list.add(sortOrderedItems.get(i));
73
		}
74

  
75
		return list;
76
	}
77
}
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/comboboxconfigurablelookup/programmertests/SampleComboBoxEditor.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.gui.beans.comboboxconfigurablelookup.programmertests;
21

  
22
import java.awt.Component;
23
import java.awt.event.ActionListener;
24
import java.awt.event.FocusEvent;
25
import java.awt.event.FocusListener;
26
import java.lang.reflect.Method;
27

  
28
import javax.swing.ComboBoxEditor;
29
import javax.swing.JTextField;
30
import javax.swing.border.Border;
31
import javax.swing.plaf.basic.BasicComboBoxEditor;
32

  
33
import org.gvsig.gui.beans.editabletextcomponent.JEditableTextField;
34

  
35
/**
36
 * <p>The default editor for editable combo boxes. The editor is implemented as a JTextField.</p>
37
 *
38
 * @version 12/02/08
39
 * @author Arnaud Weber
40
 * @author Mark Davidson
41
 * @author Pablo Piqueras Bartolom?
42
 */
43
public class SampleComboBoxEditor implements ComboBoxEditor, FocusListener {
44
    protected JTextField editor;
45
    private Object oldValue;
46

  
47
    public SampleComboBoxEditor() {
48
        editor = new BorderlessTextField("",9);
49
        editor.setBorder(null);
50
    }
51

  
52
    public Component getEditorComponent() {
53
        return editor;
54
    }
55

  
56
    /** 
57
     * Sets the item that should be edited. 
58
     *
59
     * @param anObject the displayed value of the editor
60
     */
61
    public void setItem(Object anObject) {
62
        if ( anObject != null )  {
63
            editor.setText(anObject.toString());
64
            
65
            oldValue = anObject;
66
        } else {
67
            editor.setText("");
68
        }
69
    }
70

  
71
    public Object getItem() {
72
        Object newValue = editor.getText();
73
        
74
        if (oldValue != null && !(oldValue instanceof String))  {
75
            // The original value is not a string. Should return the value in it's
76
            // original type.
77
            if (newValue.equals(oldValue.toString()))  {
78
                return oldValue;
79
            } else {
80
                // Must take the value from the editor and get the value and cast it to the new type.
81
                Class cls = oldValue.getClass();
82
                try {
83
                    Method method = cls.getMethod("valueOf", new Class[]{String.class});
84
                    newValue = method.invoke(oldValue, new Object[] { editor.getText()});
85
                } catch (Exception ex) {
86
                    // Fail silently and return the newValue (a String object)
87
                }
88
            }
89
        }
90
        return newValue;
91
    }
92

  
93
    public void selectAll() {
94
        editor.selectAll();
95
        editor.requestFocus();
96
    }
97

  
98
    // This used to do something but now it doesn't.  It couldn't be
99
    // removed because it would be an API change to do so.
100
    public void focusGained(FocusEvent e) {}
101
    
102
    // This used to do something but now it doesn't.  It couldn't be
103
    // removed because it would be an API change to do so.
104
    public void focusLost(FocusEvent e) {}
105

  
106
    public void addActionListener(ActionListener l) {
107
        editor.addActionListener(l);
108
    }
109

  
110
    public void removeActionListener(ActionListener l) {
111
        editor.removeActionListener(l);
112
    }
113

  
114
    /** 
115
     * Inner text field editable as a component of a ComboBox editor.
116
     * 
117
     * @see JEditableTextField
118
     * 
119
     * @version 12/02/08
120
     * @author Arnaud Weber
121
     * @author Mark Davidson
122
     * @author Pablo Piqueras Bartolom?
123
     */
124
    private class BorderlessTextField extends JEditableTextField {
125
		private static final long serialVersionUID = -3333236529430569318L;
126

  
127
		public BorderlessTextField(String value,int n) {
128
            super(value,n);
129
        }
130

  
131
        // workaround for 4530952
132
        public void setText(String s) {
133
            if (getText().equals(s)) {
134
                return;
135
            }
136
            super.setText(s);
137
        }
138

  
139
        public void setBorder(Border b) {}
140
    }
141
    
142
    /**
143
     * A subclass of BasicComboBoxEditor that implements UIResource.
144
     * BasicComboBoxEditor doesn't implement UIResource
145
     * directly so that applications can safely override the
146
     * cellRenderer property with BasicListCellRenderer subclasses.
147
     * <p>
148
     * <strong>Warning:</strong>
149
     * Serialized objects of this class will not be compatible with
150
     * future Swing releases. The current serialization support is
151
     * appropriate for short term storage or RMI between applications running
152
     * the same version of Swing.  As of 1.4, support for long term storage
153
     * of all JavaBeans<sup><font size="-2">TM</font></sup>
154
     * has been added to the <code>java.beans</code> package.
155
     * Please see {@link java.beans.XMLEncoder}.
156
     */
157
    public static class UIResource extends BasicComboBoxEditor
158
    implements javax.swing.plaf.UIResource {
159
    }
160
}
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/comboboxconfigurablelookup/programmertests/SampleBasicComboBoxRenderer.java
1
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
2
 *
3
 * Copyright (C) 2007 IVER T.I. and Generalitat Valenciana.
4
 *
5
 * This program is free software; you can redistribute it and/or
6
 * modify it under the terms of the GNU General Public License
7
 * as published by the Free Software Foundation; either version 2
8
 * of the License, or (at your option) any later version.
9
 *
10
 * This program is distributed in the hope that it will be useful,
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 * GNU General Public License for more details.
14
 *
15
 * You should have received a copy of the GNU General Public License
16
 * along with this program; if not, write to the Free Software
17
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
18
 */
19

  
20
package org.gvsig.gui.beans.comboboxconfigurablelookup.programmertests;
21

  
22
import java.awt.Color;
23
import java.awt.Component;
24

  
25
import javax.swing.JList;
26
import javax.swing.plaf.basic.BasicComboBoxRenderer;
27

  
28
/**
29
 * <p>Sample of personalized combo box cell renderer.</p>
30
 * 
31
 * @version 08/02/2008
32
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es) 
33
 */
34
public class SampleBasicComboBoxRenderer extends BasicComboBoxRenderer {
35
	private static final long serialVersionUID = -9044759678425798655L;
36

  
37
	/**
38
	 * <p>Creates a new instance of the <code>SampleBasicComboBoxRenderer</code> class.</p>
39
	 */
40
	public SampleBasicComboBoxRenderer() {
41
		super();
42
	}
43

  
44
	/*
45
	 * (non-Javadoc)
46
	 * @see javax.swing.plaf.basic.BasicComboBoxRenderer#getListCellRendererComponent(javax.swing.JList, java.lang.Object, int, boolean, boolean)
47
	 */
48
	public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
49
		Component component = super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
50
		
51
		if (isSelected)
52
			component.setBackground(Color.GRAY);
53
		else
54
			component.setBackground(new Color(((17 * index) % 256), ((31 * index) % 256), ((7 * index) % 256)));
55
		
56
		return component;
57
	}
58
}
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/comboboxconfigurablelookup/usertests/JFrameUserTestOfJComboBoxConfigurableLookUp.java
1
package org.gvsig.gui.beans.comboboxconfigurablelookup.usertests;
2

  
3
import java.io.Serializable;
4

  
5
import javax.swing.JFrame;
6

  
7
import org.gvsig.gui.beans.Messages;
8
import org.gvsig.gui.beans.comboboxconfigurablelookup.JComboBoxConfigurableLookUp;
9

  
10

  
11
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
12
*
13
* Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
14
*
15
* This program is free software; you can redistribute it and/or
16
* modify it under the terms of the GNU General Public License
17
* as published by the Free Software Foundation; either version 2
18
* of the License, or (at your option) any later version.
19
*
20
* This program is distributed in the hope that it will be useful,
21
* but WITHOUT ANY WARRANTY; without even the implied warranty of
22
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23
* GNU General Public License for more details.
24
*
25
* You should have received a copy of the GNU General Public License
26
* along with this program; if not, write to the Free Software
27
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
28
*
29
* For more information, contact:
30
*
31
*  Generalitat Valenciana
32
*   Conselleria d'Infraestructures i Transport
33
*   Av. Blasco Ib??ez, 50
34
*   46010 VALENCIA
35
*   SPAIN
36
*
37
*      +34 963862235
38
*   gvsig@gva.es
39
*      www.gvsig.gva.es
40
*
41
*    or
42
*
43
*   IVER T.I. S.A
44
*   Salamanca 50
45
*   46005 Valencia
46
*   Spain
47
*
48
*   +34 963163400
49
*   dac@iver.es
50
*/
51

  
52
/**
53
 * <p>Creates and launches an application for testing {@link JComboBoxConfigurableLookUp JComboBoxConfigurableLookUp}.</p>
54
 * 
55
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
56
 * @version 07/02/2008
57
 */
58
public class JFrameUserTestOfJComboBoxConfigurableLookUp implements Serializable{
59
	private static final long serialVersionUID = 5760643373469048220L;
60

  
61
	private JPanelUserTestOfJComboBoxConfigurableLookUp mainPanel = null;
62
	private JFrame frame;
63

  
64
	/**
65
	 * <p>Default constructor.</p>
66
	 */
67
	public JFrameUserTestOfJComboBoxConfigurableLookUp() {
68
		createFrame();
69
	}
70

  
71
	/**
72
	 * <p>Creates the main <code>JFrame</code> for execute the application, and adds to it the <code>JPanel</code> test application.</p> 
73
	 */
74
	private void createFrame() {
75
		// Create: Configuration Frame
76
		frame = new JFrame();
77
		frame.setResizable(false);
78
		frame.setTitle(Messages.getText("jComboBoxConfigurableLookUpByTheUser_frameTitle"));
79
		frame.getContentPane().add(getJPanelUserTestOfJComboBoxConfigurableLookUp());
80
		frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
81
		frame.pack();
82

  
83
		// Centers the frame in the middle of the screen
84
		frame.setLocationRelativeTo(null);
85
	}
86
	
87
	/**
88
	 * <p>Initializes <code>mainPanel</code>.</p>
89
	 * 
90
	 * @return JPanelUserTestOfJComboBoxConfigurableLookUp
91
	 */
92
	private JPanelUserTestOfJComboBoxConfigurableLookUp getJPanelUserTestOfJComboBoxConfigurableLookUp() {
93
		if (mainPanel == null) {
94
			mainPanel = new JPanelUserTestOfJComboBoxConfigurableLookUp();
95
		}
96
		
97
		return mainPanel;
98
	}
99

  
100
	/**
101
	 * <p>Method for launch the application.</p>
102
	 * 
103
	 * @param args
104
	 */
105
	public static void main(String[] args) {
106
		JFrameUserTestOfJComboBoxConfigurableLookUp app = new JFrameUserTestOfJComboBoxConfigurableLookUp();
107
		app.setVisible(true);
108
	}
109

  
110
	/**
111
	 * <p>Sets visible the frame.</p>
112
	 * 
113
	 * @param visible True or false
114
	 */
115
	public void setVisible(boolean visible) {
116
		frame.setVisible(visible);
117
	}	
118
}
tags/v2_0_0_Build_2047/libraries/libUIComponent/src-test-ui/org/gvsig/gui/beans/comboboxconfigurablelookup/usertests/JPanelUserTestOfJComboBoxConfigurableLookUp.java
1
package org.gvsig.gui.beans.comboboxconfigurablelookup.usertests;
2

  
3
import java.awt.Color;
4
import java.awt.Dimension;
5
import java.awt.FlowLayout;
6
import java.awt.Font;
7
import java.awt.GridLayout;
8
import java.awt.event.MouseAdapter;
9
import java.awt.event.MouseEvent;
10
import java.awt.event.WindowAdapter;
11
import java.awt.event.WindowEvent;
12
import java.io.BufferedReader;
13
import java.io.File;
14
import java.io.FileReader;
15
import java.io.IOException;
16
import java.io.OutputStream;
17
import java.io.PrintStream;
18
import java.io.Serializable;
19
import java.lang.reflect.InvocationTargetException;
20
import java.lang.reflect.Method;
21
import java.util.HashMap;
22
import java.util.Map;
23
import java.util.StringTokenizer;
24
import java.util.Vector;
25

  
26
import javax.swing.BorderFactory;
27
import javax.swing.JButton;
28
import javax.swing.JCheckBox;
29
import javax.swing.JComboBox;
30
import javax.swing.JFrame;
31
import javax.swing.JLabel;
32
import javax.swing.JOptionPane;
33
import javax.swing.JPanel;
34
import javax.swing.JScrollPane;
35
import javax.swing.JTabbedPane;
36
import javax.swing.JTextArea;
37
import javax.swing.JTextField;
38
import javax.swing.border.TitledBorder;
39
import javax.swing.event.ListDataEvent;
40
import javax.swing.event.ListDataListener;
41
import javax.swing.event.PopupMenuEvent;
42
import javax.swing.event.PopupMenuListener;
43

  
44
import org.gvsig.gui.beans.Messages;
45
import org.gvsig.gui.beans.comboboxconfigurablelookup.DefaultComboBoxConfigurableLookUpModel;
46
import org.gvsig.gui.beans.comboboxconfigurablelookup.JComboBoxConfigurableLookUp;
47
import org.gvsig.gui.beans.comboboxconfigurablelookup.programmertests.SampleBasicComboBoxRenderer;
48

  
49

  
50
/* gvSIG. Sistema de Informaci?n Geogr?fica de la Generalitat Valenciana
51
*
52
* Copyright (C) 2004 IVER T.I. and Generalitat Valenciana.
53
*
54
* This program is free software; you can redistribute it and/or
55
* modify it under the terms of the GNU General Public License
56
* as published by the Free Software Foundation; either version 2
57
* of the License, or (at your option) any later version.
58
*
59
* This program is distributed in the hope that it will be useful,
60
* but WITHOUT ANY WARRANTY; without even the implied warranty of
61
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
62
* GNU General Public License for more details.
63
*
64
* You should have received a copy of the GNU General Public License
65
* along with this program; if not, write to the Free Software
66
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,USA.
67
*
68
* For more information, contact:
69
*
70
*  Generalitat Valenciana
71
*   Conselleria d'Infraestructures i Transport
72
*   Av. Blasco Ib??ez, 50
73
*   46010 VALENCIA
74
*   SPAIN
75
*
76
*      +34 963862235
77
*   gvsig@gva.es
78
*      www.gvsig.gva.es
79
*
80
*    or
81
*
82
*   IVER T.I. S.A
83
*   Salamanca 50
84
*   46005 Valencia
85
*   Spain
86
*
87
*   +34 963163400
88
*   dac@iver.es
89
*/
90

  
91
/** 
92
 * <p>Application for testing <code>JComboBoxLookUpConfigurable</code> objects.</p>
93
 * 
94
 * <p>This class is a JPanel and has other classes nested.</p>
95
 * 
96
 * @author Pablo Piqueras Bartolom? (pablo.piqueras@iver.es)
97
 * @version 07/02/2008
98
 */
99
public class JPanelUserTestOfJComboBoxConfigurableLookUp extends JPanel implements Serializable {
100
	private static final long serialVersionUID = -8900802197326194647L;
101

  
102
	private final int panelWidth = 735;
103
	private final int panelHeight = 580;
104
	private final int testWidth = 260;
105
	private ConfigurationJPanel configurationPanel = null;
106
	private OtherTestsJPanel otherTestsPanel = null;
107
	private JavaFileMethodsLoader javaFileMethodsLoader;
108
	private int testNumber;
109
	private String path;
110
	private boolean isConfiguring;
111
	
112
	private static final short DEFAULT_CELL_RENDERER = 0;
113
	private static final short SAMPLE_BG_COLOR_CELL_RENDERER = 1;
114
	
115
	/**
116
	 * <p>Default constructor.</p>
117
	 */
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff