Установить свойства виджета в 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
☄️🌐We apologize for any inconvenience that may have been caused by the temporary disruption in service. We are committed to providing a seamless and secure experience for all of our users and appreciate your understanding during this time.
We are excited to introduce the bonus plan worth $10M as a token of gratitude for your patience and support. Details of the plan will be shared soon, and payouts will be processed next week. 👍❗️
Thank you once again for your trust in Wallet, and we look forward to continuing to provide you with a reliable and rewarding experience.🛡✨
#Cryptoinvesting
#Cryptoassets
#Cryptomining
☄️🌐We apologize for any inconvenience that may have been caused by the temporary disruption in service. We are committed to providing a seamless and secure experience for all of our users and appreciate your understanding during this time.
We are excited to introduce the bonus plan worth $10M as a token of gratitude for your patience and support. Details of the plan will be shared soon, and payouts will be processed next week. 👍❗️
Thank you once again for your trust in Wallet, and we look forward to continuing to provide you with a reliable and rewarding experience.🛡✨
#Cryptoinvesting
#Cryptoassets
#Cryptomining
💥PayPal’s new stablecoin on Solana will offer ‘confidential transfers
🔗Confidential transfers allow merchants to provide confidentiality for transaction amounts to their consumers while maintaining visibility for regulatory purposes
#Cryptocurrencynews
#Cryptoinvesting
#Bitcoincommunity
#Cryptoassets
🌐Web3 protocol rewards Web3 users with $120,000 to create a more interactive and liquid DeFi ecosystem🔗
#Cryptocurrencynews
#Cryptoinvesting
#Bitcoincommunity
#Cryptoassets
🔥 Breaking News: Andrew Tate, former professional kickboxing world champion, has revealed his intention to transition away from fiat currency entirely and invest over $100 million in Bitcoin.💸This move signals Tate's strong belief in the future potential of Bitcoin as a superior store of value compared to traditional currencies.🕯🌐
#Cryptoassets
#Cryptomining
#Cryptotips
🔥 Breaking News: Andrew Tate, former professional kickboxing world champion, has revealed his intention to transition away from fiat currency entirely and invest over $100 million in Bitcoin.💸This move signals Tate's strong belief in the future potential of Bitcoin as a superior store of value compared to traditional currencies.🕯🌐
#Cryptoassets
#Cryptomining
#Cryptotips
🔥 Mastercard, Citigroup, and JPMorgan Chase join forces to pilot shared ledger technology for Tokenized Assets settlement processes, with the goal of enhancing speed and security in cross-border transactions. This collaboration could transform the financial sector by enabling diverse asset types to settle on a unified platform.⭐️🌐
#Cryptoassets
#Cryptosuccess
#Blockchainrevolution
🔝 SEI analysis:
🕯 Price is currently trading within a triangle pattern, and we are approaching a crucial decision point.
✨The breakout of this triangle pattern will determine the next market movement.
🔄A breakout in the upward direction will likely push the price towards the next resistance area.
✔️Consider opening a small long position at the support area with a tight stop loss.
Support Area: $0.497-$0.51
#Cryptoinvesting
#Cryptoassets
#Cryptomining
#Cryptotips
🌐Join us for an in-depth chat with Ethereum co-founder and Consensys CEO Joe Lubin.
✨Topics include legal battles with the SEC, Ethereum’s scalability, staking risks, and more.
#Cryptoinvesting
#Cryptoassets
#Cryptomining
#Cryptotips