Revision 6827

View differences:

trunk/libraries/libJCRS/src/org/gvsig/crs/ui/TransformationSelectionDialogPanel.java
29 29
	public JPanel getContentPanel() {
30 30
	    if (contentPane == null) {
31 31
        	contentPane = new TransformationSelectionPanel();
32
        	contentPane.setLayout(new GridLayout(0,4));
32
        	contentPane.setLayout(new GridLayout(3,3));
33 33
        	contentPane.setLayout(new FlowLayout( FlowLayout.LEFT,10,10));
34
	    	contentPane.setPreferredSize(new Dimension(650,650));        	
34
	    	contentPane.setPreferredSize(new Dimension(680,650));        	
35 35
       }
36 36
      return contentPane;
37 37
    }
trunk/libraries/libJCRS/src/org/gvsig/crs/ui/TransformationSelectionPanel.java
76 76
	public int selectedRowTable2 = -1;
77 77
	private boolean invert = false;
78 78
	
79
	private int codeCRS = -1;	
80

  
79
	private int codeCRS = -1;
80
	
81
	CRSSelectionDialogPanel aux;
82
	
81 83
	private JTable jTable1 = null;
82 84
	private JScrollPane jScrollPane1 = null;
83 85
	
......
88 90
		super();
89 91
		pcpt = new ProjChooserPanelTransformation();
90 92
		pcp = new ProjChooserPanel();
93
		aux = new CRSSelectionDialogPanel();
91 94
		initialize();
92 95
	}
93
	private void initialize() {        
96
	private void initialize() { 
97
		this.add(aux.getContentPanel(),null);
94 98
		getJPanel();		
95 99
	}
96 100
	 
97 101
	private void getJPanel() {
98
		this.add(getSearchButton(), null);
102
		/*this.add(getSearchButton(), null);
99 103
		this.add(getSearchTextField(), null);
100 104
		this.add(getGroupRadioButton(), null);
101
		this.add(getJScrollPane(), null);
105
		this.add(getJScrollPane(), null);*/	
102 106
		this.add(getJScrollPane1(), null);
103 107
		this.add(getJToggleButton(), null);		
104 108
	}
......
753 757
	private JScrollPane getJScrollPane1() {
754 758
		if (jScrollPane1 == null) {
755 759
			jScrollPane1 = new JScrollPane();
756
			jScrollPane1.setPreferredSize(new Dimension(600,250));
760
			jScrollPane1.setPreferredSize(new Dimension(600,200));
757 761
			jScrollPane1.setBorder(
758 762
				    BorderFactory.createCompoundBorder(
759 763
					BorderFactory.createCompoundBorder(
trunk/libraries/libJCRS/src/org/gvsig/crs/ui/CRSSelectionDialogPanel.java
20 20
	}
21 21
	
22 22
	public void inicializate(){
23
		this.setSize(800,600);        
23
		this.setSize(650,400);        
24 24
	}
25 25
			
26 26
    public CRSSelectionPanel getProjPanel() {

Also available in: Unified diff