TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

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

Hashtags

Резултати

Пронајдени 4 слични објави

Пребарај: #krugernationalpark

当前筛选 #krugernationalpark清除筛选

💛Сила материнской любви В национальном парке Крюгера в ЮАР слониха спасла своего слонёнка, которого уносило мощным потоком воды. 📹 Трогательные кадры появились на фоне сильного наводнения, обрушившегося на регион. Стихия серьёзно повредила инфраструктуру парка: людей эвакуировали, а некоторым животным пришлось спасаться самостоятельно. По словам представителей администрации, большинство обитателей парка заранее поднялись на возвышенности — но не всем удалось избежать опасности. 🔗Видео: https://t.me/aifonline/177687 #ЮАР#Природа#ДикаяПрирода#Слоны#KrugerNationalPark

💛The Power of a Mother’s Love In Kruger National Park, South Africa, an elephant cow rescued her calf as it was being swept away by a powerful current. 📹 The touching footage comes from an area affected by severe flooding. The natural disaster caused serious damage to the park’s infrastructure: people were evacuated, and some animals had to fend for themselves. According to park officials, most animals moved to higher ground in advance — but not all managed to escape the danger. 🔗Video: https://t.me/aifonline/177687 #SouthAfrica#Wildlife#Nature#Elephants#MothersLove#KrugerNationalPark

🦁Kruger National Park, located in the northeast of South Africa, is the country’s oldest national park (founded 🗓in 1926) and one of the largest national parks in the world 🌍 To fully experience the park, visitors usually spend several days there. That is why campsites are located directly inside the park ⛺️ There are nine entrance gates, all of which close at night, as it is dangerous to remain in the park after dark without a guide 🌙⚠️ 🐘🦏🦬🦁🐆 Kruger National Park is home to: • about 12,000 elephants, • 5,000 rhinos, • 2,500 buffalo, • 1,500 lions, • 1,000 leopards, • and hundreds of bird species🐦 📹Video: 10 minutes with the inhabitants of Kruger National Park https://www.youtube.com/watch?v=ZnbsthIPMiw #Nature#Animals#KrugerNationalPark#SouthAfrica#BigFive#Wildlife#Africa

🎉Today marks 200 years since the birth of Paul Kruger! 🗓 Born on October 10, 1825, Stephanus Johannes Paulus Kruger (also known as Paul Kruger) served as the President of the South African Republic from 1883 to 1900. He was affectionately called “Oom Paul” (Uncle Paul). 🇿🇦 Today, Paul Kruger is viewed in South Africa with a nuanced perspective. On one hand, he is recognized as a symbol of the Boer struggle for independence. On the other hand, his conservative views and support for racial segregation make his legacy a subject of debate in modern society. So, he is seen primarily in a historical context — as part of South Africa’s complex heritage. 🐘 One of the world’s most famous wildlife reserves — Kruger National Park — was named in his honor. 💬 His words still inspire us today: "Search in your past for what is good and beautiful. Build your future from there." #History#SouthAfrica#PaulKruger#200Years#Birthday#Legacy#OomPaul#KrugerNationalPark