Workaround some platform differences

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41466 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2006-09-26 17:26:23 +00:00
parent fe8712b53e
commit 4123a7a9b8
2 changed files with 48 additions and 4 deletions

View File

@@ -90,7 +90,21 @@ class ExpandoTextCtrl(wx.TextCtrl):
wx.TextCtrl.SetFont(self, font)
self.numLines = -1
self._adjustCtrl()
def WriteText(self, text):
# work around a bug of a lack of a EVT_TEXT when calling
# WriteText on wxMac
wx.TextCtrl.WriteText(self, text)
self._adjustCtrl()
def AppendText(self, text):
# Instead of using wx.TextCtrl.AppendText append and set the
# insertion point ourselves. This works around a bug on wxMSW
# where it scrolls the old text out of view, and since there
# is no scrollbar there is no way to get back to it.
self.SetValue(self.GetValue() + text)
self.SetInsertionPointEnd()
def OnTextChanged(self, evt):
# check if any adjustments are needed on every text update