Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b67410f65e296c37f9de748cf9d88720a74e3741 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<Composite xmlns="http://www.eclipse.org/xwt/presentation"
	xmlns:j="clr-namespace:java.lang"
	xmlns:gmf="clr-namespace:org.eclipse.papyrus.infra.gmfdiag.widgets.editors"
	xmlns:x="http://www.eclipse.org/xwt" xmlns:ppe="clr-namespace:org.eclipse.papyrus.views.properties.widgets"
	xmlns:ppel="clr-namespace:org.eclipse.papyrus.views.properties.widgets.layout"
	text="Line">
	<Composite.layout>
		<GridLayout></GridLayout>
	</Composite.layout>
	<Group text="Line">
		<Group.layout>
			<ppel:PropertiesLayout numColumns="1"></ppel:PropertiesLayout>
		</Group.layout>
		<ppe:IntegerEditor input="{Binding}"
			property="notation:LineStyle:lineWidth"></ppe:IntegerEditor>
		<gmf:XWTAwareColorPicker input="{Binding}"
			property="notation:LineStyle:lineColor"></gmf:XWTAwareColorPicker>
	</Group>
</Composite>

Back to the top