Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre-Charles David2016-05-12 14:57:00 +0000
committerPierre-Charles David2016-05-17 13:14:51 +0000
commit2ff269b974e241447219c64cb82c14b490412cbb (patch)
tree3c0ffa6f9c0bd14ae0630e48ce2a1c19613de1f7
parent7d76402f7a0321e3b3587460df2208508be78d0d (diff)
downloadorg.eclipse.sirius-2ff269b974e241447219c64cb82c14b490412cbb.tar.gz
org.eclipse.sirius-2ff269b974e241447219c64cb82c14b490412cbb.tar.xz
org.eclipse.sirius-2ff269b974e241447219c64cb82c14b490412cbb.zip
[482528] Move label-specific style properties into their own category
Bug: 482528 Change-Id: I0cf7fea5c248f6998d5e9595e9ff589d17e1b747 Signed-off-by: Pierre-Charles David <pierre-charles.david@obeo.fr>
-rw-r--r--incubation/org.eclipse.sirius.editor.properties/plugin.xml18
1 files changed, 12 insertions, 6 deletions
diff --git a/incubation/org.eclipse.sirius.editor.properties/plugin.xml b/incubation/org.eclipse.sirius.editor.properties/plugin.xml
index cac5aea39d..e2aa85f3d7 100644
--- a/incubation/org.eclipse.sirius.editor.properties/plugin.xml
+++ b/incubation/org.eclipse.sirius.editor.properties/plugin.xml
@@ -199,7 +199,7 @@
id="properties.section.widgetStyle.LabelFontFormat"
filter="org.eclipse.sirius.properties.editor.properties.filters.properties.widgetstyle.WidgetStyleLabelFontFormatFilter"
afterSection="properties.section.widgetStyle.LabelForegroundColor"
- tab="viewpoint.tab.general">
+ tab="viewpoint.tab.label">
<input type="org.eclipse.sirius.properties.WidgetStyle"/>
</propertySection>
<propertySection
@@ -207,7 +207,7 @@
id="properties.section.widgetStyle.LabelForegroundColor"
filter="org.eclipse.sirius.properties.editor.properties.filters.properties.widgetstyle.WidgetStyleLabelForegroundColorFilter"
afterSection="properties.section.widgetStyle.LabelBackgroundColor"
- tab="viewpoint.tab.general">
+ tab="viewpoint.tab.label">
<input type="org.eclipse.sirius.properties.WidgetStyle"/>
</propertySection>
<propertySection
@@ -215,7 +215,7 @@
id="properties.section.widgetStyle.LabelBackgroundColor"
filter="org.eclipse.sirius.properties.editor.properties.filters.properties.widgetstyle.WidgetStyleLabelBackgroundColorFilter"
afterSection="properties.section.widgetStyle.LabelFontSize"
- tab="viewpoint.tab.general">
+ tab="viewpoint.tab.label">
<input type="org.eclipse.sirius.properties.WidgetStyle"/>
</propertySection>
<propertySection
@@ -223,14 +223,14 @@
id="properties.section.widgetStyle.LabelFontSize"
filter="org.eclipse.sirius.properties.editor.properties.filters.properties.widgetstyle.WidgetStyleLabelFontSizeFilter"
afterSection="properties.section.widgetStyle.LabelFontNameExpression"
- tab="viewpoint.tab.general">
+ tab="viewpoint.tab.label">
<input type="org.eclipse.sirius.properties.WidgetStyle"/>
</propertySection>
<propertySection
class="org.eclipse.sirius.properties.editor.properties.sections.properties.widgetstyle.WidgetStyleLabelFontNameExpressionPropertySection"
id="properties.section.widgetStyle.LabelFontNameExpression"
filter="org.eclipse.sirius.properties.editor.properties.filters.properties.widgetstyle.WidgetStyleLabelFontNameExpressionFilter"
- tab="viewpoint.tab.general">
+ tab="viewpoint.tab.label">
<input type="org.eclipse.sirius.properties.WidgetStyle"/>
</propertySection>
<propertySection
@@ -563,7 +563,13 @@
</extension>
<!-- Start of user code plugin.xml end specifics -->
-
+ <extension point="org.eclipse.ui.views.properties.tabbed.propertyTabs">
+ <propertyTabs contributorId="org.eclipse.sirius.editor.editorPlugin.SiriusEditorContributor">
+ <propertyTab category="default" id="viewpoint.tab.label" label="Label" afterTab="viewpoint.tab.general"/>
+ <propertyTab category="default" id="viewpoint.tab.widget" label="Widget" afterTab="viewpoint.tab.label"/>
+ </propertyTabs>
+ </extension>
+
<extension point="org.eclipse.sirius.editor.menuBuilder">
<builder class="org.eclipse.sirius.editor.properties.tools.internal.menu.WidgetsMenuBuilder" />
<builder class="org.eclipse.sirius.editor.properties.tools.internal.menu.StyleMenuBuilder" />

Back to the top