Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDejan Gloszic2006-02-16 01:34:12 +0000
committerDejan Gloszic2006-02-16 01:34:12 +0000
commitb3b9b06bce839aa67b335121e7407b0eac6ca076 (patch)
tree37e8ba713e2c74143aa9eab02487c29d09eb9337 /org.eclipse.ui.intro/schema
parent970f08ff4fd4fbb98c4213b99a97ca0dfe383718 (diff)
downloadeclipse.platform.ua-b3b9b06bce839aa67b335121e7407b0eac6ca076.tar.gz
eclipse.platform.ua-b3b9b06bce839aa67b335121e7407b0eac6ca076.tar.xz
eclipse.platform.ua-b3b9b06bce839aa67b335121e7407b0eac6ca076.zip
*** empty log message ***
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