2

这可能是一个愚蠢的问题,但是:

当您将给定的字符串附加到 QTextBrowser 对象时,您能否将其作为信号的链接,指向获取其文本并对其进行处理的函数?我所需要的只是将文本实际保存到变量中。

例如,链接是否可以指向功能而不是网站。

4

1 回答 1

4

这当然是可能的。

这是一个代码示例:

import sys

from PyQt4 import QtGui
from PyQt4 import QtCore

class MainWindow(QtGui.QWidget):
    def __init__(self):
        super(MainWindow, self).__init__()
        main_layout = QtGui.QVBoxLayout()

        self.browser = QtGui.QTextBrowser()
        self.browser.setHtml('''<html><body>some text<br/><a href="some_special_identifier://a_function">click me to call a function</a><br/>
        <a href="#my_anchor">Click me to scroll down</a><br>foo<br>foo<br>foo<br>foo<br>foo<br>foo<br>
        foo<a id="my_anchor"></a><br>bar<br>bar<br>bar<br>bar<br>bar<br>bar<br>hello!<br>hello!<br>hello!<br>hello!<br>hello!<br>hello!<br>hello!<br>hello!</body></html''')

        self.browser.anchorClicked.connect(self.on_anchor_clicked)

        main_layout.addWidget(self.browser)

        self.setLayout(main_layout)

    def on_anchor_clicked(self,url):
        text = str(url.toString())
        if text.startswith('some_special_identifier://'):
            self.browser.setSource(QtCore.QUrl()) #stops the page from changing
            function = text.replace('some_special_identifier://','')
            if hasattr(self,function):
                getattr(self,function)()

    def a_function(self):
        print 'you called?'

app = QtGui.QApplication(sys.argv)
window = MainWindow()
window.show()

sys.exit(app.exec_())

任何具有以“some_special_identifier://”开头的 url 的链接都将被选中,之后的文本将用于查找和调用同名函数。请注意,这可能有点冒险,因为如果用户对 TextBrowser 中显示的内容有任何控制权,则可能会调用您不打算调用的各种函数。只允许运行某些功能可能会更好,而且可能只在某些时间运行。这当然是由你来执行!

PS 我的代码是为 Python 2.7 编写的(我看到你使用的是 Python 3)。所以我认为您至少需要更改print 'text'为!print('text')

于 2013-10-20T08:26:49.190 回答