/[gnue]/gnue-appserver/samples/sample.gfd
ViewVC logotype

Diff of /gnue-appserver/samples/sample.gfd

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by reinhard, Thu Oct 16 22:55:01 2003 UTC revision 1.3 by reinhard, Fri Oct 17 11:08:14 2003 UTC
# Line 1  Line 1 
1  <?xml version="1.0" encoding="iso8859-1"?>  <?xml version="1.0" encoding="iso8859-1"?>
2    
3  <!--  GNUe-Designer (0.5.1.99)  <!--  GNUe-Designer (0.5.1.99)
4        Saved on: 2003-10-16 21:03:18  -->        Saved on: 2003-10-17 13:01:06  -->
5    
6  <form title="GNUe Application Server test">  <form title="GNUe Application Server test">
7    <datasource name="dtsPerson" connection="appserver" table="address_person"/>    <datasource name="dtsPerson" connection="appserver" table="address_person"/>
# Line 10  Line 10 
10    ]]></trigger>    ]]></trigger>
11    <logic>    <logic>
12      <block name="blkPerson" datasource="dtsperson">      <block name="blkPerson" datasource="dtsperson">
13        <field name="inpName" field="address_name" max_length="39"/>        <field name="inpName" field="address_name" max_length="35"/>
14        <field name="inpStreet" field="address_street" max_length="39"/>        <field name="inpStreet" field="address_street" max_length="35"/>
15        <field name="inpZip" field="address_zip" max_length="21"/>        <field name="inpZip" field="address_zip" max_length="17"/>
16        <field name="inpCity" field="address_city" max_length="39"/>        <field name="inpCity" field="address_city" max_length="35"/>
17        <field name="inpHuman" field="address_human" max_length="1"/>        <field name="inpHuman" field="address_human" max_length="1"/>
18        <field name="UnboundField1"/>        <field name="inpChildren" field="address_children" typecast="number"/>
19        <field name="inpHuman" field="address_human"/>        <field name="inpWeight" field="address_weight" typecast="number"/>
20      </block>      </block>
21    </logic>    </logic>
22    <layout xmlns:Char="GNUe:Layout:Char" Char:height="8" Char:width="35">    <layout xmlns:Char="GNUe:Layout:Char" Char:height="13" Char:width="40">
23      <page name="pgPerson">      <page name="pgPerson">
24        <label name="lblName" Char:height="1" Char:width="5" Char:x="1"        <label name="lblName" Char:height="1" Char:width="5" Char:x="1"
25               Char:y="1" text="Name:"/>               Char:y="1" text="Name:"/>
# Line 29  Line 29 
29               Char:y="3" text="Zip:"/>               Char:y="3" text="Zip:"/>
30        <label name="lblCity" Char:height="1" Char:width="5" Char:x="1"        <label name="lblCity" Char:height="1" Char:width="5" Char:x="1"
31               Char:y="4" text="City:"/>               Char:y="4" text="City:"/>
32          <label name="lblChildren" Char:height="1" Char:width="9" Char:x="1"
33                 Char:y="5" text="Children:"/>
34          <label name="lblWeight" Char:height="1" Char:width="12" Char:x="1"
35                 Char:y="6" text="Weight (kg):"/>
36        <label name="lblHuman" Char:height="1" Char:width="6" Char:x="1"        <label name="lblHuman" Char:height="1" Char:width="6" Char:x="1"
37               Char:y="5" text="Human:"/>               Char:y="10" text="Human:"/>
38        <entry name="Entry1" Char:height="1" Char:width="25" Char:x="9"        <entry name="entName" Char:height="1" Char:width="25" Char:x="14"
39               Char:y="1" block="blkPerson" field="inpName"/>               Char:y="1" block="blkPerson" field="inpName"/>
40        <entry name="Entry2" Char:height="1" Char:width="25" Char:x="9"        <entry name="entStreet" Char:height="1" Char:width="25" Char:x="14"
41               Char:y="2" block="blkPerson" field="inpStreet"/>               Char:y="2" block="blkPerson" field="inpStreet"/>
42        <entry name="Entry3" Char:height="1" Char:width="25" Char:x="9"        <entry name="entZip" Char:height="1" Char:width="25" Char:x="14"
43               Char:y="3" block="blkPerson" field="inpZip"/>               Char:y="3" block="blkPerson" field="inpZip"/>
44        <entry name="Entry4" Char:height="1" Char:width="25" Char:x="9"        <entry name="entCity" Char:height="1" Char:width="25" Char:x="14"
45               Char:y="4" block="blkPerson" field="inpCity"/>               Char:y="4" block="blkPerson" field="inpCity"/>
46        <button name="Call" Char:height="1" Char:width="25" Char:x="9"        <entry name="entChildren" Char:height="1" Char:width="10" Char:x="14"
47                Char:y="7" label="Show record">               Char:y="5" block="blkPerson" field="inpChildren"/>
48          <entry name="entHuman" Char:height="1" Char:width="1" Char:x="14"
49                 Char:y="10" block="blkPerson" field="inpHuman" style="checkbox"/>
50          <button name="Call" Char:height="1" Char:width="25" Char:x="14"
51                  Char:y="12" label="Show record">
52          <trigger src="showRecord" name="Trigger1" type="ON-ACTION"/>          <trigger src="showRecord" name="Trigger1" type="ON-ACTION"/>
53        </button>        </button>
54        <entry name="Entry5" Char:height="1" Char:width="1" Char:x="9"        <entry name="entWeight" Char:height="1" Char:width="10" Char:x="14"
55               Char:y="5" block="blkPerson" field="inpHuman" style="checkbox"/>               Char:y="6" block="blkPerson" field="inpWeight"/>
56      </page>      </page>
57    </layout>    </layout>
58  </form>  </form>

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26