Revision 44920 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.symbology.app/org.gvsig.symbology.app.importsymbols/src/main/java/org/gvsig/symbology/app/importsymbols/ImportPictureMarkerSymbolsPanelLayout.java

View differences:

ImportPictureMarkerSymbolsPanelLayout.java
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 1
package org.gvsig.symbology.app.importsymbols;
25 2

  
3
import com.jeta.open.i18n.I18NUtils;
4
import com.jgoodies.forms.layout.CellConstraints;
5
import com.jgoodies.forms.layout.FormLayout;
26 6
import java.awt.BorderLayout;
27 7
import java.awt.ComponentOrientation;
28 8
import java.awt.Container;
29 9
import java.awt.Dimension;
30

  
31 10
import javax.swing.Box;
32 11
import javax.swing.ImageIcon;
33 12
import javax.swing.JButton;
34 13
import javax.swing.JComboBox;
14
import javax.swing.JFrame;
35 15
import javax.swing.JLabel;
36 16
import javax.swing.JList;
37 17
import javax.swing.JPanel;
......
39 19
import javax.swing.JSpinner;
40 20
import javax.swing.JTextField;
41 21

  
42
import com.jgoodies.forms.layout.CellConstraints;
43
import com.jgoodies.forms.layout.FormLayout;
44 22

  
45

  
46 23
public class ImportPictureMarkerSymbolsPanelLayout extends JPanel
47 24
{
48
   /**
49
	 * 
50
	 */
51
	private static final long serialVersionUID = -5315759500182797864L;
52
JLabel labelTitle = new JLabel();
25
   JLabel labelTitle = new JLabel();
53 26
   JLabel labelImagesToImport = new JLabel();
54 27
   JLabel labelFolderName = new JLabel();
55 28
   JTextField ctrltFolderName = new JTextField();
......
158 131
      jpanel1.setLayout(formlayout1);
159 132

  
160 133
      labelTitle.setName("labelTitle");
161
      labelTitle.setText("_Import_images_as_picture_marker_symbols");
134
      labelTitle.setText("_Import_images_as_symbols");
162 135
      jpanel1.add(labelTitle,cc.xywh(2,2,6,1));
163 136

  
164 137
      labelImagesToImport.setName("labelImagesToImport");
......
166 139
      jpanel1.add(labelImagesToImport,cc.xywh(2,4,6,1));
167 140

  
168 141
      labelFolderName.setName("labelFolderName");
169
      labelFolderName.setText("_Folder_name_for_creatimg_the_symbols");
142
      labelFolderName.setText("_Folder_for_the_symbols");
170 143
      jpanel1.add(labelFolderName,cc.xywh(2,7,6,1));
171 144

  
172 145
      ctrltFolderName.setName("ctrltFolderName");
......
180 153
      jpanel1.add(jscrollpane1,new CellConstraints(3,9,5,1,CellConstraints.FILL,CellConstraints.TOP));
181 154

  
182 155
      labelSize.setName("labelSize");
183
      labelSize.setText("_Default_size_to_use_in_symbols");
156
      labelSize.setText("_Default_size");
184 157
      jpanel1.add(labelSize,cc.xywh(2,11,6,1));
185 158

  
186 159
      ctrlDefaultSize.setName("ctrlDefaultSize");

Also available in: Unified diff