From: Kevin A. <ka...@us...> - 2004-05-02 19:50:05
|
Update of /cvsroot/pythoncard/PythonCard/samples/testevents In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21950/samples/testevents Modified Files: testevents.rsrc.py Log Message: moved _binding and _dispatch into widget.py added component specific _binding to TextField, TextArea, PasswordField switched to wx.GetApp and wx.GetTopLevelwindow added binding and id attributes to background event classes added TextArea to testevents Index: testevents.rsrc.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/testevents/testevents.rsrc.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** testevents.rsrc.py 30 Apr 2004 23:02:47 -0000 1.3 --- testevents.rsrc.py 2 May 2004 19:49:57 -0000 1.4 *************** *** 1,5 **** { 'stack':{ 'type':'Stack', ! 'name':'Minimal', 'backgrounds': --- 1,5 ---- { 'stack':{ 'type':'Stack', ! 'name':'TestEvents', 'backgrounds': *************** *** 7,12 **** { 'type':'Background', 'name':'bgMin', ! 'title':'Minimal PythonCard Application', ! 'size':( 300, 120 ), 'menubar': --- 7,12 ---- { 'type':'Background', 'name':'bgMin', ! 'title':'Test Events PythonCard Application', ! 'size':( 300, 250 ), 'menubar': *************** *** 32,35 **** --- 32,40 ---- 'position':(0, 0), 'text':'Hello PythonCard' }, + { 'type':'TextArea', + 'name':'fldArea', + 'position':(0, 30), + 'size':(-1, 100), + 'text':'The quick brown fox jumped over the lazy dog.' }, { 'type':'Button', 'name':'btn', |