Revision 38564

View differences:

branches/v2_0_0_prep/build/projects/gvsig-base/pom.xml
58 58
        <module>../../../org.gvsig.personaldb</module>
59 59
		<module>../../../appgvSIG</module>
60 60
        <module>../../../org.gvsig.app.document.table.app</module>
61
        <!-- 
61 62
        <module>../../../org.gvsig.app.document.layout.app</module>
63
         -->
62 64
		<module>../../../org.gvsig.installer</module>
63 65
		<module>../../../org.gvsig.installer.app</module>	
64 66
  </modules>
branches/v2_0_0_prep/build/projects/gvsig-standard/pom.xml
26 26
	<modules>
27 27
		<module>../gvsig-base</module>
28 28
		
29
		<!-- 
29 30
		<module>../../../extIconThemeBase</module>
30

  
31
        -->
32
        
31 33
        <!-- developer -->
32 34
		<module>../../../org.gvsig.mkmvnproject</module>
33 35

  
branches/v2_0_0_prep/extensions/extDataLocator/config/config.xml
7 7
		<extension class-name="org.gvsig.datalocator.DataLocatorExtension"
8 8
			description="Extensi?n que permite hacer zooms en funci?n de los valores de la base de datos. Tambi?n permite guardar y recuperar estos zooms."
9 9
			active="true">
10
			<menu text="Vista/Localizador_por_atributo" tooltip="Localizador_por_atributo"
11
				action-command="DATALOCATOR"
12
				icon="view-locator" />
10
			
11
			<action 
12
                name="view-navigation-locator-by-attribute"
13
                label="_Locator_by_attribute" 
14
                tooltip="_Locate_a_feature_searching_by_an_attribute" 
15
                position="650102000" 
16
                action-command="view-navigation-locator-by-attribute"
17
                icon="view-navigation-locator-by-attribute"
18
                accelerator=""
19
                />
20
            
21
            <menu
22
                name="view-navigation-locator-by-attribute" 
23
                text="View/Navigation/Locator_by_attribute"
24
                />
25
                
13 26
			<tool-bar name="Herramientas">
14
				<action-tool icon="view-locator"
15
					action-command="DATALOCATOR" tooltip="Localizador_por_atributo"
16
				last="true"/>
17
			</tool-bar>
27
                <action-tool name="view-navigation-locator-by-attribute"/>
28
            </tool-bar>
29

  
18 30
		</extension>
19 31
	</extensions>
20 32
</plugin-config>
branches/v2_0_0_prep/extensions/extDataLocator/src/org/gvsig/datalocator/DataLocatorExtension.java
45 45

  
46 46
import java.util.prefs.Preferences;
47 47

  
48
import org.gvsig.andami.IconThemeHelper;
48 49
import org.gvsig.andami.PluginServices;
49 50
import org.gvsig.andami.plugins.Extension;
50 51
import org.gvsig.andami.ui.mdiManager.IWindow;
......
80 81
    }
81 82

  
82 83
    private void registerIcons(){
83
    	//view-locator
84
    	PluginServices.getIconTheme().registerDefault(
85
				"view-locator",
86
				this.getClass().getClassLoader().getResource("images/locator.png")
87
			);
84
    	IconThemeHelper.registerIcon("action", "view-navigation-locator-by-attribute", this);
88 85
    }
89 86

  
90 87
    /* (non-Javadoc)
91 88
     * @see com.iver.andami.plugins.Extension#execute(java.lang.String)
92 89
     */
93 90
    public void execute(String actionCommand) {
94
		DefaultViewPanel vista = (DefaultViewPanel)PluginServices.getMDIManager().getActiveWindow();
95
		MapContext mapContext = vista.getModel().getMapContext();
96
		DataSelectionPanel dataSelectionPanel = new DataSelectionPanel(mapContext);
97
		WindowInfo vi = dataSelectionPanel.getWindowInfo();
98
		vi.setX(Preferences.userRoot().getInt("gvSIG.DataLocator.x", vi.getX()));
99
		vi.setY(Preferences.userRoot().getInt("gvSIG.DataLocator.y", vi.getY()));
100
//		vi.setWidth(Preferences.userRoot().getInt("gvSIG.DataLocator.w", vi.getWidth()));
101
//		vi.setHeight(Preferences.userRoot().getInt("gvSIG.DataLocator.h", vi.getHeight()));
102

  
103
		PluginServices.getMDIManager().addWindow(dataSelectionPanel);
104
		iWDataSelection = dataSelectionPanel;
105
		iWDataSelection.getWindowInfo();
91
    	if( "view-navigation-locator-by-attribute".equalsIgnoreCase(actionCommand))  {
92
			DefaultViewPanel vista = (DefaultViewPanel)PluginServices.getMDIManager().getActiveWindow();
93
			MapContext mapContext = vista.getViewDocument().getMapContext();
94
			DataSelectionPanel dataSelectionPanel = new DataSelectionPanel(mapContext);
95
			WindowInfo vi = dataSelectionPanel.getWindowInfo();
96
			vi.setX(Preferences.userRoot().getInt("gvSIG.DataLocator.x", vi.getX()));
97
			vi.setY(Preferences.userRoot().getInt("gvSIG.DataLocator.y", vi.getY()));
98
	//		vi.setWidth(Preferences.userRoot().getInt("gvSIG.DataLocator.w", vi.getWidth()));
99
	//		vi.setHeight(Preferences.userRoot().getInt("gvSIG.DataLocator.h", vi.getHeight()));
100
	
101
			PluginServices.getMDIManager().addWindow(dataSelectionPanel);
102
			iWDataSelection = dataSelectionPanel;
103
			iWDataSelection.getWindowInfo();
104
    	}
106 105
    }
