В прошлом посте говоря "Все вызовы теперь одинаковы" я несколько слукавил. Всё-таки есть в этом зоопарке версий некоторая несовместимость вызов которой просто так не унифицировать. Эти моменты вынесены в отдельный модуль QtCompat (compatibility). Там не так много функций но они довольно полезны.
Этот модуль содержит унификаци модуля shiboken2, функций loadUi, translate и несколько переименованных функций классов или изменённую сигнатуру аргументов и возвращаемых значений. Это единственное исключение из правила когда вам потребуется где-то изменить свой код кроме импортов и этот код не похож на обычный код PySide2.
Например, в PyQt4 и PySide есть метод
QHeaderView.setResizeMode
Для PyQt5 и PySide2 они были благополучно переименованы в
QHeaderView.setSectionResizeMode
Чтобы применить этот метод следует использовать такой код
from Qt import QtCompath
header = self.horizontalHeader()
QtCompat.QHeaderView.setSectionResizeMode(header, QtWidgets.QHeaderView.Fixed)
Унификация загрузки UI файлов:
# PySide2
from PySide2.QtUiTools import QUiLoader
loader = QUiLoader()
widget = loader.load(ui_file)
# PyQt5
from PyQt5 import uic
widget = uic.loadUi(ui_file)
# Qt.py
from Qt import QtCompat
widget = QtCompat.loadUi(ui_file)
Хорошо что таких моментов не много и их легко запомнить.
Полный список можно посмотреть в таблице.
#qt#tricks
The Tuskegee Study was a government experiment from 1932 to 1972. It involved Black men with syphilis who were told they were getting free health care. But doctors did not give them medicine to cure the disease. They just watched the sickness get worse. The men did not know the truth and were not allowed to leave the study. This caused a lot of harm and suffering.
[Read more]
@googlefactss🏥⚠️#TuskegeeStudy#MedicalEthics#History#HealthRights
HeLa cells – taken from Henrietta Lacks in 1951 without her consent – became the first immortal human cell line.
They helped develop the polio vaccine, cancer treatments, and gene mapping, revolutionizing medicine. 7
Her story highlights major ethical questions in science and patient rights.
[Read more]
@googlefactss
#HeLa#MedicalEthics#ScienceHistory#HenriettaLacks
Active euthanasia is when a doctor directly ends a patient’s life, like using a lethal injection. Passive euthanasia is when doctors stop treatment or life support, letting the person die naturally.
Passive euthanasia is legal in many countries. Active euthanasia is only legal in a few, like the Netherlands, Belgium, Luxembourg, Canada, Spain, Portugal, Colombia, Ecuador, and New Zealand. Some U.S. states allow assisted dying, but not active euthanasia.
Many people find passive euthanasia more acceptable. Active euthanasia is more controversial. People worry about abuse or moral problems. Support often depends on whether a person is terminally ill or in unbearable suffering.
⚕️🛌💉🌍📜
[Check our poll]
[Read some more]
@googlefactss
#Euthanasia#PassiveVsActive#MedicalEthics#RightToDie#HealthEducation#TeenLearning#GlobalLaw