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

Резултати

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

Пребарај: #jimma

当前筛选 #jimma清除筛选
JIFAR CAREER

@JIFAR1 · Post #182 · 09.07.2025 г., 11:24

##Jimma ፎቶ እና ቪዲዮ ኤዲተር መስፈርት ፡- - በማንኛውም የኤዲቲንግ ሶፍትዌር መስራት የሚችል _ ላፕቶፕ ያለው ወይም በቅርበት ኮምፒዉተር ማግኘት የሚችል ጾታ አይለይም ስራው ላይ ብዙ ያልቆየም (ጀማሪ) ቢሆን አበረታታለው ረዳት መስፈርት ፡- ጾታ ሴት - ፎቶ ለመነሳት ብቁ ነኝ ብላ የምታስብ እና ፍላጎት ያላት - አዲስ የስራ ሀሳቦችን መፍጠር የምትችል እና ለስራ አስፈላጊ የሆኑ ቦታዎችን የመምረጥ (የማየት) ችሎታ ያላት - ጊዜ ያላት እና በማንኛውም ቀን ለስራ ዝግጁ መሆን የምትችል @Mintesinot_G | Telegram Inbox | 0967106705

Hashtags

Addis Standard

@addisstandardeng · Post #21633 · 06.03.2026 г., 14:53

News: #Jimma University, #Boeing sign partnership to strengthen aerospace education Boeing and Jimma University have announced a long-term strategic partnership aimed at strengthening aviation sciences and aerospace engineering education and preparing a skilled workforce for #Ethiopia’s growing aviation sector and the wider #African market. In a statement, the partners said the collaboration will support Jimma University’s recently established Aviation Sciences and Aerospace Engineering Academy through infrastructure upgrades, curriculum enrichment, and community engagement initiatives. The program is also expected to lay the foundation for developing Jimma into a future aerospace center of excellence. During the initial phase of the partnership in 2026, the two sides plan to focus on classroom modernization, specialized faculty training, and industry-focused workshops. Henok Teferra Shawl, managing director for Africa at Boeing, said the ..... Read more; https://addisstandard.com/?p=55631

Addis Standard

@addisstandardeng · Post #21617 · 05.03.2026 г., 07:05

News: Fuel shortages deepen in #Addis_Abeba, regional cities as drivers endure prolonged queues Drivers in Addis Abeba and several regional cities report worsening fuel shortages, with prolonged queues and dwindling supplies deepening the strain caused by recent price hikes. At present, beyond rising costs, fuel is reportedly becoming increasingly scarce in cities including #Mekelle, #Jimma, #Ambo and #Bahir_Dar. Drivers who spoke to Addis Standard described spending hours in queues at fuel stations, often with no guarantee of securing supply. A public transport driver in Mekelle said the situation has deteriorated sharply. “Beyond the price hike, it feels like fuel is heading toward complete disappearance. We are buying a 20-litre jerrycan for 8,000 birr, and that too after waiting in line for more than five hours,” he said. Read more: https://addisstandard.com/?p=55586

JIFAR CAREER

@JIFAR1 · Post #380 · 30.12.2025 г., 07:46

❗️❗️NEWS❗️❗️ 🚀 Elevate Your Future Tomorrow Morning! Are you ready to take the next step in your professional journey? Jifar Career Training is coming to Eldan School in Jimma for an exclusive, high-impact session! Where: Eldan School, Jimma When: Tomorrow Morning ከ 2:30 ጀምሮ አይቀርም Focus: Career growth, skill building, and professional success. Don’t just dream about a career—train for it. We are bringing the tools; you bring the ambition. See you all there!📍#Jimma#JifarCareer#EldanSchool#CareerGrowth

Addis Standard

@addisstandardeng · Post #21907 · 01.04.2026 г., 14:38

Business: #Dubai-based premier hospitality group partners with #MIDROC to develop 10 hotels across #Ethiopia The agreement, signed during the Future Hospitality Summit Africa, held at Radisson Blu Hotel, #Nairobi Upper Hill, between 31 March and 01 April 2026, outlines a multi-year rollout of properties across key destinations including #Addis_Abeba, #Hawassa, #Bahir_Dar, #Jimma, and #Langano. The developments are expected to deliver approximately 1,140 hotel keys, with phased openings planned between 2026 and 2031. https://addisstandard.com/?p=56250

#HaSab

@Hasab_2016 · Post #86 · 09.06.2024 г., 08:50

🗣️#DebateSphere was 🔥🔥🔥🔥🔥 The inaugural edition of Debate Sphere in Bishoftu, Ethiopia kicked off with an intense first round of debates. 20 eager participants, divided into 4 teams, took the stage to tackle pressing issues. The energy in the room was 💯 as the teams delivered their arguments with eloquence and conviction, captivating the enthusiastic 👏 audience. Judges listened intently, evaluating the persuasiveness and clarity of the presentations. Friendly handshakes and camaraderie between the teams exemplified the spirit of intellectual discourse, as they engaged in lively rebuttals and challenged each other's perspectives. 🤝 Can't wait to see what's in store for the next destination #Jimma! 🔜🏆 🔅Round 1 pictures🔅 @safelightcommunity #InspireEmpowerTransform 🔆🔅www.safelightet.org🔅🔆 @SafeLightOfficial 👇JOIN US👇 Telegram | Instagram | LinkedIn | Facebook #DebateSphere#BishoftuDebate#CriticalThinking#SafelightetIntiatives #SDG#Transform2032 #MODEL2053 #Agenda2032

Addis Standard

@addisstandardeng · Post #21865 · 27.03.2026 г., 15:38

#In_Depth_Analysis: The #Hormuz Entanglement: Why #Ethiopia’s fuel crisis is a perfect storm of #war, #graft, and #reform While the immediate catalyst appears to be the high-stakes military escalation between the U.S., Israel, and Iran, a deeper look reveals that Ethiopia’s fuel misery is a complex entanglement. It is a “perfect storm” where geopolitical vulnerability, a domestic system rotting from within, and a painful macroeconomic experiment have collided to leave 120 million people running on empty. Until the govt can clean its own house, root out the “senior decision-makers” profiting from the black market, and navigate the treacherous waters of Middle Eastern diplomacy, the accounts emerging from #Gonder to #Jimma to #Ambo, and from #Hawassa to #Bishoftu and #Mekelle, point to an Ethiopia that will remain running on empty. It will be a country “stalled at the intersection of a distant war it cannot control and a local crisis of governance it has yet to master”... https://addisstandard.com/?p=56099