Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 358cc9713ab8be51b848fc249a5b8cdf3ecf6741 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0" encoding="UTF-8"?>
<Composite xmlns="http://www.eclipse.org/xwt/presentation"
	xmlns:css="clr-namespace:org.eclipse.papyrus.infra.gmfdiag.css.properties.widgets"
	xmlns:ppel="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets.layout"
	xmlns:j="clr-namespace:java.lang" xmlns:ppe="clr-namespace:org.eclipse.papyrus.infra.properties.ui.widgets"
	xmlns:x="http://www.eclipse.org/xwt">
	<Composite.layout>
		<ppel:PropertiesLayout numColumns="1"></ppel:PropertiesLayout>
	</Composite.layout>
	<ppe:StringEditor input="{Binding}" property="WorkspaceThemes:Theme:label"></ppe:StringEditor>
	<ppe:BrowseFilePropertyEditor input="{Binding}"
		buttonLabel="Browse..." property="WorkspaceThemes:Theme:icon">
		<ppe:BrowseFilePropertyEditor.filterNames>
			<x:Array Type="j:String">
             <j:String>All images</j:String>
             <j:String>PNG Icon</j:String>
             <j:String>GIF Icon</j:String>
             <j:String>JPEG Icon</j:String>
			 <j:String>All</j:String>
            </x:Array>
		</ppe:BrowseFilePropertyEditor.filterNames>
		<ppe:BrowseFilePropertyEditor.filterExtensions>
			<x:Array Type="j:String">
             <j:String>*.gif;*.png;*.jpeg;*.jpg;*.bmp</j:String>
             <j:String>*.png</j:String>
             <j:String>*.gif</j:String>
             <j:String>*.jpeg;*.jpg</j:String>
			 <j:String>*.*</j:String>
             </x:Array>
		</ppe:BrowseFilePropertyEditor.filterExtensions>
	</ppe:BrowseFilePropertyEditor>
	<ppe:MultiReference input="{Binding}"
		property="WorkspaceThemes:Theme:stylesheets"></ppe:MultiReference>
</Composite>

Back to the top