Revision 17503 trunk/extensions/extRasterTools-SE/src/org/gvsig/rastertools/geolocation/ui/GeoLocationOpeningRasterTransfPanel.java

View differences:

GeoLocationOpeningRasterTransfPanel.java
60 60
     * N?mero de decimales a mostrar
61 61
     */
62 62
    private int                        tailValue = 2;
63
    private GeolocationBaseClassPanel  parent = null;
64 63
	
65 64
	/**
66 65
	 * Constructor
67 66
	 */
68
	public GeoLocationOpeningRasterTransfPanel(GeolocationBaseClassPanel  parent, GeoLocationPanelListener list) {
69
		this.parent = parent;
67
	public GeoLocationOpeningRasterTransfPanel(GeoLocationPanelListener list) {
70 68
		this.listener = list;
71 69
		GridBagLayout gl = new GridBagLayout();
72 70
		this.setLayout(gl);
......
75 73
		ulx = new DataInputContainer();
76 74
		ulx.setLabelText(PluginServices.getText(this,"ux"));
77 75
		ulx.addValueChangedListener(listener);
76
		ulx.addKeyListener(listener);
78 77
		
79 78
		uly = new DataInputContainer();
80 79
		uly.setLabelText(PluginServices.getText(this,"uy"));
81 80
		uly.addValueChangedListener(listener);
81
		uly.addKeyListener(listener);
82 82
		
83 83
		psx = new DataInputContainer();
84 84
		psx.setLabelText(PluginServices.getText(this,"px"));
85 85
		psx.addValueChangedListener(listener);
86
		psx.addKeyListener(listener);
86 87
		
87 88
		psy = new DataInputContainer();
88 89
		psy.setLabelText(PluginServices.getText(this,"py"));
89 90
		psy.addValueChangedListener(listener);
91
		psy.addKeyListener(listener);
90 92
		
91 93
		rotx = new DataInputContainer();
92 94
		rotx.setLabelText(PluginServices.getText(this,"rx"));
93 95
		rotx.addValueChangedListener(listener);
96
		rotx.addKeyListener(listener);
94 97
		
95 98
		roty = new DataInputContainer();
96 99
		roty.setLabelText(PluginServices.getText(this,"ry"));
97 100
		roty.addValueChangedListener(listener);
101
		roty.addKeyListener(listener);
98 102
				
99 103
		coordsPanel = new JPanel();
100 104
		GridLayout l = new GridLayout(2, 1);

Also available in: Unified diff