<?xml version="1.0" encoding="UTF-8"?>

<a_root_element>

<!-- subpanel for bounderies -->
<panel name="Bounderies" bordertype="titled" bordertext="Grenzen">
	<layout type="gbc">
		<column anchor="EAST" />
		<column anchor="WEST" /> <!-- fill="HORIZONTAL" -->
	</layout>
	<late name="BoundLeft" latext="Linke Grenze :" size="20" />
	<late name="BoundTop" latext="Obere Grenze :" size="20" />
	<late name="BoundRight" latext="Rechte Grenze :" size="20" />
	<late name="BoundBottom" latext="Untere Grenze :" size="20" />
	<late name="Iteration" latext="Iterationen :" size="10" />
</panel>

<!-- subpanel for resolution -->
<panel name="Resolutions" bordertype="titled" bordertext="Aufloesung">
	<layout type="gbc">
		<column anchor="EAST" />
		<column anchor="WEST" fill="HORIZONTAL" />
	</layout>
	<laco name="ResPreDefined" latext="Presets :" action='
		String[] xyw = ((String)comboboxResPreDefined.getSelectedItem()).split ("x");
		textfieldWidth.setText (xyw[0]);
		textfieldHeight.setText (xyw[1]);
		'>
		<value text="640x480" />
		<value text="1024x768" />
	</laco>
	<late name="Width" latext="X :" size="10" text="640" />
	<late name="Height" latext="Y :" size="10" text="480" />
	<laco name="ColPreDefined" latext="Farben :">
		<value text="Yellow" />
		<value text="Rainbow" />
		<value text="Normal" />
		<value text="Space" />
	</laco>
</panel>

<!-- subpanel for functions -->
<panel name="Functions" bordertype="titled" bordertext="Funktionen">
	<button name="Ok" text="Rechnen" />
	<button name="Cancel" text="Beenden" action="System.exit (0);" />
</panel>

<!-- fake panel to set resolution and bounderies left and right -->
<panel name="tempBR">
	<layout>
		<column anchor="WEST" fill="BOTH" />
		<column anchor="EAST" fill="BOTH" />
	</layout>
	<subpanel name="Bounderies" />
	<subpanel name="Resolutions" />
</panel>
	
<!-- THE Master Panel -->
<panel name="Fractal">
	<layout>
		<column anchor="CENTER" fill="HORIZONTAL" />
	</layout>
	<subpanel name="tempBR" />
	<subpanel name="Functions" />
</panel>

</a_root_element>

