本文整理匯總了Python中PySide2.QtWidgets.QApplication.primaryScreen方法的典型用法代碼示例。如果您正苦於以下問題:Python QApplication.primaryScreen方法的具體用法?Python QApplication.primaryScreen怎麽用?Python QApplication.primaryScreen使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類PySide2.QtWidgets.QApplication
的用法示例。
在下文中一共展示了QApplication.primaryScreen方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: MouseEventFilter
# 需要導入模塊: from PySide2.QtWidgets import QApplication [as 別名]
# 或者: from PySide2.QtWidgets.QApplication import primaryScreen [as 別名]
else:
# got a filename
fullname = os.path.join(self.directory, file)
if os.path.isdir(fullname) and not os.path.islink(fullname):
self.stack.append(fullname)
if fnmatch.fnmatch(file, self.pattern):
return fullname
class MouseEventFilter(QtCore.QObject):
def eventFilter(self, obj, event):
if event.type() == QtCore.QEvent.GraphicsSceneMousePress:
#print("Mouse Click observed")
return True
return False
if __name__ == "__main__":
app = QApplication(sys.argv)
#print("script location =", os.path.dirname(os.path.realpath(sys.argv[0])))
#print("help location =", os.path.join(os.path.dirname(os.path.realpath(sys.argv[0])), "instructions.png"))
screen = app.primaryScreen()
size = screen.size()
rect = screen.availableGeometry()
#print("Screen size =", size.width(), "X", size.height())
#print("Available screen size =", rect.width(), "X", rect.height())
pix_ratio = screen.devicePixelRatio()
currentPath = os.getcwd()
myapp = MyForm(size.width(), size.height(), pix_ratio, currentPath)
myapp.show()
sys.exit(app.exec_())