public void createControl( Composite parent ) {
Composite mainComposite = new Composite(parent, SWT.NONE);
mainComposite.setLayout(new GridLayout());
ILayer selectedLayer = ApplicationGIS.getActiveMap().getEditManager().getSelectedLayer();
geoResource = selectedLayer.getGeoResource();
/*
* layer selected
*/
Label selectedLayerLabel = new Label(mainComposite, SWT.NONE);
GridData selectedLayerLabelGd = new GridData(SWT.BEGINNING, SWT.CENTER, false, false);
selectedLayerLabelGd.horizontalSpan = 3;
selectedLayerLabel.setLayoutData(selectedLayerLabelGd);
selectedLayerLabel.setText(Messages.getString("KmlExportWizardPage.selectedLayerToExportLabel") + selectedLayer.getName()); //$NON-NLS-1$
Group inputGroup = new Group(mainComposite, SWT.None);
inputGroup.setText(Messages.getString("KmlExportWizardPage.outFileLabel")); //$NON-NLS-1$
inputGroup.setLayout(new GridLayout(2, false));
inputGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL | GridData.GRAB_HORIZONTAL));