831 @param printer reference to the printer object |
831 @param printer reference to the printer object |
832 @type QPrinter |
832 @type QPrinter |
833 @param browser reference to the browser to be printed |
833 @param browser reference to the browser to be printed |
834 @type WebBrowserView |
834 @type WebBrowserView |
835 """ |
835 """ |
836 QApplication.setOverrideCursor(Qt.WaitCursor); |
836 QApplication.setOverrideCursor(Qt.WaitCursor) |
837 browser.page().execPrintPage(printer, 10 * 1000) |
837 browser.page().execPrintPage(printer, 10 * 1000) |
838 QApplication.restoreOverrideCursor(); |
838 QApplication.restoreOverrideCursor() |
839 |
839 |
840 def __sourceChanged(self, url): |
840 def __sourceChanged(self, url): |
841 """ |
841 """ |
842 Private slot to handle a change of a browsers source. |
842 Private slot to handle a change of a browsers source. |
843 |
843 |