さて、これが私がしなければならないところです:
import wx
from threading import Timer
import time
class Form1(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
self.logger = wx.TextCtrl(self,5, "",wx.Point(20,20), wx.Size(200,200), \
wx.TE_MULTILINE | wx.TE_READONLY)# | wx.TE_RICH2)
t = Timer(0.1, self.AddText)
t.start()
def AddText(self):
# Resart the timer
t = Timer(0.25, self.AddText)
t.start()
# Work out if we're at the end of the file
currentCaretPosition = self.logger.GetInsertionPoint()
currentLengthOfText = self.logger.GetLastPosition()
if currentCaretPosition != currentLengthOfText:
self.holdingBack = True
else:
self.holdingBack = False
timeStamp = str(time.time())
# If we're not at the end of the file, we're holding back
if self.holdingBack:
print "%s FROZEN"%(timeStamp)
self.logger.Freeze()
(currentSelectionStart, currentSelectionEnd) = self.logger.GetSelection()
self.logger.AppendText(timeStamp+"\n")
self.logger.SetInsertionPoint(currentCaretPosition)
self.logger.SetSelection(currentSelectionStart, currentSelectionEnd)
self.logger.Thaw()
else:
print "%s THAWED"%(timeStamp)
self.logger.AppendText(timeStamp+"\n")
app = wx.PySimpleApp()
frame = wx.Frame(None, size=(550,425))
Form1(frame)
frame.Show(1)
app.MainLoop()
このシンプルなデモアプリはほぼ完璧に動作します。ユーザーがテキストの最後にない行をクリックしない限り、きれいにスクロールします。その後は、テキストを選択できるように、きれいに保たれます(注:下ではなく上を選択すると、選択がクリアされるというバグがまだあります)。
最大の煩わしさは、「| wx.TE_RICH2」オプションを有効にしようとすると、すべてが少し洋ナシの形になることです。エラーの構文の強調表示を行うためにこれが本当に必要ですが、そのオプションを有効にできない場合は、モノクロに運命づけられています-ブー!
リッチエディットコントロールのスクロールを抑える方法について他にアイデアはありますか?