From 6fd310473c30d2613b4d0f991c0bd4945bc62d44 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Wed, 28 Oct 2020 09:27:44 -0400 Subject: [PATCH] Add resource links to DPI snippet --- snippets/qt_screen_info.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/snippets/qt_screen_info.py b/snippets/qt_screen_info.py index 6d775d6b..238367c0 100644 --- a/snippets/qt_screen_info.py +++ b/snippets/qt_screen_info.py @@ -1,5 +1,20 @@ +""" +Resource list for mucking with DPIs on multiple screens: + +- https://stackoverflow.com/questions/42141354/convert-pixel-size-to-point-size-for-fonts-on-multiple-platforms +- https://stackoverflow.com/questions/25761556/qt5-font-rendering-different-on-various-platforms/25929628#25929628 +- https://doc.qt.io/qt-5/highdpi.html +- https://stackoverflow.com/questions/20464814/changing-dpi-scaling-size-of-display-make-qt-applications-font-size-get-rendere +- https://stackoverflow.com/a/20465247 +- https://doc.qt.io/archives/qt-4.8/qfontmetrics.html#width +- https://forum.qt.io/topic/54136/how-do-i-get-the-qscreen-my-widget-is-on-qapplication-desktop-screen-returns-a-qwidget-and-qobject_cast-qscreen-returns-null/3 +- https://forum.qt.io/topic/43625/point-sizes-are-they-reliable/4 +- https://stackoverflow.com/questions/16561879/what-is-the-difference-between-logicaldpix-and-physicaldpix-in-qt +- https://doc.qt.io/qt-5/qguiapplication.html#screenAt + +""" + from pyqtgraph import QtGui -from PyQt5 import QtCore from PyQt5.QtCore import ( Qt, QCoreApplication )