newCfgDialog

org.eclipse.cdt.ui.newCfgDialog

4.0

Contributions to this extension point define specific dialog for new configuration creation. This dialog will be called from "Manage configurations" screen instead of standard (independent of managed build system) dialog.
Contributed extension is usually provided with whole managed build system (MBS), so new dialog may be able to handle some MBS-specific features.
To disinguish numerous dialogs for separate MBSs, mbs_id element should be the same as corresponding MBS Id.

<!ELEMENT extension (dialog+)>

<!ATTLIST extension

point CDATA #REQUIRED

id    CDATA #IMPLIED

name  CDATA #IMPLIED>


<!ELEMENT dialog EMPTY>

<!ATTLIST dialog

class  CDATA #REQUIRED

title  CDATA #REQUIRED

mbs_id CDATA #REQUIRED>


"class" element should implement org.eclipse.cdt.ui.newui.INewCfgDialog interface

org.eclipse.cdt.managedbuilder.ui.newui.NewCfgDialog