<?xml version="1.0"?>
<!--
XForm Test Document
Copyright (c) 2001 Abbotsbury Software Ltd UK
Author: Bart Read
E-mail: bart@wdi.co.uk
Tel: 01305 871644

Sample representation of a panel in XML.
-->
<!DOCTYPE xform SYSTEM "dtd/formset.dtd">
<xform>
<panel package="asl.jascp.servicegui.nt"
       classname="NT_SubscriberDetailsJPanel">
	<layout>
		<boxlayout orientation="X_AXIS"/>
	</layout>
	<border>
		<titledborder>
			<bevelborder>
				<beveltype value="LOWERED"/>
			</bevelborder>
			<text>Subscriber Details</text>
			<justification value="LEFT"/>
			<position value="TOP"/>
		</titledborder>
	</border>
	<panel id="Main">
		<layout>
			<boxlayout orientation="Y_AXIS"/>
		</layout>
		<strut size="8"/>
		<panel id="Numbers">
			<layout>
				<boxlayout orientation="X_AXIS"/>
			</layout>
			<preferredsize>
				<dimension width="640" height="20"/>
			</preferredsize>
			<maximumsize>
				<dimension width="640" height="20"/>
			</maximumsize>
			<label id="SubscriberNumber">
				<text>Subscriber Number:</text>
			</label>
			<textfield property="SubscriberNumber"
			           chars="30">
				<border>
			 		<lineborder>
			  			<color value="blue"/>
			   			<thickness value="1"/>
			     		</lineborder>
			      	</border>
			       	<foreground>
			        	<color value="red"/>
				</foreground>
			</textfield>
			<strut size="32"/>
			<label id="AccessNodeID">
				<text>Access Node ID:</text>
			</label>
			<textfield property="AccessNodeID"
			           chars="6">
			</textfield>
			<strut size="32"/>
			<label id="UserPort">
				<text>User Port:</text>
			</label>
			<textfield property="UserPort"
			           chars="5">
			</textfield>
			<glue/>
		</panel>
		<strut size="16"/>
		<panel id="Name">
			<layout>
				<boxlayout orientation="X_AXIS"/>
			</layout>
			<preferredsize>
				<dimension width="640" height="20"/>
			</preferredsize>
			<maximumsize>
				<dimension width="640" height="20"/>
			</maximumsize>
			<label id="SubscriberName">
				<text>Subscriber Name:</text>
			</label>
			<combobox property="Title">
				<item>Mr</item>
				<item>Mrs</item>
				<item>Miss</item>
				<item>Ms</item>
				<item>Sir</item>
				<item>Dr.</item>
				<item>Prof.</item>
				<item>Cmdr</item>
				<item>Cpt</item>
				<item>Maj.</item>
				<item>Col.</item>
				<item>Gen.</item>
				<item>Hon.</item>
				<item>Rt. Hon.</item>
				<item>Rev.</item>
				<item>Very Rev.</item>
				<item>Don</item>
				<item>HRH</item>
			</combobox>
			<strut size="8"/>
			<textfield property="FirstName">
				<border>
			 		<lineborder>
			  			<color value="blue"/>
			   			<thickness value="1"/>
			     		</lineborder>
			      	</border>
			</textfield>
			<strut size="8"/>
			<textfield property="MiddleName">
			</textfield>
			<strut size="8"/>
			<textfield property="LastName">
				<border>
			 		<lineborder>
			  			<color value="blue"/>
			   			<thickness value="1"/>
			     		</lineborder>
			      	</border>
			</textfield>
			<glue/>
		</panel>
		<strut size="16"/>
		<panel id="SubscriptionDetails">
			<layout>
				<boxlayout orientation="X_AXIS"/>
			</layout>
			<preferredsize>
				<dimension width="640" height="20"/>
			</preferredsize>
			<maximumsize>
				<dimension width="640" height="20"/>
			</maximumsize>
			<label id="SubscriberType">
				<text>Subscriber Type:</text>
			</label>
			<combobox property="SubscriberType">
				<item>Standard</item>
				<item>Business</item>
				<item>VIP</item>
			</combobox>
			<strut size="32"/>
			<label id="ServiceManagementNumber">
				<text>Service Management Number:</text>
			</label>
			<textfield property="ServiceManagementNumber"
			           chars="30">
			</textfield>
			<glue/>
		</panel>
		<strut size="16"/>
		<panel id="BillingAddress">
			<layout>
				<boxlayout orientation="X_AXIS"/>
			</layout>
			<panel id="AddrLabel">
				<layout>
					<boxlayout orientation="Y_AXIS"/>
				</layout>
				<label id="BillingAddress">
					<text>Billing Address:</text>
				</label>
				<glue/>
			</panel>
			<strut size="8"/>
			<panel id="AddrMain">
				<layout>
					<boxlayout orientation="Y_AXIS"/>
				</layout>
				<preferredsize>
					<dimension width="200" height="64"/>
				</preferredsize>
				<maximumsize>
					<dimension width="200" height="64"/>
				</maximumsize>
				<textfield property="AddressLine1">
				</textfield>
				<textfield property="AddressLine2">
				</textfield>
				<textfield property="TownOrCity">
				</textfield>
			</panel>
			<strut size="32"/>
			<panel id="PostCode">
				<layout>
					<boxlayout orientation="Y_AXIS"/>
				</layout>
				<glue/>
				<panel id="PostCodeComponents">
					<layout>
						<boxlayout orientation="X_AXIS"/>
					</layout>
					<preferredsize>
						<dimension width="200" height="20"/>
					</preferredsize>
					<maximumsize>
						<dimension width="200" height="20"/>
					</maximumsize>
					<label id="PostCode">
					        <text>Post Code:</text>
					</label>
					<textfield property="PostCode">
						<border>
					 		<lineborder>
			  					<color value="blue"/>
			   					<thickness value="1"/>
					     		</lineborder>
					      	</border>
					</textfield>
					<glue/>
				</panel>
			</panel>
			<glue/>
		</panel>
		<strut size="8"/>
	</panel>
</panel>	
</xform>










