码迷,mamicode.com
首页 > 其他好文 > 详细

浏览器

时间:2014-12-14 23:57:35      阅读:302      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   os   sp   on   bs   cti   ad   

#!/usr/bin/env python

#-*- coding:utf-8 -*-

 

from PyQt4 import QtGui, QtCore, QtWebKit

 

class MyPage(QtWebKit.QWebPage):

    def __init__(self, parent=None):

        super(MyPage, self).__init__(parent)

 

    def triggerAction(self, action, checked=False):

        if action == QtWebKit.QWebPage.OpenLinkInNewWindow:

            self.createWindow(QtWebKit.QWebPage.WebBrowserWindow)

 

        return super(MyPage, self).triggerAction(action, checked)

 

 

class MyWindow(QtWebKit.QWebView):

    def __init__(self, parent=None):

        super(MyWindow, self).__init__(parent)

 

        self.myPage = MyPage(self)

 

        self.setPage(self.myPage)

 

    def createWindow(self, windowType):

        if windowType == QtWebKit.QWebPage.WebBrowserWindow:

            self.webView = MyWindow()

            self.webView.setAttribute(QtCore.Qt.WA_DeleteOnClose, True)

 

            return self.webView

 

        return super(MyWindow, self).createWindow(windowType)

 

if __name__ == "__main__":

    import sys

 

    app = QtGui.QApplication(sys.argv)

    app.setApplicationName(‘MyWindow‘)

    main = MyWindow()

    main.show()

    main.load(QtCore.QUrl("http://www.baidu.com"))

 

    sys.exit(app.exec_())

 

浏览器

标签:http   io   ar   os   sp   on   bs   cti   ad   

原文地址:http://www.cnblogs.com/mhxy13867806343/p/4163163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!