107 106

  
108 107
    /* (non-Javadoc)
branches/v2_0_0_prep/extensions/org.gvsig.installer.app/org.gvsig.installer.app.extension/src/main/java/org/gvsig/installer/app/extension/execution/InstallPackageExtension.java
33 33
import java.net.MalformedURLException;
34 34
import java.net.URL;
35 35

  
36
import org.gvsig.andami.IconThemeHelper;
36 37
import org.gvsig.andami.PluginServices;
37 38
import org.gvsig.andami.PluginsLocator;
38 39
import org.gvsig.andami.PluginsManager;
......
54 55
			.getLogger(InstallPackageExtension.class);
55 56

  
56 57
	public void execute(String actionCommand) {
57
		PluginsManager manager = PluginsLocator.getManager();
58
		try {
59
			PluginServices.getMDIManager().addCentredWindow(
60
					new InstallPackageWindow(manager.getApplicationFolder(),
61
							manager.getInstallFolder()));
62
		} catch (Error e) {
63
			LOG.error("Error creating the wizard to install a package ", e);
64
		} catch (Exception e) {
65
			LOG.error("Error creating the wizard to install a package ", e);
58
		if ("tools-addonsmanager".equalsIgnoreCase(actionCommand)) {
59
			PluginsManager manager = PluginsLocator.getManager();
60
			try {
61
				PluginServices.getMDIManager().addCentredWindow(
62
						new InstallPackageWindow(
63
								manager.getApplicationFolder(), manager
64
										.getInstallFolder()));
65
			} catch (Error e) {
66
				LOG.error("Error creating the wizard to install a package ", e);
67
			} catch (Exception e) {
68
				LOG.error("Error creating the wizard to install a package ", e);
69
			}
66 70
		}
67 71
	}
68 72

  
......
71 75
		InstallerLocator.getInstallerManager().setVersion(
72 76
				version.getFormat() + "-" + version.getBuildId());
73 77
		try {
78
			IconThemeHelper.registerIcon("action", "tools-addonsmanager", this);
79
	    	
74 80
			SwingInstallerManager manager = SwingInstallerLocator
75 81
					.getSwingInstallerManager();
76 82
			
branches/v2_0_0_prep/extensions/org.gvsig.installer.app/org.gvsig.installer.app.extension/src/main/java/org/gvsig/installer/app/extension/creation/MakePluginPackageExtension.java
47 47
			.getLogger(MakePluginPackageExtension.class);
48 48

  
49 49
	public void execute(String actionCommand) {
50
		PluginsManager manager = PluginsLocator.getManager();
50
		if ("tools-devel-pack-plugin".equalsIgnoreCase(actionCommand)) {
51
			PluginsManager manager = PluginsLocator.getManager();
51 52

  
52
		try {
53
			PluginServices.getMDIManager().addCentredWindow(
54
					new MakePluginPackageWindow(manager.getApplicationFolder(),
55
							manager.getInstallFolder()));
56
		} catch (Exception e) {
57
			LOG.error("Error creating teh wizard to create an installer ", e);
53
			try {
54
				PluginServices.getMDIManager().addCentredWindow(
55
						new MakePluginPackageWindow(manager
56
								.getApplicationFolder(), manager
57
								.getInstallFolder()));
58
			} catch (Exception e) {
59
				LOG.error("Error creating teh wizard to create an installer ",
60
						e);
61
			}
58 62
		}
59 63
	}
60 64

  
branches/v2_0_0_prep/extensions/org.gvsig.installer.app/org.gvsig.installer.app.extension/src/main/resources/config/config.xml
7 7
		<extension class-name="org.gvsig.installer.app.extension.creation.MakePluginPackageExtension"
8 8
			description="This extension is used to create a bundle for a plugin package from the current gvSIG application."
9 9
			active="true">
10
			<menu text="tools/Development/make_plugin_package"
11
				  tooltip="make_plugin_package_description"
12
				  position= "7009075"
13
				  action-command="" />			
10
			<action 
11
			    name= "tools-devel-pack-plugin"
12
				label="_pack_plugin"
13
				tooltip="_Create_a_package_of_a_plugin"
14
				action-command="tools-devel-pack-plugin" 
15
				icon="tools-devel-pack-plugin"
16
				position="908500600"/>
17
				
18
			<menu
19
				name="tools-devel-pack-plugin" 
20
				text="tools/Development/make_plugin_package"
21
				 />			
14 22
		</extension>
23
		
15 24
			<extension class-name="org.gvsig.installer.app.extension.execution.InstallPackageExtension"
16 25
			description="This extension is used to install a package from a bundle in gvSIG"
17 26
			active="true">
18
			<menu text="tools/addons_manager"
19
				  tooltip="addons_manager_description"
20
				  position= "7009070"
21
				  icon="images/system-software-update.png"
22
				  action-command="" />			
27

  
28
			<action 
29
			    name= "tools-addonsmanager"
30
				label="_addons_manager"
31
				tooltip="_show_the_addons_manager"
32
				action-command="tools-addonsmanager" 
33
				icon="tools-addonsmanager"
34
				position="900100000"/>
35

  
36
			<menu
37
				name="tools-addonsmanager" 
38
				text="tools/addons_manager"
39
				/>			
23 40
		</extension>
24 41
	</extensions>
25 42
</plugin-config>
branches/v2_0_0_prep/extensions/org.gvsig.daltransform.app.mainplugin/src/main/java/org/gvsig/daltransform/app/mainplugin/DataTransformExtension.java
32 32

  
33 33
import javax.swing.JOptionPane;
34 34

  
35
import org.gvsig.andami.IconThemeHelper;
35 36
import org.gvsig.andami.PluginServices;
36 37
import org.gvsig.andami.plugins.Extension;
37 38
import org.gvsig.andami.ui.ToolsWindowManager;
......
98 99
     * @see com.iver.andami.plugins.IExtension#initialize()
99 100
     */
100 101
    public void initialize() {
101
        registerIcons();
102
    	IconThemeHelper.registerIcon("feature-transform-tools", "feature-transform-wizard", this);
102 103
    }
103 104

  
104 105
    /*
......
111 112
        super.postInitialize();
112 113
    }
113 114

  
114
    private void registerIcons() {
115
        PluginServices.getIconTheme().registerDefault(
116
            "feature-transform",
117
            this.getClass().getClassLoader()
118
                .getResource("images/transform.png"));
119
    }
120

  
121 115
    /*
122 116
     * (non-Javadoc)
123 117
     * 
branches/v2_0_0_prep/extensions/org.gvsig.daltransform.app.mainplugin/src/main/java/org/gvsig/daltransform/swing/impl/DefaultDataTransformWizard.java
29 29

  
30 30
import java.util.List;
31 31

  
32
import org.gvsig.andami.IconThemeHelper;
32 33
import org.gvsig.andami.PluginServices;
33 34
import org.gvsig.andami.ui.mdiManager.IWindow;
34 35
import org.gvsig.andami.ui.wizard.WizardAndami;
......
61 62
     * @param wizard
62 63
     */
