@QuietWorld · Post #6423 · 01.05.2019 г., 03:12
#selfreminder@quietworld🍃
Hashtags
TGINSIGHT SIMILAR POSTS
Изворен канал @pythonotes · Post #381 · 23 окт.
Установить свойства виджета в 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
Пребарај: #selfreminder
@QuietWorld · Post #6423 · 01.05.2019 г., 03:12
#selfreminder@quietworld🍃
Hashtags
@QuietWorld · Post #6302 · 26.03.2019 г., 12:55
so think good thoughts. try, even when it could be hard sometimes. #selfreminder@quietworld🍃
Hashtags
@QuietWorld · Post #7568 · 21.08.2020 г., 15:47
It's better to be alone than to be with a bad company. Don't settle for anything less than you deserve. Know your worth 😊 #thoughts#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #7507 · 17.07.2020 г., 02:54
Bila kau baru mula bekerja, semalu mana dan serendah diri mana kau rasa pun, anxiety mcm mana pun, beranikan diri bertanya banyak bila tidak tahu sesuatu, itu la privilege jd orang baru. Semalu mana kau rasa untuk bertanya waktu masih baru, bayangkan kalau sudah lama bekerja masih bertanya banyak walaupun berkaitan hal yg lama? Pilih mana satu ☺ #thoughts#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #7419 · 17.06.2020 г., 07:31
Quick reminder: don't compare your life to others too much. We grow and learn at different pace. ☺ #thoughts#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #7277 · 20.04.2020 г., 05:12
I still have me. Don't lose yourself to anyone. There's no use to have a lot of people in your life at the price of losing yourself – because what's the point of having everyone in your life but not having yourself? Don't be afraid to lose people. Instead, be willing to lose people when you need to. #thoughts#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #7255 · 07.04.2020 г., 08:44
Have you ever been in a situation in which you really want to forgive, but your heart can't forgive yet because it still hurts? You really want to forgive but you know you haven't because your heart still aches. & it hurts you more because you still can't forgive. Take your time. Be gentle to your heart. Don't treat your heart like how anyone else treat it. #thoughts#selfreminder@quietworld🍃
Hashtags
@QuietWorld · Post #7062 · 12.12.2019 г., 02:11
Tbh, you don't have to be the most knowledgable person in the world or anywhere. Knowing that you don't know about somethingyou need to know about and able to decide and take action to find out more about it is enough to help you go a long way. It's just that simple. Remember that. #thoughts#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #6977 · 26.11.2019 г., 03:40
Don't give more to other people than you give to yourself. Don't be too loyal to other people that you betray yourself. #selfreminder#life @quietworld🍃
Hashtags
@QuietWorld · Post #6922 · 17.11.2019 г., 04:58
cc: theawkwardyeti #life#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #7583 · 07.09.2020 г., 00:28
#motivation#selfreminder @quietworld🍃
Hashtags
@QuietWorld · Post #6961 · 23.11.2019 г., 14:42
#motivation#selfreminder @quietworld🍃
Hashtags