diff options
Diffstat (limited to 'server/xml/example.xml')
-rw-r--r-- | server/xml/example.xml | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/server/xml/example.xml b/server/xml/example.xml index 4bd7c80..a8093cf 100644 --- a/server/xml/example.xml +++ b/server/xml/example.xml @@ -10,17 +10,27 @@ <textedit name="spl_note" regexp=".*" value="På begge sider alderssvarende forhold. Der er let katarakt, som dog ikke er operationskrævende."/> </frame> <frame name="linse_frame" caption="Linse:" layout="vbox"> - <lineedit name="linse" regexp="[0-9]{5}" value="90-D linse"/> + <lineedit name="linse" regexp="[0-9]{1,3}D" value="90D"/> <textedit name="linse_note" regexp=".*" value="Der findes centrale atrofiske forandringer."/> </frame> <frame name="swelling_frame" layout="hbox"> <label name="swelling" caption="Der findes central hævelse med:"/> <frame name="swelling_radios" layout="vbox"> - <radiobuttons name="radio" layout="vbox"> - <item caption="Randblødning" value="rand"/> - <item caption="Exsudater" value="exsudater"/> - <item caption="Blahblah" value="blabla"/> + <radiobuttons name="radio" value="exsudater" layout="vbox"> + <item caption="Radio Randblødning" value="rand"/> + <item caption="Radio Exsudater" value="exsudater"/> + <item caption="Radio Blahblah" value="blabla"/> </radiobuttons> + <combobox name="combo" value="exsudater" layout="vbox"> + <item caption="Combo Randblødning" value="rand"/> + <item caption="Combo Exsudater" value="exsudater"/> + <item caption="Combo Blahblah" value="blabla"/> + </combobox> + <listbox name="list" value="exsudater" layout="vbox"> + <item caption="List Randblødning" value="rand"/> + <item caption="List Exsudater" value="exsudater"/> + <item caption="List Blahblah" value="blabla"/> + </listbox> </frame> </frame> <frame name="buttons" layout="hbox"> |