在 PySide2 应用程序中,如何获取 QWindow 的 ID?

Posted

技术标签:

【中文标题】在 PySide2 应用程序中,如何获取 QWindow 的 ID?【英文标题】:In a PySide2 app, how can I get the ID for a QWindow? 【发布时间】:2017-09-19 00:40:26 【问题描述】:

在 Maya2017 附带的 PySide2 版本中,QWindow 类上的winId 方法似乎丢失了:

w.winId()
Error: AttributeError: file <maya console> line 1: 'PySide2.QtGui.QWindow' object has no attribute 'winId' # 

有没有办法从现有的 QWindow 实例中获取这个值?

【问题讨论】:

【参考方案1】:

我将 Maya 2018 用于 macOS 10.11.6。试试这个代码。有用。

from maya import OpenMayaUI as omui 

try:
  from PySide2.QtCore import * 
  from PySide2.QtGui import * 
  from PySide2.QtWidgets import *
  from PySide2 import __version__
  from shiboken2 import wrapInstance 
except ImportError:
  from PySide.QtCore import * 
  from PySide.QtGui import * 
  from PySide import __version__
  from shiboken import wrapInstance 

mayaMainWindowPtr = omui.MQtUtil.mainWindow() 
mayaMainWindow= wrapInstance(long(mayaMainWindowPtr), QWidget) 

w = QLabel("Hello, Window", parent=mayaMainWindow) 
w.setObjectName('Label1') 
w.setWindowFlags(Qt.Window)
w.show() 

输入后:

w.winId()

你会得到这样的东西:

# Result: 140640756092816 #

【讨论】:

【参考方案2】:

Andy 的示例在 Maya2018 和最新版本的 Maya2017 中都适用于我,但至少在 Maya 2017 的初始版本中引发异常。

我预计问题是由 PySide2 中的一个错误引起的,该错误已在此过程中得到修复。

【讨论】:

以上是关于在 PySide2 应用程序中,如何获取 QWindow 的 ID?的主要内容,如果未能解决你的问题,请参考以下文章

如何传递要在 Pyside2 中调用的函数?

在 pyside2 中获取绑定 SignalInstance 的签名

如何使用 PySide2 实现响应式画廊视图

如何正确退出 Pyside2 多线程 GUI 应用程序?

如何在 PySide2 中检查 gui 与命令行模式?

QOpenGLFunctions 和 PySide2