diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/CConfigWizardPage.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/CConfigWizardPage.java index c0c54f984c3..1a6bff146c9 100644 --- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/CConfigWizardPage.java +++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/CConfigWizardPage.java @@ -28,11 +28,13 @@ import org.eclipse.swt.SWT; import org.eclipse.swt.events.SelectionAdapter; import org.eclipse.swt.events.SelectionEvent; import org.eclipse.swt.graphics.Image; +import org.eclipse.swt.layout.FillLayout; import org.eclipse.swt.layout.GridData; import org.eclipse.swt.layout.GridLayout; import org.eclipse.swt.widgets.Button; import org.eclipse.swt.widgets.Composite; import org.eclipse.swt.widgets.Control; +import org.eclipse.swt.widgets.Group; import org.eclipse.swt.widgets.Label; import org.eclipse.swt.widgets.Table; import org.eclipse.swt.widgets.TableItem; @@ -44,6 +46,7 @@ public class CConfigWizardPage extends MBSCustomPage { private static final Image IMG = ManagedBuilderUIImages.get(ManagedBuilderUIImages.IMG_BUILD_CONFIG); private static final String TITLE = IDEWorkbenchMessages.getString("CConfigWizardPage.0"); //$NON-NLS-1$ private static final String MESSAGE = IDEWorkbenchMessages.getString("CConfigWizardPage.1"); //$NON-NLS-1$ + private static final String COMMENT = IDEWorkbenchMessages.getString("CConfigWizardPage.12"); //$NON-NLS-1$ private static final String DELIMITER = "_with_"; //$NON-NLS-1$ private static final String EMPTY_STR = ""; //$NON-NLS-1$ @@ -161,6 +164,14 @@ public class CConfigWizardPage extends MBSCustomPage { public void widgetSelected(SelectionEvent e) { handler.setShowProperties(((Button)e.widget).getSelection()); }}); + + Group gr = new Group(parent, SWT.NONE); + gd = new GridData(GridData.FILL_HORIZONTAL); + gd.horizontalSpan = 3; + gr.setLayoutData(gd); + gr.setLayout(new FillLayout()); + Label lb = new Label(gr, SWT.NONE); + lb.setText(COMMENT); } /** diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/messages.properties b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/messages.properties index 82e04d34f5a..9e64383424a 100644 --- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/messages.properties +++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/wizards/messages.properties @@ -11,6 +11,7 @@ CConfigWizardPage.8=Deselect all CConfigWizardPage.9=Edit properties after project creation CConfigWizardPage.10=At least one configuration should be available. Project cannot be created. CConfigWizardPage.11=At least one configuration should be selected. Please check needed configurations. +CConfigWizardPage.12=Additional configurations can be added after project creation.\nUse "Manage configurations" buttons either on toolbar or on property pages. CMainWizardPage.0=Project types: CMainWizardPage.1=Show project types and toolchains only if they are supported on the platform CMainWizardPage.2=Edit properties after project creation