*/
private void createInfoBtnControls() {
infoBtnComposite = new Composite(composite, SWT.NONE);
infoBtnComposite.setLayoutData("skip, growx"); //$NON-NLS-1$
infoBtnComposite.setLayout(new MigLayout("insets 0, nogrid, fillx")); //$NON-NLS-1$
infoOpenBtn = new Button(infoBtnComposite, SWT.PUSH);
infoOpenBtn.setText(Messages.DocumentDialog_openBtn);
infoOpenBtn.setLayoutData("sg btnGrp"); //$NON-NLS-1$
infoOpenBtn.addSelectionListener(new SelectionAdapter() {