当前位置: 首页>>代码示例>>Python>>正文


Python QWebView.showFullScreen方法代码示例

本文整理汇总了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_()
开发者ID:SetSplin,项目名称:DigitalLibrary,代码行数:33,代码来源:client.py

示例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)
开发者ID:esernaalonso,项目名称:dev,代码行数:7,代码来源:video_player.py

示例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_())
开发者ID:esernaalonso,项目名称:dev,代码行数:12,代码来源:test_misc.py


注:本文中的PySide.QtWebKit.QWebView.showFullScreen方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。