]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/demo/wxTextCtrl.py
2 from wxPython
.wx
import *
4 #---------------------------------------------------------------------------
6 class TestPanel(wxPanel
):
7 def OnSetFocus(self
, evt
):
10 def OnKillFocus(self
, evt
):
13 def OnWindowDestroy(self
, evt
):
14 print "OnWindowDestroy"
18 def __init__(self
, parent
, log
):
19 wxPanel
.__init
__(self
, parent
, -1)
22 l1
= wxStaticText(self
, -1, "wxTextCtrl")
23 t1
= wxTextCtrl(self
, 10, "Test it out and see", size
=(125, -1))
24 t1
.SetInsertionPoint(0)
25 EVT_TEXT(self
, 10, self
.EvtText
)
26 EVT_CHAR(t1
, self
.EvtChar
)
27 EVT_SET_FOCUS(t1
, self
.OnSetFocus
)
28 EVT_KILL_FOCUS(t1
, self
.OnKillFocus
)
29 EVT_WINDOW_DESTROY(t1
, self
.OnWindowDestroy
)
31 l2
= wxStaticText(self
, -1, "Passsword")
32 t2
= wxTextCtrl(self
, 20, "", size
=(125, -1), style
=wxTE_PASSWORD
)
33 EVT_TEXT(self
, 20, self
.EvtText
)
35 l3
= wxStaticText(self
, -1, "Multi-line")
36 t3
= wxTextCtrl(self
, 30, "How does it work with a long line of text set in the control",
37 size
=(200, 100), style
=wxTE_MULTILINE
)
38 t3
.SetInsertionPoint(0)
39 EVT_TEXT(self
, 30, self
.EvtText
)
40 b
= wxButton(self
, -1, "Test Replace")
41 EVT_BUTTON(self
, b
.GetId(), self
.OnTestReplace
)
44 l4
= wxStaticText(self
, -1, "Rich Text")
45 t4
= wxTextCtrl(self
, 40, "If supported by the native control, this is red, and this is a different font.",
46 size
=(200, 100), style
=wxTE_MULTILINE|wxTE_RICH
)
47 t4
.SetInsertionPoint(0)
48 t4
.SetStyle(44, 47, wxTextAttr("RED", "YELLOW"))
50 points
= t4
.GetFont().GetPointSize() # get the current size
51 f
= wxFont(points
+3, wxROMAN
, wxITALIC
, wxBOLD
, true
)
52 ## print 'a1', sys.getrefcount(f)
53 ## t4.SetStyle(63, 77, wxTextAttr("BLUE", font=f))
54 t4
.SetStyle(63, 77, wxTextAttr("BLUE", wxNullColour
, f
))
55 ## print 'a2', sys.getrefcount(f)
57 sizer
= wxFlexGridSizer(cols
=3, hgap
=6, vgap
=6)
58 sizer
.AddMany([ l1
, t1
, (0,0),
63 border
= wxBoxSizer(wxVERTICAL
)
64 border
.Add(sizer
, 0, wxALL
, 25)
66 self
.SetAutoLayout(true
)
69 def EvtText(self
, event
):
70 self
.log
.WriteText('EvtText: %s\n' % event
.GetString())
73 def EvtChar(self
, event
):
74 self
.log
.WriteText('EvtChar: %d\n' % event
.GetKeyCode())
78 def OnTestReplace(self
, evt
):
79 self
.tc
.Replace(4, 8, "DOES")
83 #---------------------------------------------------------------------------
85 def runTest(frame
, nb
, log
):
86 win
= TestPanel(nb
, log
)
89 #---------------------------------------------------------------------------