Установить свойства виджета в PySide можно не только через соответствующие методы и конструктор класса. Можно их изменять с помощью метода setProperty по имени.
btn = QPushButton("Click Me")
btn.setProperty("flat", True)
Это аналогично вызову
btn.setFlat(True)
Если указать несуществующее свойство, то оно просто создается
btn.setProperty("btnType", "super")
Получить его значение можно методом .property(name)
btn_type = btn.property("btnType")
Когда это может быть полезно?
▫️Можно просто хранить какие то данные в виджете и потом их доставать обратно
widget = QWidget()
widget.setProperty('my_data', 123)
print(widget.property('my_data'))
▫️ Назначая эти свойства разным виджетам можно потом отличить виджеты во время итераци по ним. Например, найти все кнопки со свойством my_data="superbtn".
Но ведь вместо кастомного свойства можно использовать objectName, будет тот же результат.
Да, но y ObjectName есть ограничение - только строки.
▫️ Если нам потребуется не просто поиск а, например, сортировка по числу, то свойства позволяют нам это сделать. Поддерживается любой тип данных
widget.setProperty('my_data', {'Key': 'value'})
widget.setProperty('order', 1)
all_widgets.sort(key=w: w.property('order'))
Но ведь Python позволяет всё вышеперечисленное сделать простым созданием атрибута у объекта
widget.order = 1
widget.my_data = 123
Да, но я думаю что не надо объяснять почему не стоит так делать. К тому же, если у виджета нет свойства то метод .property(name) вернет None, а отсутствующий атрибут выбросит исключение.
▫️ Действительно полезное применение кастомным свойствам - контроль стилей. Здесь атрибутами не обойтись, нужны именно свойства.
Дело в том, что в селекторах стилей можно указывать конкретные свойства виджетов на которые следует назначать стиль.
Просто запустите этот код
from PySide2.QtWidgets import *
if __name__ == "__main__":
app = QApplication([])
widget = QWidget(minimumWidth=300)
layout = QVBoxLayout(widget)
btn1 = QPushButton("Action 1")
btn2 = QPushButton("Action 2")
btn3 = QPushButton("Action 3", flat=True)
layout.addWidget(btn1)
layout.addWidget(btn2)
layout.addWidget(btn3)
# добавим кастомное свойство одной кнопке
btn1.setProperty("btnType", "super")
# добавляем стили
widget.setStyleSheet(
"""
QPushButton[btnType="super"] {
background-color: yellow;
color: red;
}
QPushButton[flat="true"] {
color: yellow;
}
"""
)
widget.show()
app.exec_()
С помощью селектора мы избирательно назначили стили на конкретные кнопки.
Как получить список всех кастомный свойств?
Функция получения списка кастомных свойств отличается от получения дефолтных.
def print_widget_dyn_properties(widget):
for prop_name in widget.dynamicPropertyNames():
property_name = prop_name.data().decode()
property_value = widget.property(property_name)
print(f"{property_name}: {property_value}")
#tricks#qt
🗣 Attention all #AMA fans! Because of the Christmas Holiday, we will be rescheduling our session with Roman Povolotski from Dec 24 to Dec XXX.📅
🙏 We hope you'll join us for an extra special AMA session with awesome rewards! Merry Christmas!
Drop your preferable date and questions in the comments - will pick new one!
#AMA TokenPocket_TP x Owlto_Finance
⏰Sept 27th, 12:00 PM UTC
🪑 Venue: https://t.me/tokenPocket_en
✅Comment your Qs about Owlto_Finance on Twitter before the AMA
✅Join Telegram and enjoy the live AMA
🎁10 Arbitrum-Owlto NFTs to 5 best Twitter Qs & 5 best Live Qs
【Details】https://twitter.com/TokenPocket_TP/status/1706242563206742067
【Powered By】Crypto Box
【TokenPocket Retweeted】
Retweeted TronDao_RUS : #AMA TRON DAO Россия × TokenPocket
💰Погрузитесь в призовой фонд 100USDT!
⏰20 сентября в 13:00(Московское время)
🪑Место проведения: https://t.me/tronnetworkRU
✅Следите за TronDao_RUS TokenPocket_TP
【Details】https://twitter.com/TronDao_RUS/status/1703711833079861717
【Powered By】Crypto Box
#AMA TokenPocket x Bitstar War
⏰Jun 20th, 12:00 PM UTC
🪑 Venue: https://t.me/tokenPocket_en
✅Comment your Qs about BitstarWar on Twitter before AMA
✅Join Telegram and enjoy the live AMA
🎁$450 NFT Mystery Boxes to 5 best Twitter Qs & 5 best Live Qs
https://twitter.com/TokenPocket_TP/status/1670732579077779456
#AMA TokenPocket x Bitstar War
⏰Jun 20th, 12:00 PM UTC
🪑 Venue: https://t.me/tokenPocket_en
✅Comment your Qs about BitstarWar on Twitter before AMA
✅Join Telegram and enjoy the live AMA
🎁$450 NFT Mystery Boxes to 5 best Twitter Qs & 5 best Live Qs
https://twitter.com/TokenPocket_TP/status/1670732579077779456
#AMA Alert! 🚨
Join us on an amazing AMA, in which we'll discuss the role of real world assets tokenization and how The Go! Project is leading the next generation of RWA L1s.
When? Thursday, February 22 @ 11am PST
Where? https://twitter.com/i/spaces/1mrxmybeWPnxy
Don't miss out!
Fams, please join our #AMA with
@RollandSaf, hosted by @bitfinex and @BitFreedomGus
on March 21st 2PM UTC. Submit your question here: https://docs.google.com/forms/d/e/1FAIpQLSdxEXPefE4kApt_WAovyJQ8Jf6G8ENnlLas-9VneQ8tKhQaJA/viewform
Soon we are summarizing BulCoin.
We will determine the winner live on the telegram channel: https://t.me/bulcoin_blc
Wait for the announcement
#AMA
FAQ | BUY
✅Text AMA with Nicegram CPO is starting right now!
✅ Sergey S. will provide his answers in the comments under the AMA announcement post. Drop your questions with the #AMAhashtag in the comments section below and get your answers in real time!
The authors of the three most evocative questions will take home a neat reward of 20 USDT!
💰
If you don't have time to visit the AMA, don't worry! We will make a publication with all the questions and answers. You will have the opportunity to get acquainted with all the information at any time. 📝
Hey Nicegrammers! 👌
💰 Today at 4 P.M. GMT+3 we will hold a textAMA session with Sergey S., the Nicegram CPO.The authors of the three most evocative questions will take home a neat reward of 20 USDT!
✅ Sergey S. will provide his answers in the comments under the AMA announcement post. Drop your questions with the #AMAhashtag in the comments section below and get your answers in real time!
Thank you so much for being a part of our close-knit Nicegram community! 👌