我有一个QTextBrowser
,当我选择里面文本的一部分时,我需要选择开始和结束的位置。我使用mousePressEvent
和mouseReleaseEvent
执行此操作并且它可以正常工作,但突出显示选择(深蓝色)不会出现。为什么?所以我无法看到我选择的内容。
我尝试使用信号selectionChanged
,但问题是每次选择文本时都会调用信号,而不是在我释放鼠标和选择结束时调用。
有什么建议吗?
谢谢!
编辑:
这就像我想要的那样:
class MyBrowser(QTextBrowser):
def __init__(self, parent=None, textableAnnotate=None):
super(MyBrowser, self).__init__(parent)
self.textableAnnotate = textableAnnotate
self.mousePress = 0
self.mouseRelease = 0
def mousePressEvent(self, mouseEvent):
self.mousePress = self.cursorForPosition(mouseEvent.pos()).position()
def mouseReleaseEvent(self, mouseEvent):
self.mouseRelease = self.cursorForPosition(mouseEvent.pos()).position()
我需要点击的位置。这里:self.mousePress和self.mouseRelease。但是当我在QTextBrowser中选择文本时,突出显示不会出现。我希望我更清楚......
编辑2:
或者这个:
self.browserInput.selectionChanged.connect(self.position)
def position(self):
start = self.browserInput.textCursor().selectionStart()
end = self.browserInput.textCursor().selectionEnd()
答案 0 :(得分:0)
您需要将事件传递给普通处理程序,因为您已更改了正常行为。在相应的事件处理程序的末尾添加以下行:
QTextBrowser.mousePressEvent(self, mouseEvent)
QTextBrowser.mouseReleaseEvent(self, mouseEvent)