63 64
    public DefaultDataTransformWizard() {
64
        super(PluginServices.getIconTheme().get("feature-transform"));
65
        super(IconThemeHelper.getImageIcon("feature-transform-tools"));
65 66
        loadLayerWizardPanel = new LoadLayerWizardPanel();
66 67
        selectDataStoreWizardPanel = new SelectDataStoreWizardPanel();
67 68
        selectTransformWizardPanel = new SelectTransformWizardPanel();
branches/v2_0_0_prep/extensions/org.gvsig.geometrymeasurement.app/org.gvsig.geometrymeasurement.app.extension/src/main/java/org/gvsig/geometrymeasurement/app/extension/AreaMeasurementExtension.java
21 21
 */
22 22
package org.gvsig.geometrymeasurement.app.extension;
23 23

  
24
import org.gvsig.andami.PluginServices;
24
import org.gvsig.andami.IconThemeHelper;
25 25
import org.gvsig.app.project.documents.table.TableDocument;
26 26
import org.gvsig.fmap.dal.feature.FeatureStore;
27 27
import org.gvsig.fmap.geom.Geometry;
......
38 38

  
39 39
    public void initialize() {
40 40
    super.initialize();
41
        
42
        //Register the icon
43
        PluginServices.getIconTheme().registerDefault(
44
            "add-area",
45
            this.getClass().getClassLoader().getResource(
46
                "org/gvsig/geometrymeasurement/app/extension/images/area.png")
47
        );
41
        IconThemeHelper.registerIcon("action", "table-add-area", this);
48 42
    }
49 43

  
50 44
    @Override
branches/v2_0_0_prep/extensions/org.gvsig.geometrymeasurement.app/org.gvsig.geometrymeasurement.app.extension/src/main/java/org/gvsig/geometrymeasurement/app/extension/PerimeterMeasurementExtension.java
21 21
 */
22 22
package org.gvsig.geometrymeasurement.app.extension;
23 23

  
24
import org.gvsig.andami.IconThemeHelper;
24 25
import org.gvsig.andami.PluginServices;
25 26
import org.gvsig.app.project.documents.table.TableDocument;
26 27
import org.gvsig.fmap.dal.feature.FeatureStore;
......
37 38
    AbstractGeometryMeasurementExtension {
38 39

  
39 40
    public void initialize() {
40
    super.initialize();
41
        
42
        //Register the icon
43
        PluginServices.getIconTheme().registerDefault(
44
            "add-perimeter",
45
            this.getClass().getClassLoader().getResource(
46
                "org/gvsig/geometrymeasurement/app/extension/images/perimeter.png")
47
        );
41
    	super.initialize();
42
        IconThemeHelper.registerIcon("action", "table-add-perimeter", this);
48 43
    }
49 44

  
50 45
    @Override
branches/v2_0_0_prep/extensions/org.gvsig.geometrymeasurement.app/org.gvsig.geometrymeasurement.app.extension/src/main/java/org/gvsig/geometrymeasurement/app/extension/AddXYPointThemeExtension.java
21 21
 */
22 22
package org.gvsig.geometrymeasurement.app.extension;
23 23

  
24
import org.gvsig.andami.IconThemeHelper;
24 25
import org.gvsig.andami.PluginServices;
25 26
import org.gvsig.app.project.documents.table.TableDocument;
26 27
import org.gvsig.fmap.dal.feature.FeatureStore;
......
38 39

  
39 40
    public void initialize() {
40 41
        super.initialize();
41
        
42
        //Register the icon
43
        PluginServices.getIconTheme().registerDefault(
44
            "add-xy-point",
45
            this.getClass().getClassLoader().getResource(
46
                "org/gvsig/geometrymeasurement/app/extension/images/xypoint.png")
47
        );
42
        IconThemeHelper.registerIcon("action", "table-add-xy", this);
48 43
    }
49 44

  
50 45
    @Override
branches/v2_0_0_prep/extensions/extExpressionField/src/org/gvsig/expressionfield/ExpressionFieldExtension.java
5 5
import java.util.Iterator;
6 6

  
7 7
import javax.swing.JOptionPane;
8
import javax.swing.plaf.OptionPaneUI;
9 8

  
10 9
import org.apache.bsf.BSFManager;
11
import org.slf4j.Logger;
12
import org.slf4j.LoggerFactory;
13

  
10
import org.gvsig.andami.IconThemeHelper;
14 11
import org.gvsig.andami.PluginServices;
15 12
import org.gvsig.andami.messages.NotificationManager;
16 13
import org.gvsig.andami.plugins.Extension;
......
78 75
import org.gvsig.tools.ToolsLocator;
79 76
import org.gvsig.tools.extensionpoint.ExtensionPoint;
80 77
import org.gvsig.utils.swing.threads.AbstractMonitorableTask;
78
import org.slf4j.Logger;
79
import org.slf4j.LoggerFactory;
81 80

  
82 81
/**
83 82
 * @author Vicente Caballero Navarro
......
97 96
	}
98 97

  
99 98
	public void execute(String actionCommand) {
100
		org.gvsig.andami.ui.mdiManager.IWindow window = PluginServices.getMDIManager().getActiveWindow();
101
		table=(FeatureTableDocumentPanel)window;
102
		if (!table.getModel().getStore().isEditing()){
103
			int option=JOptionPane.showConfirmDialog((Component)PluginServices.getMainFrame(), PluginServices.getText(this,"is_not_in_editing_are_you_sure"));
104
			if (option != JOptionPane.OK_OPTION){
105
				return;
99
		if( "table-expression-field".equalsIgnoreCase(actionCommand) ) {
100
	 		org.gvsig.andami.ui.mdiManager.IWindow window = PluginServices.getMDIManager().getActiveWindow();
101
			table=(FeatureTableDocumentPanel)window;
102
			if (!table.getModel().getStore().isEditing()){
103
				int option=JOptionPane.showConfirmDialog((Component)PluginServices.getMainFrame(), PluginServices.getText(this,"is_not_in_editing_are_you_sure"));
104
				if (option != JOptionPane.OK_OPTION){
105
					return;
106
				}
106 107
			}
108
			if (operators.isEmpty()) {
109
				PluginServices.cancelableBackgroundExecution(new EvalOperatorsTask());
110
	        }else{
111
	        	 EvalExpressionDialog eed=new EvalExpressionDialog(table,interpreter,operators);
112
			     PluginServices.getMDIManager().addWindow(eed);
113
	        }
107 114
		}
108
		if (operators.isEmpty()) {
109
			PluginServices.cancelableBackgroundExecution(new EvalOperatorsTask());
110
        }else{
111
        	 EvalExpressionDialog eed=new EvalExpressionDialog(table,interpreter,operators);
112
		     PluginServices.getMDIManager().addWindow(eed);
113
        }
114 115
	}
115 116
	public void postInitialize() {
116 117

  
......
207 208
	}
208 209

  
209 210
	 private void registerIcons(){
210
		 PluginServices.getIconTheme().registerDefault(
211
					"ext-kcalc",
212
					this.getClass().getClassLoader().getResource("images/kcalc.png")
213
				);
214

  
215
		 PluginServices.getIconTheme().registerDefault(
216
					"field-expression-kcalc",
217
					this.getClass().getClassLoader().getResource("images/FieldExpression.png")
218
				);
211
		 IconThemeHelper.registerIcon("action", "table-expression-field", this);
212
		 IconThemeHelper.registerIcon("action", "expression-field-preferences", this);
219 213
	 }
220 214

  
221 215
	 private class EvalOperatorsTask extends AbstractMonitorableTask{
branches/v2_0_0_prep/extensions/extExpressionField/src/org/gvsig/expressionfield/gui/FieldExpressionPage.java
137 137

  
138 138
	public FieldExpressionPage() {
139 139
		super();
140
		icon=PluginServices.getIconTheme().get("field-expression-kcalc");
140
		icon=PluginServices.getIconTheme().get("expression-field-preferences");
141 141
		addComponent(getJTextArea());
142 142

  
143 143
		addComponent(PluginServices.getText(this, "limit_rows_in_memory") + ":",
branches/v2_0_0_prep/extensions/extExpressionField/src/org/gvsig/expressionfield/project/documents/table/gui/EvalExpressionDialog.java
44 44
import org.gvsig.expressionfield.project.documents.table.IOperator;
45 45
import org.gvsig.expressionfield.project.documents.table.operators.Field;
46 46
import org.gvsig.fmap.dal.exception.DataException;
47
import org.gvsig.tools.dispose.DisposableIterator;
48 47
import org.gvsig.fmap.dal.feature.Feature;
49 48
import org.gvsig.fmap.dal.feature.FeatureSelection;
50 49
import org.gvsig.fmap.dal.feature.FeatureSet;
......
53 52
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
54 53
import org.gvsig.gui.beans.AcceptCancelPanel;
55 54
import org.gvsig.gui.beans.swing.JButton;
55
import org.gvsig.tools.dispose.DisposableIterator;
56 56
import org.gvsig.tools.dispose.DisposeUtils;
57 57
import org.gvsig.utils.GenericFileFilter;
58 58

  
branches/v2_0_0_prep/extensions/extExpressionField/src/org/gvsig/expressionfield/project/documents/table/GraphicOperator.java
6 6
import org.gvsig.fmap.geom.Geometry;
7 7
import org.gvsig.fmap.geom.GeometryLocator;
8 8
import org.gvsig.fmap.geom.GeometryManager;
9
import org.gvsig.fmap.geom.util.Converter;
10 9
import org.gvsig.fmap.mapcontext.layers.vectorial.FLyrVect;
11 10

  
12 11
/**
branches/v2_0_0_prep/extensions/extExpressionField/config/config.xml
8 8
		<extension class-name="org.gvsig.expressionfield.ExpressionFieldExtension"
9 9
			description="Extension that evaluate the expression to a column."
10 10
			active="true">
11
			<menu text="Tabla/fill_column" tooltip="expression"
12
				action-command="EXPRESSION"
13
				icon="ext-kcalc" />
14
			<tool-bar name="field_toolbar">
15
				<action-tool icon="ext-kcalc"
16
					action-command="EXPRESSION" tooltip="expression"
17
					last="true"/>
18
			</tool-bar>
11

  
12
            <action 
13
                name="table-expression-field"
14
                label="_Expression_field" 
15
                tooltip="_Expression_field" 
16
                position="501100000" 
17
                action-command="table-expression-field"
18
                icon="table-expression-field"
19
                accelerator=""
20
                />
21
            
22
            <menu
23
                name="table-expression-field"
24
                text="Table/Expression field"
25
                />
26
            
27
            <tool-bar name="table_tools">
28
                <action-tool 
29
                    name="table-expression-field"
30
                    />
31
            </tool-bar>   
32
            			
19 33
		</extension>
34
		
20 35
		<extension class-name="org.gvsig.expressionfield.AboutExpressionFieldExtension"
21 36
			description="Extension to add about panel."
22 37
			active="false"
branches/v2_0_0_prep/extensions/org.gvsig.hyperlink.app/org.gvsig.hyperlink.app.extension/src/main/resources/config.xml
8 8
			description=""
9 9
			active="true"
10 10
			priority="20">
11
			<menu text="Capa/Advanced_Hyperlink" action-command="HYPERLINK" icon="images/Link.png" position="5040"/>
11
			<menu text="Capa/Advanced_Hyperlink" action-command="HYPERLINK" icon="view-hyperlink" position="5040"/>
12 12
			<tool-bar name="View_Tools_Query" position="5">
13 13
				<selectable-tool icon="view-query-link" action-command="HYPERLINK"  tooltip="Advanced_Hyperlink" position="7"/>
14 14
			</tool-bar>
branches/v2_0_0_prep/extensions/org.gvsig.hyperlink.app/org.gvsig.hyperlink.app.extension/src/main/java/org/gvsig/hyperlink/app/extension/actions/PdfHyperlinkPanel.java
37 37
import java.beans.PropertyChangeEvent;
38 38
import java.beans.PropertyChangeListener;
39 39
import java.net.URI;
40
import java.net.URL;
41 40

  
42 41
import javax.print.attribute.HashPrintRequestAttributeSet;
43 42
import javax.print.attribute.PrintRequestAttributeSet;
44 43
import javax.print.attribute.SetOfIntegerSyntax;
45 44
import javax.print.attribute.standard.PageRanges;
46
import javax.swing.ImageIcon;
47 45
import javax.swing.JButton;
48 46
import javax.swing.JLabel;
49 47
import javax.swing.JOptionPane;
......
51 49
import javax.swing.JScrollPane;
52 50
import javax.swing.JTextField;
53 51

  
52
import org.gvsig.andami.IconThemeHelper;
54 53
import org.gvsig.andami.PluginServices;
55 54
import org.gvsig.andami.messages.NotificationManager;
56 55
import org.gvsig.andami.ui.mdiManager.IWindow;
......
75 74
    private JLabel pageCounter3 =
76 75
        new JLabel(PluginServices.getText(this, "de"));
77 76

  
77
    public static void initializeIcons() {
78
    	IconThemeHelper.registerIcon("toolbar-go", "go-next", PdfHyperlinkPanel.class);
79
    	IconThemeHelper.registerIcon("toolbar-go", "go-previous", PdfHyperlinkPanel.class);
80
    	IconThemeHelper.registerIcon("toolbar-go", "go-next-fast", PdfHyperlinkPanel.class);
81
    	IconThemeHelper.registerIcon("toolbar-go", "go-previous-fast", PdfHyperlinkPanel.class);
82
    	IconThemeHelper.registerIcon("toolbar-go", "go-first", PdfHyperlinkPanel.class);
83
    	IconThemeHelper.registerIcon("toolbar-go", "go-last", PdfHyperlinkPanel.class);
84
    	IconThemeHelper.registerIcon("action", "document-print", PdfHyperlinkPanel.class);
85
    }
86

  
78 87
    public PdfHyperlinkPanel(URI doc) {
79 88
        super(doc);
80 89
        initialize();
......
176 185
        /** back to page 1 */
177 186
        JButton start = new JButton();
178 187
        start.setBorderPainted(false);
179
        URL startImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/start.gif");
180
        start.setIcon(new ImageIcon(startImage));
188
        start.setIcon( IconThemeHelper.getImageIcon("go-first"));      
181 189
        start.setToolTipText(PluginServices.getText(this, "primera_pagina"));
182 190
        // currentBar1.add(start);
183 191
        list[0] = start;
......
204 212
        /** back 10 icon */
205 213
        JButton fback = new JButton();
206 214
        fback.setBorderPainted(false);
207
        URL fbackImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/fback.gif");
208
        fback.setIcon(new ImageIcon(fbackImage));
215
        fback.setIcon( IconThemeHelper.getImageIcon("go-previous-fast"));
209 216
        fback.setToolTipText(PluginServices.getText(this, "diez_paginas_atras"));
210 217
        // currentBar1.add(fback);
211 218
        list[1] = fback;
......
232 239
        /** back icon */
233 240
        JButton back = new JButton();
234 241
        back.setBorderPainted(false);
235
        URL backImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/back.gif");
236
        back.setIcon(new ImageIcon(backImage));
242
        back.setIcon( IconThemeHelper.getImageIcon("go-previous"));      
243

  
237 244
        back.setToolTipText(PluginServices.getText(this, "pagina_atras"));
238 245
        // currentBar1.add(back);
239 246
        list[2] = back;
......
309 316
        /** forward icon */
310 317
        JButton forward = new JButton();
311 318
        forward.setBorderPainted(false);
312
        URL fowardImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/forward.gif");
313
        forward.setIcon(new ImageIcon(fowardImage));
319
        forward.setIcon( IconThemeHelper.getImageIcon("go-next"));      
314 320
        forward.setToolTipText(PluginServices.getText(this, "pagina_delante"));
315 321
        // currentBar1.add(forward);
316 322
        list[8] = forward;
......
337 343
        /** fast forward icon */
338 344
        JButton fforward = new JButton();
339 345
        fforward.setBorderPainted(false);
340
        URL ffowardImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/fforward.gif");
341
        fforward.setIcon(new ImageIcon(ffowardImage));
346
        fforward.setIcon( IconThemeHelper.getImageIcon("go-next-fast"));      
342 347
        fforward.setToolTipText(PluginServices.getText(this,
343 348
            "10_paginas_delante"));
344 349
        // currentBar1.add(fforward);
......
366 371
        /** goto last page */
367 372
        JButton end = new JButton();
368 373
        end.setBorderPainted(false);
369
        URL endImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/end.gif");
370
        end.setIcon(new ImageIcon(endImage));
374
        end.setIcon( IconThemeHelper.getImageIcon("go-last"));      
371 375
        end.setToolTipText(PluginServices.getText(this, "ultima_pagina"));
372 376
        // currentBar1.add(end);
373 377
        list[10] = end;
......
394 398
        /** Print */
395 399
        JButton print = new JButton();
396 400
        print.setBorderPainted(false);
397
        URL printImage = PluginServices.getPluginServices(this).getClassLoader().getResource("images/print.gif");
398
        print.setIcon(new ImageIcon(printImage));
401
        print.setIcon( IconThemeHelper.getImageIcon("document-print"));      
399 402
        print.setToolTipText(PluginServices.getText(this, "imprimir"));
400 403
        // currentBar1.add(end);
401 404
        list[11] = print;
branches/v2_0_0_prep/extensions/org.gvsig.hyperlink.app/org.gvsig.hyperlink.app.extension/src/main/java/org/gvsig/hyperlink/app/extension/HyperlinkExtension.java
26 26
import org.slf4j.Logger;
27 27
import org.slf4j.LoggerFactory;
28 28

  
29
import org.gvsig.andami.IconThemeHelper;
29 30
import org.gvsig.andami.PluginServices;
30 31
import org.gvsig.andami.plugins.Extension;
31 32
import org.gvsig.andami.ui.mdiManager.IWindow;
......
270 271
    }
271 272

  
272 273
    public void initialize() {
273
        // Do nothing
274
        
274
    	IconThemeHelper.registerIcon("action", "view-hyperlink", this);
275 275
    }
276 276

  
277 277
}
branches/v2_0_0_prep/extensions/org.gvsig.hyperlink.app/org.gvsig.hyperlink.app.extension/src/main/java/org/gvsig/hyperlink/app/extension/LinkListener.java
28 28
import java.awt.Toolkit;
29 29
import java.awt.geom.Point2D;
30 30
import java.net.URI;
31
import java.net.URL;
32 31

  
33
import javax.swing.ImageIcon;
34

  
32
import org.gvsig.andami.IconThemeHelper;
35 33
import org.gvsig.andami.PluginServices;
36 34
import org.gvsig.app.project.documents.view.toolListeners.InfoListener;
37 35
import org.gvsig.fmap.mapcontext.layers.FLayer;
......
68 66
    private Cursor cur = null;
