本文整理汇总了Python中PySide.QtWebKit.QWebView.showFullScreen方法的典型用法代码示例。如果您正苦于以下问题:Python QWebView.showFullScreen方法的具体用法?Python QWebView.showFullScreen怎么用?Python QWebView.showFullScreen使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PySide.QtWebKit.QWebView
的用法示例。
在下文中一共展示了QWebView.showFullScreen方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: Browser
# 需要导入模块: from PySide.QtWebKit import QWebView [as 别名]
# 或者: from PySide.QtWebKit.QWebView import showFullScreen [as 别名]
class Browser(QObject):
# pylint: disable=too-many-public-methods
__execute_script_called = Signal(str)
def __init__(self):
super().__init__()
self.app = QApplication([])
self.webview = QWebView()
self.webview.setAttribute(Qt.WA_DeleteOnClose)
self.webview.destroyed.connect(self.app.quit)
self.__execute_script_called.connect(self.__execute_script)
def __execute_script(self, javascript_code: str):
assert current_thread_is_main()
self.webview.page().mainFrame().evaluateJavaScript(javascript_code)
def execute_script(self, javascript_code: str):
if current_thread_is_main():
self.__execute_script(javascript_code)
else:
self.__execute_script_called.emit(javascript_code)
def run(self, url):
assert current_thread_is_main()
self.webview.showFullScreen()
self.webview.load(url)
self.app.exec_()
示例2: init_video
# 需要导入模块: from PySide.QtWebKit import QWebView [as 别名]
# 或者: from PySide.QtWebKit.QWebView import showFullScreen [as 别名]
def init_video(self):
web = QWebView()
web.showFullScreen()
web.load(QUrl("http://www.google.com"))
self.layout().addWidget(web)
示例3: QApplication
# 需要导入模块: from PySide.QtWebKit import QWebView [as 别名]
# 或者: from PySide.QtWebKit.QWebView import showFullScreen [as 别名]
import sys
from PySide.QtCore import *
from PySide.QtGui import *
from PySide.QtWebKit import QWebView
app = QApplication(sys.argv)
web = QWebView()
web.showFullScreen()
web.load(QUrl("http://www.google.com"))
sys.exit(app.exec_())