summaryrefslogtreecommitdiffstats
path: root/src/main/java/xml/sampleForm.xml
diff options
context:
space:
mode:
authorkitfox2007-05-30 01:33:23 +0200
committerkitfox2007-05-30 01:33:23 +0200
commit091a1e0179cb264cc2cab6e3b11ea31045c8536d (patch)
treebd561534d16012c9d398acf32398968e14a19b85 /src/main/java/xml/sampleForm.xml
parentreverting to original source tree (diff)
downloadsvg-salamander-core-091a1e0179cb264cc2cab6e3b11ea31045c8536d.tar.gz
svg-salamander-core-091a1e0179cb264cc2cab6e3b11ea31045c8536d.tar.xz
svg-salamander-core-091a1e0179cb264cc2cab6e3b11ea31045c8536d.zip
Restoring SVG Salamander to it's original code base, and updating build scripts.
git-svn-id: https://svn.java.net/svn/svgsalamander~svn/trunk/svg-core@36 7dc7fa77-23fb-e6ad-8e2e-c86bd48ed22b
Diffstat (limited to 'src/main/java/xml/sampleForm.xml')
-rw-r--r--src/main/java/xml/sampleForm.xml41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/main/java/xml/sampleForm.xml b/src/main/java/xml/sampleForm.xml
new file mode 100644
index 0000000..3e8479a
--- /dev/null
+++ b/src/main/java/xml/sampleForm.xml
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+ Document : sampleForm.xml
+ Created on : October 21, 2004, 7:21 PM
+ Author : kitfox
+ Description:
+ Purpose of the document follows.
+-->
+
+<form x="0" y="0" width="640" height="480">
+ <radio-group name="stoplight"/>
+
+ <panel>
+ <border-layout>
+ <north>
+ <label text="My Window"/>
+ </north>
+ <center>
+ <panel>
+ <box-layout axis="y-axis">
+ <panel>
+ <flow-layout>
+ <label text="Press this button: "/>
+ <button text="Click Me!" onClick="alert('Hello there')"/>
+ </flow-layout>
+ </panel>
+ <panel>
+ <flow-layout>
+ <radio-button name="red" button-group="stoplight" text="red" selected="true"/>
+ <radio-button name="yellow" button-group="stoplight" text="yellow"/>
+ <radio-button name="green" button-group="stoplight" text="green"/>
+ </flow-layout>
+ </panel>
+ </box-layout>
+ </panel>
+ </center>
+ </border-layout>
+ </panel>
+
+</form>