69 67
    private MapControl mapCtrl;
70 68
    private ManagerRegistry registry;
71
    private Image imageCursor = null;
69
//    private Image imageCursor = null;
72 70
    public static final int TYPELINKIMAGE = 0;
73 71
    public static final int TYPELINKTEXT = 1;
74 72
    public ExtensionPoint formatManagers;
......
89 87
    }
90 88

  
91 89
    private void initialize() {
92
        URL url =
93
            PluginServices.getPluginServices(this)
94
                .getClassLoader()
95
                .getResource("images/LinkCursor.gif");
96
        if (url != null) {
97
            ImageIcon img = new ImageIcon(url);
98
            imageCursor = img.getImage();
99
            cur =
100
                Toolkit.getDefaultToolkit().createCustomCursor(imageCursor,
90
        cur = Toolkit.getDefaultToolkit().createCustomCursor(this.getImageCursor(),
101 91
                    new Point(16, 16),
102 92
                    "Hyperlink");
103
        } else {
104
            PluginServices.getLogger()
105
                .error("Icon not found: images/LinkCursor.gif");
106
        }
107 93
    }
108 94

  
109 95
    /**
......
219 205
    }
220 206

  
221 207
    public Image getImageCursor() {
222
        return imageCursor;
208
    	return IconThemeHelper.getImage("cursor-hyperlink");
223 209
    }
224 210
}
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_el.properties
1
#Translations for language [el]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=
9
Both=
10
Buffer_cap=
11
Buffer_information=
12
Buffer_width=
13
bufferWidth_TOOLTIP_HTML_explanation=
14
configuration=
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=
17
Creating_temp_file=
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=
19
Error=
20
Error_fallo_geoproceso=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b3\u03b5\u03c9\u03b4\u03b9\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2
21
Error_preparar_escritura_resultados=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03bd\u03ad\u03bf\u03c5 \u03b5\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf\u03c5
22
extSelectionTools=
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=
25
Failed_creating_the_temporal_layer=
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=
30
Failed_selecting_geometries_in_layer=
31
Failed_selecting_layer=
32
Failed_the_process=
33
Information=
34
Inside=
35
Invalid_width=
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=
39
Layer_with_influence_areas_reprojected=
40
Layer_with_unsupported_geometries_type=
41
Line=
42
lineSideLabel_TOOLTIP_HTML_explanation=
43
Multi_layer_selection_applied_for_influence_area=
44
multiLayer_selection=
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=
46
MultiPoint=
47
multiPointSideLabel_TOOLTIP_HTML_explanation=
48
Ongoing_process_please_wait=
49
Options=
50
Outside=
51
Outside_and_inside=
52
Percent=
53
Point=
54
pointSideLabel_TOOLTIP_HTML_explanation=
55
Polygon=
56
polygonSideLabel_TOOLTIP_HTML_explanation=
57
Process_canceled=
58
Process_cancelled=
59
Process_finished=
60
Process_finished_wont_be_cancelled=
61
Removed_layer_with_influence_areas_to_TOC=
62
Round=
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=
64
seleccion=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae
65
select_all=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03cc\u03bb\u03c9\u03bd
66
select_all_info=
67
select_by_buffer=
68
select_by_buffer_info=
69
select_by_circle=
70
select_by_circle_info=
71
select_by_polyline=
72
select_by_polyline_info=
73
Selection_by_buffer_process=
74
Selection_process_finished_succesfully=
75
Selection_restored=
76
Side=
77
sideLabel_TOOLTIP_HTML_explanation=
78
Starting_selection_of_layer=
79
Starting_selection_process=
80
Summary_of_the_process_of_selecting_by_buffer=
81
There_are_no_geometries_selected=
82
Tool_unavaliable_with_view_in_geographic_projection=
83
Tools_Select=
84
Undefined_layer=
85
Unit=
86
Vista=\u038c\u03c8\u03b7
87
Warning=
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/about.htm
1
<html>
2
  <head>
3
    <title>Herramientas Selecci&oacute;n. Proyecto Junta de Castilla y Le&oacute;n.</title>
4
    <meta content="">
5
<style type="text/css">
6
body {
7
	background-color: #7e7e7e;
8
	background-image: url(images/about.jpg);
9
	background-position: top center;
10
	background-repeat:no-repeat;
11
}
12

  
13
html, body, h1, h2, h3, h4, div, p, ul, li, input {
14
   font-family: Arial, Helvetica, sans-serif;
15
}
16

  
17
p, h1, h2, h3 {
18
  text-align: center;
19
}
20

  
21
</style>
22
  </head>
23
  <body>
24
  <br><br><br><br><br><br><br><br><br><br><br><br>
25
  <p>Version: 0.1
26
  <br>Build Number: #build.number#</p>
27
  <p><br><br><br><a href="http://www.iver.es/">http://www.iver.es/</a></p>
28
  </body>
29
</html>
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_en.properties
1
#Translations for language [en]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=Add buffer layers
4
add_influence_areas_layers=Add buffer zone layers
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Added layer with buffer zones to TOC.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Add buffer zones for each active layer<br> as new vector layers</html>
9
Both=Both
10
Buffer_cap=Buffer cap
11
Buffer_information=Buffer information
12
Buffer_width=Buffer width
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Buffer width</html>
14
configuration=Configuration
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Creating layer with areas of influence...
17
Creating_temp_file=Creating temporary file...
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Distance measurement unit</html>
19
Error=Error
20
Error_fallo_geoproceso=Error during geoprocess execution
21
Error_preparar_escritura_resultados=Error during preparation of result layer
22
extSelectionTools=Selection Tools Extension
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_geometry=Failed to create geometry..
25
failed_creating_the_temporal_layer=Failed to create temporary layer.
26
Failed_creating_the_temporal_layer=Failed to create temporary layer.
27
Failed_performing_the_operation=Failed performing the operation
28
Failed_reloading_the_layer=
29
Failed_selecting_geometries=Failed to select geometries.
30
Failed_selecting_geometries_by_circle_topology_exception_explanation=Failed to select geometries in layer.\nThe circular selection area intersects some faulty geometries. Please revise input data.
31
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Failed to select geometries in layer.\nThe polygonal selection area intersects some faulty geometries. Please revise input data.
32
Failed_selecting_geometries_in_layer=Failed to select geometries from layer.
33
Failed_selecting_layer=Failed to select layer.
34
Failed_the_process=The process failed
35
Information=Information
36
Inside=Inside
37
Invalid_width=Invalid width.
38
Layer_with_buffers_created=
39
Layer_with_buffers_reprojected=
40
Layer_with_influence_areas_created=Created layer with areas of influence.
41
Layer_with_influence_areas_reprojected=Created layer with reprojected areas of influence.
42
Layer_with_unsupported_geometries_type=Layer geometry type not supported.
43
Line=Line
44
lineSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "line"</html>
45
Multi_layer_selection_applied_for_influence_area=Multi-layer selection applied to buffer zones.
46
multiLayer_selection=Multi-layer selection
47
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>Select features from all layers</html>
48
MultiPoint=Multipoint
49
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "multipoint"</html>
50
Ongoing_process_please_wait=Ongoing process, please wait...
51
Operation_not_supported=Operation not supported
52
Options=Options
53
Outside=Outside
54
Outside_and_inside=Outside and inside
55
Percent=Percent
56
Point=Point
57
pointSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "point"</html>
58
Polygon=Polygon
59
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Geometries of type "polygon"</html>
60
Process_canceled=Process canceled
61
Process_cancelled=Process cancelled.
62
Process_finished=Process finished
63
Process_finished_wont_be_cancelled=Process has already finished. Will not be cancelled.
64
Removed_layer_with_influence_areas_to_TOC=Removed layer with buffer zones from TOC.
65
Round=Rounded
66
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Program exception (fatal error) encountered while calling Java Swing thread to refresh main user interface frame.
67
seleccion=Selection
68
select_all=Select all
69
select_all_info=
70
select_by_buffer=Select by buffer zone
71
select_by_buffer_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a buffer zone created<b> around previously selected features.</html>
72
select_by_circle=Select by circle
73
select_by_circle_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a user-defined circle.</html>
74
select_by_polyline=Select by polyline
75
select_by_polyline_info=<html>Select those features from the view's<br> active vector layers that intersect<br> with a user-defined polyline.</html>
76
Selection_by_buffer_process=Buffer zone selection tool
77
Selection_process_finished_succesfully=Selection process finished successfully.
78
Selection_restored=Selection restored.
79
Side=Side
80
sideLabel_TOOLTIP_HTML_explanation=<html>Choose the mode for buffer zone selection depending on layer type</html>
81
Starting_selection_of_layer=Initializing layer selection...
82
Starting_selection_process=Initializing selection process...
83
Summary_of_the_process_of_selecting_by_buffer=Summary of "selection by buffer zone" process
84
There_are_no_geometries_selected=There are no selected geometries.
85
Tool_unavaliable_with_view_in_geographic_projection=This tool is not available for views using geographic (lat/long) projection systems.
86
Tools_Select=Tools select
87
Undefined_layer=
88
Unit=Unit
89
Vista=View
90
Warning=Warning
91
Width=Width
92
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Incompatible projection. Failed to select geometries from layer.
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_gl.properties
1
#Translations for language [gl]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=Agregar capas de \u00e1reas de influencia.
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Agregada capa con \u00e1reas de influencia ao TOC.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Agrega as \u00e1reas de influencia de cada capa activa<br> como novas capas vectoriais.</html>
9
Both=Ambos
10
Buffer_cap=Cuberta do buffer
11
Buffer_information=Informaci\u00f3n do buffer
12
Buffer_width=Anchura do buffer
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Anchura do buffer.</html>
14
configuration=configuraci\u00f3n
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Creando capa con \u00e1reas de influencia.
17
Creating_temp_file=Creando arquivo temporal
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Unidade de distancia.</html>
19
Error=Erro
20
Error_fallo_geoproceso=Produc\u00eduse un erro durante a execuci\u00f3n do xeoproceso
21
Error_preparar_escritura_resultados=Produc\u00eduse un erro ao preparar a capa de resultados
22
extSelectionTools=Extensi\u00f3n Ferramentas de Selecci\u00f3n
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Erro ao crear a capa temporal
25
Failed_creating_the_temporal_layer=Erro ao crear a capa temporal.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Erro ao seleccionar xeometr\u00edas.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Erro ao seleccionar xeometr\u00edas na capa.\nO \u00e1rea circular de selecci\u00f3n intersecta con algunha xeometr\u00eda mal definida, deber\u00eda revisalas.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Erro ao seleccionar xeometr\u00edas na capa.\nA polili\u00f1a intersecta con algunha xeometr\u00eda mal definida, deber\u00eda revisalas.
30
Failed_selecting_geometries_in_layer=Erro ao seleccionar xeometr\u00edas na capa
31
Failed_selecting_layer=Erro ao seleccionar a capa
32
Failed_the_process=Erro no proceso.
33
Information=Informaci\u00f3n
34
Inside=Interior
35
Invalid_width=Ancho non v\u00e1lido.
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Capa con \u00e1reas de influencia creada.
39
Layer_with_influence_areas_reprojected=Capa con \u00e1reas de influencia reproxectada.
40
Layer_with_unsupported_geometries_type=Capa con tipo de xeometr\u00edas non soportadas.
41
Line=Li\u00f1a
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00eda de tipo li\u00f1a.</html>
43
Multi_layer_selection_applied_for_influence_area=Selecci\u00f3n multicapa aplicada para \u00e1rea de influencia.
44
multiLayer_selection=Selecci\u00f3n multicapa.
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>A selecci\u00f3n de xeometr\u00edas afecta a todas as capas.</html>
46
MultiPoint=Multipunto
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00edas de tipo multi punto.</html>
48
Ongoing_process_please_wait=Proceso en marcha, por favor espere...
49
Options=Opci\u00f3ns
50
Outside=Exterior
51
Outside_and_inside=Exterior e interior
52
Percent=Porcentaxe
53
Point=Punto
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00edas de tipo punto.</html>
55
Polygon=Pol\u00edgono
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Xeometr\u00edas de tipo pol\u00edgono.</html>
57
Process_canceled=Proceso cancelado.
58
Process_cancelled=Proceso cancelado.
59
Process_finished=Proceso rematado.
60
Process_finished_wont_be_cancelled=O proceso rematou, non se cancelar\u00e1.
61
Removed_layer_with_influence_areas_to_TOC=Eliminada capa con \u00e1reas de influencia da TOC.
62
Round=Redondeado
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Excepci\u00f3n en tempo de execuci\u00f3n refrescando o compo\u00f1ente principal dende un f\u00edo Swing
64
seleccion=Selecci\u00f3n
65
select_all=Seleccionar todo
66
select_all_info=
67
select_by_buffer=Seleccionar por \u00e1rea de influencia
68
select_by_buffer_info=<html>Selecciona as xeometr\u00edas das capas<br>vectoriais activas na vista actual que<br>intersecten co buffer creado das<br>xeometr\u00edas seleccionadas antes.</html>
69
select_by_circle=Seleccionar por c\u00edrculo
70
select_by_circle_info=<html>Selecciona as xeometr\u00edas das capas<br> vectoriais activas na vista actual que<br> intersecta co c\u00edrculo seleccionado.</html>
71
select_by_polyline=Seleccionar por polili\u00f1a
72
select_by_polyline_info=<html>Selecciona as xeometr\u00edas das capas<br> vectoriais activas na vista actual que<br> intersectan coa polili\u00f1a seleccionada.</html>
73
Selection_by_buffer_process=Proceso de selecci\u00f3n por \u00e1rea de influencia
74
Selection_process_finished_succesfully=Proceso de selecci\u00f3n rematado de xeito satisfactorio.
75
Selection_restored=Selecci\u00f3n restaurada.
76
Side=Senso
77
sideLabel_TOOLTIP_HTML_explanation=<html>Indique o sentido que seleccionar\u00e1 o buffer segundo<br> o tipo de capa.</html>
78
Starting_selection_of_layer=A iniciar selecci\u00f3n de capa
79
Starting_selection_process=A iniciar proceso de selecci\u00f3n.
80
Summary_of_the_process_of_selecting_by_buffer=Resumo do proceso de selecci\u00f3n por buffer
81
There_are_no_geometries_selected=Non hai xeometr\u00edas seleccionadas.
82
Tool_unavaliable_with_view_in_geographic_projection=Ferramenta non dispo\u00f1ible en vistas con proxecci\u00f3ns xeogr\u00e1ficas.
83
Tools_Select=Selecci\u00f3n de ferramentas
84
Undefined_layer=
85
Unit=Unidade
86
Vista=Vista
87
Warning=Aviso
88
Width=Anchura
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=Non seleccionar\u00e1 xeometr\u00edas na capa porque ten proxecci\u00f3n incompatible.
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/jcyl.html
1
<html>
2
<body>
3

  
4
<img src="jcyl.png"><br>
5

  
6
<h2>Junta de Castilla y Le?n</h2>
7
<br>
8

  
9
<p>EN CONSTRUCCION</p>
10

  
11
</body>
12
</html>
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_cs.properties
1
#Translations for language [cs]
2
#Mon Sep 21 10:02:11 CEST 2009
3
add_buffer_layers=
4
add_influence_areas_layers=
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=
9
Both=
10
Buffer_cap=
11
Buffer_information=
12
Buffer_width=
13
bufferWidth_TOOLTIP_HTML_explanation=
14
configuration=
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=
17
Creating_temp_file=
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=
19
Error=
20
Error_fallo_geoproceso=Chyba b\u011bhem vykon\u00e1v\u00e1n\u00ed funkce
21
Error_preparar_escritura_resultados=Chyba b\u011bhem p\u0159\u00edpravy v\u00fdsledn\u00e9 vrstvy 
22
extSelectionTools=
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=
25
Failed_creating_the_temporal_layer=
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=
30
Failed_selecting_geometries_in_layer=
31
Failed_selecting_layer=
32
Failed_the_process=
33
Information=
34
Inside=
35
Invalid_width=
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=
39
Layer_with_influence_areas_reprojected=
40
Layer_with_unsupported_geometries_type=
41
Line=
42
lineSideLabel_TOOLTIP_HTML_explanation=
43
Multi_layer_selection_applied_for_influence_area=
44
multiLayer_selection=
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=
46
MultiPoint=
47
multiPointSideLabel_TOOLTIP_HTML_explanation=
48
Ongoing_process_please_wait=
49
Options=
50
Outside=
51
Outside_and_inside=
52
Percent=
53
Point=
54
pointSideLabel_TOOLTIP_HTML_explanation=
55
Polygon=
56
polygonSideLabel_TOOLTIP_HTML_explanation=
57
Process_canceled=
58
Process_cancelled=
59
Process_finished=
60
Process_finished_wont_be_cancelled=
61
Removed_layer_with_influence_areas_to_TOC=
62
Round=
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=
64
seleccion=V\u00fdb\u011br
65
select_all=Vyber v\u0161e
66
select_all_info=
67
select_by_buffer=
68
select_by_buffer_info=
69
select_by_circle=
70
select_by_circle_info=
71
select_by_polyline=
72
select_by_polyline_info=
73
Selection_by_buffer_process=
74
Selection_process_finished_succesfully=
75
Selection_restored=
76
Side=
77
sideLabel_TOOLTIP_HTML_explanation=
78
Starting_selection_of_layer=
79
Starting_selection_process=
80
Summary_of_the_process_of_selecting_by_buffer=
81
There_are_no_geometries_selected=
82
Tool_unavaliable_with_view_in_geographic_projection=
83
Tools_Select=
84
Undefined_layer=
85
Unit=
86
Vista=Pohled
87
Warning=
88
Width=
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_pt_BR.properties
1
#Translations for language [pt_BR]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=Adicionar buffer no plano de informa\u00e7\u00e3o
4
add_influence_areas_layers=Adicionar plano de informa\u00e7\u00e3o da \u00e1rea de influ\u00eancia
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Adicionado plano de informa\u00e7\u00e3o com \u00e1reas de influ\u00eancia TOC
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Adicione as \u00e1reas de influ\u00eancia de cada plano de informa\u00e7\u00e3o ativo<br>como novo plano de informa\u00e7\u00e3o vetorial.<html>
9
Both=Ambos
10
Buffer_cap=Sobrescrever \u00e1rea de influ\u00eancia
11
Buffer_information=Informa\u00e7\u00f5es da \u00e1rea de influ\u00eancia
12
Buffer_width=Largura da \u00e1rea de influ\u00eancia
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Largura da \u00e1rea de influ\u00eancia.</html>
14
configuration=configura\u00e7\u00e3o
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Criando plano de informa\u00e7\u00e3o com \u00e1reas de influ\u00eancia.
17
Creating_temp_file=Criando arquivo tempor\u00e1rio
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html> Unidade de dist\u00e2ncia. </html>
19
Error=Erro
20
Error_fallo_geoproceso=Falha ao executar o geoprocesso.
21
Error_preparar_escritura_resultados=Erro ao gerar o arquivo de resultados.
22
extSelectionTools=Extens\u00e3o Ferramentas de Sele\u00e7\u00e3o
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Falha criando plano de informa\u00e7\u00e3o temporaria.
25
Failed_creating_the_temporal_layer=Falha criando plano de informa\u00e7\u00e3o temporario.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Falha selecionando geometrias.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Falha selecionando geometrias do plano de informa\u00e7\u00e3o.\nA \u00e1rea circular de sele\u00e7\u00e3o intersecta com alguma geometria mal definida, revise novamente.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Falha selecionando geometria do plano de informa\u00e7\u00e3o.\nA polilinha intersecta com alguma geometria mal definida, revise novamente.
30
Failed_selecting_geometries_in_layer=Falha selecionando geometria no plano de informa\u00e7\u00e3o.
31
Failed_selecting_layer=Falha selecionando plano de informa\u00e7\u00e3o.
32
Failed_the_process=Falha no processo.
33
Information=Informa\u00e7\u00e3o
34
Inside=Interior
35
Invalid_width=Largura inv\u00e1lida
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=plano de Informa\u00e7\u00e3o com \u00e1rea de influ\u00eancia criada.
39
Layer_with_influence_areas_reprojected=Plano de Informa\u00e7\u00e3o com \u00e1rea de influ\u00eancia reprojetada.
40
Layer_with_unsupported_geometries_type=Plano de Informa\u00e7\u00e3o com tipo de geometrias n\u00e3o suportadas.
41
Line=Linha
42
lineSideLabel_TOOLTIP_HTML_explanation=<html> Geometria de tipo de linha. </html>
43
Multi_layer_selection_applied_for_influence_area=Sele\u00e7\u00e3o multi-plano de informa\u00e7\u00e3o aplicado para \u00e1rea de influ\u00eancia.
44
multiLayer_selection=Sele\u00e7\u00e3o multi-plano de informa\u00e7\u00e3o
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>A sele\u00e7\u00e3o da geometria afeta todos os planos de informa\u00e7\u00e3o.</html>
46
MultiPoint=Multiponto
47
multiPointSideLabel_TOOLTIP_HTML_explanation=<html>Geometr\u00eda do tipo multi-ponto.</html>
48
Ongoing_process_please_wait=Processo em andamento, aguarde...
49
Options=Op\u00e7\u00f5es
50
Outside=Exterior
51
Outside_and_inside=Exterior e interior
52
Percent=Porcentagem
53
Point=Ponto
54
pointSideLabel_TOOLTIP_HTML_explanation=<html>Geometr\u00eda do tipo pontual.</html>
55
Polygon=Pol\u00edgono
56
polygonSideLabel_TOOLTIP_HTML_explanation=<html>Geometrias do tipo pol\u00edgono.</html>
57
Process_canceled=Processo cancelado.
58
Process_cancelled=Processo cancelado.
59
Process_finished=Processo finalizado.
60
Process_finished_wont_be_cancelled=O processo finalizou, n\u00e3o ser\u00e1 cancelado.
61
Removed_layer_with_influence_areas_to_TOC=Apagado plano de informa\u00e7\u00e3o com \u00e1rea de influ\u00eancia do TOC.
62
Round=Arredondado
63
Runtime_exception_refreshing_the_main_frame_by_a_Swing_thread=Exce\u00e7\u00e3o em tempo de execu\u00e7\u00e3o a partir do arrefecimento prim\u00e1rio Swing
64
seleccion=Sele\u00e7\u00e3o
65
select_all=Selecionar tudo
66
select_all_info=
67
select_by_buffer=Selecionar por \u00e1rea de influ\u00eancia
68
select_by_buffer_info=<html>Selecionar as geometr\u00edas do plano de informa\u00e7\u00e3o<br> vetoriais ativas no bloco atual que<br> intersectem com a \u00e1rea de influ\u00eancia das<br> geometr\u00edas anteriores selecionadas.</html>
69
select_by_circle=Selecionar por c\u00edrculo
70
select_by_circle_info=<html>Selecionar as geometr\u00edas dos planos de informa\u00e7\u00e3o<br> vetores ativos no bloco atual que<br> intersectam com o circulo selecionado. </html>
71
select_by_polyline=Selecioanr por polilinha
72
select_by_polyline_info=<html>Selecioanr as geometr\u00edas dos planos de informa\u00e7\u00e3o<br> vetoriais ativos no bloco atual que<br> intersectam com as polil\u00ednhas selecionadas. </html>
73
Selection_by_buffer_process=Processo de sele\u00e7\u00e3o por \u00e1rea de influ\u00eancia
74
Selection_process_finished_succesfully=Processo de sele\u00e7\u00e3o finalizado com sucesso.
75
Selection_restored=Sele\u00e7\u00e3o restaurada.
76
Side=Sentido
77
sideLabel_TOOLTIP_HTML_explanation=<html> Indique o sentido que selecionar\u00e1 a \u00e1rea de influ\u00eancia segundo<br> o tipo de plano de informa\u00e7\u00e3o.</html>
78
Starting_selection_of_layer=Iniciando se\u00e7\u00e3o do bloco
79
Starting_selection_process=Iniciando processo de sele\u00e7\u00e3o.
80
Summary_of_the_process_of_selecting_by_buffer=Resumo do processo de sele\u00e7\u00e3o por \u00e1rea de influ\u00eancia.
81
There_are_no_geometries_selected=N\u00e3o existem geometrias selecionadas...
82
Tool_unavaliable_with_view_in_geographic_projection=Ferramenta n\u00e3o dispon\u00edvel no bloco com proje\u00e7\u00f5es geogr\u00e1ficas.
83
Tools_Select=Sele\u00e7\u00e3o de ferramentas
84
Undefined_layer=
85
Unit=Unidade
86
Vista=Bloco
87
Warning=Aviso
88
Width=Largura
89
Wont_select_geometries_on_the_layer_because_has_incompatible_projection=N\u00e3o ser\u00e1 selecionada a geometria do plano de informa\u00e7\u00e3o porque tem proje\u00e7\u00e3o incompat\u00edvel.
branches/v2_0_0_prep/extensions/org.gvsig.selectiontools.app/org.gvsig.selectiontools.app.extension/src/main/resources/text_fr.properties
1
#Translations for language [fr]
2
#Mon Sep 21 10:02:12 CEST 2009
3
add_buffer_layers=Ajouter les couches zones tampon
4
add_influence_areas_layers=Ajouter couches zones tampon
5
addBufferLayers_checkbox_TOOLTIP_HTML_explanation=
6
Added_buffer_areas_to_TOC=
7
Added_layer_with_influence_areas_to_TOC=Ajouter couche zones tampon dans la TDM.
8
addInfluenceAreasLayers_checkbox_TOOLTIP_HTML_explanation=<html>Ajoute les zones tampon de chaque couche active<br> comme nouvelles couches vectorielles</html>
9
Both=Les deux
10
Buffer_cap=Couverture du tampon
11
Buffer_information=Information du tampon
12
Buffer_width=Largeur du tampon
13
bufferWidth_TOOLTIP_HTML_explanation=<html>Largeur du tampon</html>
14
configuration=configuration
15
Creating_layer_with_buffers=
16
Creating_layer_with_influence_areas=Cr\u00e9ation de couche avec zones d'influence
17
Creating_temp_file=Cr\u00e9ation d'un fichier temporaire
18
distanceUnitsLabel_TOOLTIP_HTML_explanation=<html>Unit\u00e9s de distance</html>
19
Error=Erreur
20
Error_fallo_geoproceso=Erreur lors du g\u00e9otraitement.
21
Error_preparar_escritura_resultados=Erreur lors de l'\u00e9criture des donn\u00e9es.
22
extSelectionTools=Outils de s\u00e9lection
23
Failed_canceling_the_current_task_of_creation_a_buffer_layer=
24
failed_creating_the_temporal_layer=Echec lors de la cr\u00e9ation de la couche temporaire.
25
Failed_creating_the_temporal_layer=Echec lors de la cr\u00e9ation de la couche temporaire.
26
Failed_reloading_the_layer=
27
Failed_selecting_geometries=Echec lors de la s\u00e9lection des entit\u00e9s.
28
Failed_selecting_geometries_by_circle_topology_exception_explanation=Echec lors de la s\u00e9lection des entit\u00e9s.\nLa s\u00e9lection par cercle intersecte avec des entit\u00e9s d\u00e9fectueuses. Veuillez v\u00e9rifier les donn\u00e9es d'entr\u00e9e.
29
Failed_selecting_geometries_by_polyline_topology_exception_explanation=Echec lors de la s\u00e9lection des entit\u00e9s.\nLa s\u00e9lection par polygone intersecte avec des entit\u00e9s d\u00e9fectueuses. Veuillez v\u00e9rifier les donn\u00e9es d'entr\u00e9e.
30
Failed_selecting_geometries_in_layer=Echec lors de la s\u00e9lection des entit\u00e9s de la couche.
31
Failed_selecting_layer=Echec lors de la s\u00e9lection de la couche.
32
Failed_the_process=Le traitement a \u00e9chou\u00e9.
33
Information=Information
34
Inside=Int\u00e9rieur
35
Invalid_width=Largeur non valide
36
Layer_with_buffers_created=
37
Layer_with_buffers_reprojected=
38
Layer_with_influence_areas_created=Couche avec zones d'influence cr\u00e9\u00e9e.
39
Layer_with_influence_areas_reprojected=Couche avec zones d'influence reprojet\u00e9es cr\u00e9\u00e9e.
40
Layer_with_unsupported_geometries_type=Couche d'entit\u00e9s de type non support\u00e9.
41
Line=Ligne
42
lineSideLabel_TOOLTIP_HTML_explanation=<html>G\u00e9om\u00e9tries de type lignes.</html>
43
Multi_layer_selection_applied_for_influence_area=S\u00e9lection multi-couches appliqu\u00e9e aux zones tampons.
44
multiLayer_selection=S\u00e9lection multi couches.
45
multiLayerSelection_checkbox_TOOLTIP_HTML_explanation=<html>La s\u00e9lection des entit\u00e9s affectera l'ensemble des couches.</html>
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff