window name=testW title="Test Widgets"
grid 1 2
	label text="Choose a Widget" font="bold 12" sticky=W pady=10
	radio name=wN value=0  sticky=W padx=10 text=CLEAR function=.testWidHelper action=clear
grid 5 5 sticky=W byrow=F
	radio name=wN value=11 sticky=W padx=10 text=button  function=.testWidHelper action=button
	radio name=wN value=12 sticky=W padx=10 text=check   function=.testWidHelper action=check
	radio name=wN value=13 sticky=W padx=10 text=data    function=.testWidHelper action=data
	radio name=wN value=14 sticky=W padx=10 text=droplist  function=.testWidHelper action=droplist
	radio name=wN value=15 sticky=W padx=10 text=entry   function=.testWidHelper action=entry

	radio name=wN value=21 sticky=W padx=10 text=grid    function=.testWidHelper action=grid
	radio name=wN value=22 sticky=W padx=10 text=history function=.testWidHelper action=history
	radio name=wN value=23 sticky=W padx=10 text=image  function=.testWidHelper action=image
	radio name=wN value=24 sticky=W padx=10 text=label   function=.testWidHelper action=label
	radio name=wN value=25 sticky=W padx=10 text=matrix  function=.testWidHelper action=matrix

	radio name=wN value=31 sticky=W padx=10 text=menu    function=.testWidHelper action=menu
	radio name=wN value=32 sticky=W padx=10 text=notebook  function=.testWidHelper action=notebook
	radio name=wN value=33 sticky=W padx=10 text=null    function=.testWidHelper action=null
	radio name=wN value=34 sticky=W padx=10 text=object  function=.testWidHelper action=object
	radio name=wN value=35 sticky=W padx=10 text="object (scrolling)"  function=.testWidHelper action=object_scrolling

	radio name=wN value=41 sticky=W padx=10 text=progressbar  function=.testWidHelper action=progressbar
	radio name=wN value=42 sticky=W padx=10 text=radio   function=.testWidHelper action=radio
	radio name=wN value=43 sticky=W padx=10 text=slider  function=.testWidHelper action=slider
	radio name=wN value=44 sticky=W padx=10 text=spinbox  function=.testWidHelper action=spinbox
	radio name=wN value=45 sticky=W padx=10 text=table  function=.testWidHelper action=table

	radio name=wN value=51 sticky=W padx=10 text=text    function=.testWidHelper action=text
	radio name=wN value=52 sticky=W padx=10 text="vector 1"            function=.testWidHelper action=vector1
	radio name=wN value=53 sticky=W padx=10 text="vector 2"            function=.testWidHelper action=vector2
	radio name=wN value=54 sticky=W padx=10 text="window (horizontal)" function=.testWidHelper action=windowH
	radio name=wN value=55 sticky=W padx=10 text="window (vertical)"   function=.testWidHelper action=windowV


label
text name=wtxt height=15 width=60 value="No widgets displayed" relief=solid edit=TRUE
button function=.testWidHelper text="create window from source" action="__USE_EDIT__" pady=7
