Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.intro/schema')
-rw-r--r--org.eclipse.ui.intro/schema/configExtension.exsd37
1 files changed, 37 insertions, 0 deletions
diff --git a/org.eclipse.ui.intro/schema/configExtension.exsd b/org.eclipse.ui.intro/schema/configExtension.exsd
index 8b9aa0833..514df0c7a 100644
--- a/org.eclipse.ui.intro/schema/configExtension.exsd
+++ b/org.eclipse.ui.intro/schema/configExtension.exsd
@@ -16,6 +16,7 @@
<element ref="configExtension" minOccurs="1" maxOccurs="unbounded"/>
<element ref="standbyContentPart" minOccurs="0" maxOccurs="unbounded"/>
<element ref="action" minOccurs="0" maxOccurs="unbounded"/>
+ <element ref="theme" minOccurs="0" maxOccurs="unbounded"/>
</sequence>
<attribute name="point" type="string" use="required">
<annotation>
@@ -133,6 +134,42 @@ http://org.eclipse.ui.intro/showStandby?partId=&amp;lt;id of standbyContentPart&
</complexType>
</element>
+ <element name="theme">
+ <complexType>
+ <attribute name="id" type="string" use="required">
+ <annotation>
+ <documentation>
+ a unique identifier of the intro theme
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="name" type="string" use="required">
+ <annotation>
+ <documentation>
+ a translatable name of the intro theme that will be rendered in the UI
+ </documentation>
+ <appInfo>
+ <meta.attribute translatable="true"/>
+ </appInfo>
+ </annotation>
+ </attribute>
+ <attribute name="path" type="string" use="required">
+ <annotation>
+ <documentation>
+ a plug-in-relative path to the folder where the style sheets and associated graphics reside.
+ </documentation>
+ </annotation>
+ </attribute>
+ <attribute name="default" type="boolean" use="default" value="false">
+ <annotation>
+ <documentation>
+ an optional flag that indicates if this theme is the default. Default theme will be used if no theme is explicitly selected.
+ </documentation>
+ </annotation>
+ </attribute>
+ </complexType>
+ </element>
+
<annotation>
<appInfo>
<meta.section type="since"/>

Back to the top