Helpviewer/HelpBrowserWV.py

changeset 501
5c615a85241a
parent 487
4d41d03d3d00
child 535
4b00d7336e19
equal deleted inserted replaced
500:c3abc7895a01 501:5c615a85241a
287 Class implementing the helpbrowser widget. 287 Class implementing the helpbrowser widget.
288 288
289 This is a subclass of the Qt QWebView to implement an 289 This is a subclass of the Qt QWebView to implement an
290 interface compatible with the QTextBrowser based variant. 290 interface compatible with the QTextBrowser based variant.
291 291
292 @signal sourceChanged(const QUrl &) emitted after the current URL has changed 292 @signal sourceChanged(QUrl) emitted after the current URL has changed
293 @signal forwardAvailable(bool) emitted after the current URL has changed 293 @signal forwardAvailable(bool) emitted after the current URL has changed
294 @signal backwardAvailable(bool) emitted after the current URL has changed 294 @signal backwardAvailable(bool) emitted after the current URL has changed
295 @signal highlighted(const QString&) emitted, when the mouse hovers over a link 295 @signal highlighted(str) emitted, when the mouse hovers over a link
296 @signal search(const QUrl &) emitted, when a search is requested 296 @signal search(QUrl) emitted, when a search is requested
297 """ 297 """
298 sourceChanged = pyqtSignal(QUrl) 298 sourceChanged = pyqtSignal(QUrl)
299 forwardAvailable = pyqtSignal(bool) 299 forwardAvailable = pyqtSignal(bool)
300 backwardAvailable = pyqtSignal(bool) 300 backwardAvailable = pyqtSignal(bool)
301 highlighted = pyqtSignal(str) 301 highlighted = pyqtSignal(str)

eric ide

mercurial