diff options
| author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-04-18 19:35:48 +0200 | 
|---|---|---|
| committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-04-18 19:35:48 +0200 | 
| commit | 55e76bdaafa1e2a94fbd717335c1c7bd8c8fc156 (patch) | |
| tree | cb9e0b4a9dd9f069098fead2f1b0fd0dd7311a62 /GUI | |
| parent | 0986cf8f33df8926dd8da67f98ed18f696141313 (diff) | |
Basic tool implementation.
Diffstat (limited to 'GUI')
| -rw-r--r-- | GUI/layouts/raisewnd.layout | 55 | 
1 files changed, 55 insertions, 0 deletions
diff --git a/GUI/layouts/raisewnd.layout b/GUI/layouts/raisewnd.layout new file mode 100644 index 0000000..a2f9561 --- /dev/null +++ b/GUI/layouts/raisewnd.layout @@ -0,0 +1,55 @@ +<?xml version="1.0" ?> +<GUILayout> +	<Window Type="Vanilla/FrameWindow" Name="RaiseWindow"> +		<Property Name="UnifiedPosition" Value="{{.25, 0}, {.40, 0}}" /> +		<Property Name="UnifiedSize" Value="{{.5, 0}, {.2, 0}}" /> +		<Property Name="Text" Value="foobar" /> + +		<Window Type="Vanilla/StaticText" Name="radius_lbl"> +			<Property Name="UnifiedPosition" Value="{{0, 0}, {0, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.2, 0}, {.3, 0}}" /> +			<Property Name="Text" Value="Radius" /> +		</Window> +		<Window Type="Vanilla/HorizontalScrollbar" Name="radius_sb"> +			<Property Name="UnifiedPosition" Value="{{.2, 0}, {0, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.65, 0}, {.3, 0}}" /> +			<Property Name="DocumentSize" Value="50.0" /> +		</Window> +		<Window Type="Vanilla/StaticText" Name="radius_sb_lbl"> +			<Property Name="UnifiedPosition" Value="{{.85, 0}, {0, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.15, 0}, {.3, 0}}" /> +		</Window> + +		<Window Type="Vanilla/StaticText" Name="focus_lbl"> +			<Property Name="UnifiedPosition" Value="{{0, 0}, {.3, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.2, 0}, {.3, 0}}" /> +			<Property Name="Text" Value="Focus" /> +		</Window> +		<Window Type="Vanilla/HorizontalScrollbar" Name="focus_sb"> +			<Property Name="UnifiedPosition" Value="{{.2, 0}, {.3, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.65, 0}, {.3, 0}}" /> +			<Property Name="DocumentSize" Value="2.0" /> +			<Property Name="StepSize" Value=".1" /> +		</Window> +		<Window Type="Vanilla/StaticText" Name="focus_sb_lbl"> +			<Property Name="UnifiedPosition" Value="{{.85, 0}, {.3, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.15, 0}, {.3, 0}}" /> +		</Window> + +		<Window Type="Vanilla/StaticText" Name="strength_lbl"> +			<Property Name="UnifiedPosition" Value="{{0, 0}, {.6, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.2, 0}, {.3, 0}}" /> +			<Property Name="Text" Value="Strength" /> +		</Window> +		<Window Type="Vanilla/HorizontalScrollbar" Name="strength_sb"> +			<Property Name="UnifiedPosition" Value="{{.2, 0}, {.6, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.65, 0}, {.3, 0}}" /> +			<Property Name="DocumentSize" Value="1.0" /> +			<Property Name="StepSize" Value=".1" /> +		</Window> +		<Window Type="Vanilla/StaticText" Name="strength_sb_lbl"> +			<Property Name="UnifiedPosition" Value="{{.85, 0}, {.6, 0}}" /> +			<Property Name="UnifiedSize" Value="{{.15, 0}, {.3, 0}}" /> +		</Window> +	</Window> +</GUILayout>  | 
