Update of /cvsroot/libufo/ufo-0.5/test
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv732/test
Modified Files:
gui.xul
Log Message:
Added groupbox and tabbox element.
Index: gui.xul
===================================================================
RCS file: /cvsroot/libufo/ufo-0.5/test/gui.xul,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** gui.xul 11 Oct 2005 20:23:14 -0000 1.4
--- gui.xul 24 Oct 2005 16:03:54 -0000 1.5
***************
*** 46,51 ****
<hbox align="center">
<radiogroup>
! <radio id="radio-red" label="Red" style="opacity: 0"/>
! <radio id="radio-green" label="Green" style="opacity: 0"/>
</radiogroup>
</hbox>
--- 46,51 ----
<hbox align="center">
<radiogroup>
! <radio id="radio-red" class="transparent" label="Red"/>
! <radio id="radio-green" class="transparent" label="Green"/>
</radiogroup>
</hbox>
***************
*** 58,62 ****
<spacer/>
! <hbox align="center">
<!-- well, a list box -->
<listbox id="listbox" rows="4">
--- 58,63 ----
<spacer/>
! <groupbox align="center">
! <caption label="group box"/>
<!-- well, a list box -->
<listbox id="listbox" rows="4">
***************
*** 83,90 ****
<progressmeter id="progress" value="50%"/>
! </hbox>
<!-- spacer which increases twice as fast as a normal spacer -->
<spacer flex="2"/>
<hbox>
--- 84,105 ----
<progressmeter id="progress" value="50%"/>
! </groupbox>
<!-- spacer which increases twice as fast as a normal spacer -->
<spacer flex="2"/>
+ <tabbox>
+ <tabs>
+ <tab label="Mail"/>
+ <tab label="News"/>
+ </tabs>
+ <tabpanels>
+ <tabpanel id="mailtab">
+ <checkbox label="Automatically check for mail"/>
+ </tabpanel>
+ <tabpanel id="newstab">
+ <button label="Clear News Buffer"/>
+ </tabpanel>
+ </tabpanels>
+ </tabbox>
<hbox>
|