use of org.eclipse.ui.forms.widgets.Section in project InformationSystem by ObeoNetwork.
the class InterDSMLinkPropertiesEditionPartForm method createPropertiesGroup.
/**
*/
protected Composite createPropertiesGroup(FormToolkit widgetFactory, final Composite parent) {
Section propertiesSection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED);
propertiesSection.setText(EnvironmentMessages.InterDSMLinkPropertiesEditionPart_PropertiesGroupLabel);
GridData propertiesSectionData = new GridData(GridData.FILL_HORIZONTAL);
propertiesSectionData.horizontalSpan = 3;
propertiesSection.setLayoutData(propertiesSectionData);
Composite propertiesGroup = widgetFactory.createComposite(propertiesSection);
GridLayout propertiesGroupLayout = new GridLayout();
propertiesGroupLayout.numColumns = 3;
propertiesGroup.setLayout(propertiesGroupLayout);
propertiesSection.setClient(propertiesGroup);
return propertiesGroup;
}
use of org.eclipse.ui.forms.widgets.Section in project InformationSystem by ObeoNetwork.
the class LiteralPropertiesEditionPartForm method createPropertiesGroup.
/**
*/
protected Composite createPropertiesGroup(FormToolkit widgetFactory, final Composite parent) {
Section propertiesSection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED);
propertiesSection.setText(EnvironmentMessages.LiteralPropertiesEditionPart_PropertiesGroupLabel);
GridData propertiesSectionData = new GridData(GridData.FILL_HORIZONTAL);
propertiesSectionData.horizontalSpan = 3;
propertiesSection.setLayoutData(propertiesSectionData);
Composite propertiesGroup = widgetFactory.createComposite(propertiesSection);
GridLayout propertiesGroupLayout = new GridLayout();
propertiesGroupLayout.numColumns = 3;
propertiesGroup.setLayout(propertiesGroupLayout);
propertiesSection.setClient(propertiesGroup);
return propertiesGroup;
}
use of org.eclipse.ui.forms.widgets.Section in project InformationSystem by ObeoNetwork.
the class AnnotationPropertiesEditionPartForm method createPropertiesGroup.
/**
*/
protected Composite createPropertiesGroup(FormToolkit widgetFactory, final Composite parent) {
Section propertiesSection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED);
propertiesSection.setText(EnvironmentMessages.AnnotationPropertiesEditionPart_PropertiesGroupLabel);
GridData propertiesSectionData = new GridData(GridData.FILL_HORIZONTAL);
propertiesSectionData.horizontalSpan = 3;
propertiesSection.setLayoutData(propertiesSectionData);
Composite propertiesGroup = widgetFactory.createComposite(propertiesSection);
GridLayout propertiesGroupLayout = new GridLayout();
propertiesGroupLayout.numColumns = 3;
propertiesGroup.setLayout(propertiesGroupLayout);
propertiesSection.setClient(propertiesGroup);
return propertiesGroup;
}
use of org.eclipse.ui.forms.widgets.Section in project InformationSystem by ObeoNetwork.
the class BindingElementPropertiesEditionPartForm method createPropertiesGroup.
/**
*/
protected Composite createPropertiesGroup(FormToolkit widgetFactory, final Composite parent) {
Section propertiesSection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED);
propertiesSection.setText(EnvironmentMessages.BindingElementPropertiesEditionPart_PropertiesGroupLabel);
GridData propertiesSectionData = new GridData(GridData.FILL_HORIZONTAL);
propertiesSectionData.horizontalSpan = 3;
propertiesSection.setLayoutData(propertiesSectionData);
Composite propertiesGroup = widgetFactory.createComposite(propertiesSection);
GridLayout propertiesGroupLayout = new GridLayout();
propertiesGroupLayout.numColumns = 3;
propertiesGroup.setLayout(propertiesGroupLayout);
propertiesSection.setClient(propertiesGroup);
return propertiesGroup;
}
use of org.eclipse.ui.forms.widgets.Section in project InformationSystem by ObeoNetwork.
the class CategoryPropertiesEditionPartForm method createCategoryGroup.
/**
*/
protected Composite createCategoryGroup(FormToolkit widgetFactory, final Composite parent) {
Section categorySection = widgetFactory.createSection(parent, Section.TITLE_BAR | Section.TWISTIE | Section.EXPANDED);
categorySection.setText(RequirementMessages.CategoryPropertiesEditionPart_CategoryGroupLabel);
GridData categorySectionData = new GridData(GridData.FILL_HORIZONTAL);
categorySectionData.horizontalSpan = 3;
categorySection.setLayoutData(categorySectionData);
Composite categoryGroup = widgetFactory.createComposite(categorySection);
GridLayout categoryGroupLayout = new GridLayout();
categoryGroupLayout.numColumns = 3;
categoryGroup.setLayout(categoryGroupLayout);
categorySection.setClient(categoryGroup);
return categoryGroup;
}
Aggregations