我有一个小的日志应用程序(用wxPython编写),它从我们正在开发的一些工具包中接收数据,我想在滚动窗口中显示文本。我正在使用wx.TextCtrl进行文本显示,但是我在滚动行为方面遇到了一些问题。
基本上,我希望如果滚动条位于窗口的底部(即传入数据的末尾),添加更多数据应该向前滚动视图。但是,如果视图已向上滚动一点(即用户正在查看有趣的内容,如错误消息),应用程序应该只在末尾添加文本而不再滚动。
我现在有两个问题:
我已经google了一下,似乎有一些提示表明GetScrollPos和GetScrollRange不能用于wx.TextCtrl?有没有其他人在这方面有过经验?有没有一个很好的简单方法来解决问题,或者我将不得不滚动自己的wx.TextCtrl?
答案 0 :(得分:4)
好的,这就是我要去的地方:
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”选项,它就会变得有点像梨形。我真的需要这个来做错误的语法高亮,但是如果我不能启用那个选项,我注定要单色 - 嘘!
关于如何在富编辑控件上阻止滚动的更多想法?
答案 1 :(得分:1)
我刚刚测试了一个简单的示例(在GetScrollPos(0)
的{{1}}事件处理程序中检查GetScrollRange(0)
和EVT_TEXT
,它对我来说很好用 - 它们返回当前显示的索引线和总行数分别为。
也许问题是你的wxPython版本?我用过:
wx.TextCtrl