В прошлом посте говоря "Все вызовы теперь одинаковы" я несколько слукавил. Всё-таки есть в этом зоопарке версий некоторая несовместимость вызов которой просто так не унифицировать. Эти моменты вынесены в отдельный модуль 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
ℹ️How Callegram Business Works Right Now
In previous post we told you how to setup a Callegram Business account. Today we're sharing with you what you'll get after new status:
⚙️Notifications Settings. When your customer will book a call, you can setup a specific time presets for notifications. To find all notification settings you can view Profile section inside @CallegramBot Mini App;
💬Automated Replies. At this moment your schedule is sent when your customer asks you about it. If in customer's questions will contain these words: «Schedule, Appointment, Booking, Book» — @CallegramBot will send your schedule instantly. Check the video above to see how it works.
Ask us anything about Callegram Business and we will help you!
#CallegramBusiness#MiniApps#Business
ℹ️How to Setup Callegram Business
1. Open Telegram settings;
2. Tap on «Telegram Business» button;
3. Find «Chat Bots» section;
4. Enter CallegramBot into special field and tap on the button «Add»
✔️ Done. Now your Callegram profile is in Business mode.
⚙️ Don't forget to setup your working hours in Telegram Business menu.
#CallegramBusiness#Business#MiniApps
🤫Page Of Businesses
Users, are you ready to make appointments in a few clicks?
Businesses, are you ready to provide your services seamlessly?
🙂 Stay tuned
#Appointments#MiniApps#Business#CallegramBusiness
👍 Make Us Better
We've been growing fast and we want to give you the best experience if you use @CallegramBot.
We've sent a special feedback form to all our Business users. If you want to help us make Callegram better, please fill in the form below:
🔗https://t.me/CallegramBot/feedback
P.S. Don't forget share with us your the most desirable function
#TelegramBusiness#CallegramBusiness#MiniApps#Web_Apps