我有一个从有点我们正在开发套件的接收数据一点点记录应用程序(写在wxPython的),我想显示在滚动窗口中的文本。 目前的情况是我使用文本显示一个wx.TextCtrl,但我有与滚动行为的一些问题。
基本上,我想它使得如果滚动条在窗口的底部(对输入数据的即)结束时,加入更多的数据应起滚动视图。 但如果认为已滚动起来有点(即用户在看一些有趣的事情就像一个错误消息),应用程序应该只是加上底部的文字,没有任何更多的滚动。
我有此刻的两个问题:
- 我不能工作了如何检索当前滚动位置(以GetScrollPos()的调用似乎不工作 - 他们只返回0)。
- 我不能工作了如何检索滚动条(调用GetScrollRange都()只返回1)的电流范围。
我GOOGLE了一下,似乎有暗示GetScrollPos和GetScrollRange都不会为一个wx.TextCtrl工作的几点提示? 任何人都有这方面的经验吗? 是否有一个很好的简单的方法来解决这个问题还是我将不得不推出自己的wx.TextCtrl?
我只是测试一个简单的例子(检查GetScrollPos(0)
和GetScrollRange(0)
在EVT_TEXT
事件处理程序wx.TextCtrl
)和它的作品对我很好-他们分别返回当前显示的行,行总数的指标。
也许问题是您的wxPython版本? 我用了:
>>> import wx
>>> wx.version()
'2.8.9.1 (msw-unicode)'
好了,所以这里的地方我必须:
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”选项,这一切都有点梨形。 我真的需要这个做错误的语法高亮,但如果我不能启用该选项,我注定要单色 - 嘘!
任何更多的想法如何忍住滚动的丰富的编辑控制?
文章来源: How do I get the scroll position / range from a wx.TextCtrl control in wxPython