Revision 69

View differences:

org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.app/org.gvsig.educa.thematicmap.app.viewer/package.info
1 1
#
2
#Fri Dec 23 12:48:17 CET 2011
2
#Fri Dec 23 13:08:39 CET 2011
3 3
state=devel
4 4
name=org.gvsig.educa.thematicmap.app.viewer
5 5
buildNumber=0
org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.app/org.gvsig.educa.thematicmap.app.viewer/src/main/resources/text.properties
12 12

  
13 13
open_thematic_map = Abrir mapas tem\u00E1ticos
14 14

  
15
source_view = Vista origen
16

  
15 17
thematic_map_properties = Propiedades del mapa tem\u00E1tico
16 18

  
17 19
thematic_maps_availables = Mapas tem\u00E1ticos disponibles
org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.app/org.gvsig.educa.thematicmap.app.viewer/src/main/resources/text_en.properties
12 12

  
13 13
open_thematic_map = Open Thematic Maps
14 14

  
15
source_view = Source View
16

  
15 17
thematic_map_properties = Thematic Map properties
16 18

  
17 19
thematic_maps_availables = Thematic maps availables
org.gvsig.educa.thematicmap.app/trunk/org.gvsig.educa.thematicmap.app/org.gvsig.educa.thematicmap.app.viewer/src/main/java/org/gvsig/educa/thematicmap/app/viewer/ui/ThematicMapDocumentProperties.java
82 82

  
83 83
    private JButton cancelButton;
84 84

  
85
    private JTextField sourceViewName;
86

  
85 87
    /**
86 88
     * @param doc
87 89
     */
......
190 192
        GridBagLayoutPanel namePanel = new GridBagLayoutPanel();
191 193
        name = new JTextField(model.getName());
192 194
        namePanel.addComponent(tmSwingManager.getTranslation("name"), name);
195
        sourceViewName = new JTextField();
196
        sourceViewName.setEditable(false);
197
        if (model.getSourceView() != null) {
198
            sourceViewName.setText(model.getSourceView().getName());
199
            namePanel.addComponent(
200
                tmSwingManager.getTranslation("source_view"), sourceViewName);
201
        }
193 202
        return namePanel;
194 203
    }
195 204

  

Also available in: Unified diff