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

Резултати

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

Пребарај: #qpr3

当前筛选 #qpr3清除筛选
Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #406 · 23.08.2024 г., 07:20

Bliss - Unofficial | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 17.7 - Codename: #Pong - Released: 23/08/24 🔽 Download: [ GDrive ] (Sideload Build) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Bliss#QPR3#U ✨ Changelogs - initial build ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - gapps already included 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #417 · 31.08.2024 г., 17:24

MistOS - UNOFFICIAL | A14 | Nothing Phone (2) 📔 Details: - Version: 2.8 - Codename: #Pong - Released: 31/08/2024 🔽 Download (Recovery) : Vanilla | Gapps (PL) | Gapps (L3) ⚙️ Installation: Here 📸 Screenshots: Here 🆘 Support: Telegram 🔖 Tags : #ROM#AOSP#UnOfficial#AOSP#QPR3#U#NothingPhone2 ✍️ Changelogs: - First Signed Build ✍️ Note: - Check Screenshots for features available - GKI Kernel is prepatched with KSU (Download Manager) - Clean flashing is mandatory - Flash Gapps 🏆 Credits - Chandu for base device tree & Kernel - OC'D, Miki, Unluck & Ghost for all help - Fabian & Hellboy for PA Glyph Implementation - Testers 😎 Maintainers: @AgBKartikey 🔔 Updates: @NothingPhone2Updates 💬 Chat: @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #467 · 02.11.2024 г., 18:14

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.9.1 - Codename: #Pong - Released: 02/11/24 🔽 Download: [ Sourceforge ] (Sideload/Flash via orangefox recovery) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - Improvements to performance and system stability ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #460 · 25.10.2024 г., 12:38

Project Infinity X - Official | A14| Nothing Phone 2 (Pong) 📝 Details: - Version: v1.6 - Device: #Pong - Released: 25/10/24 ⬇️ Download: Here 📖 Changelogs: Device | Source 📔 Instructions: Here 🎄 Device tree : Here 🖼 Screenshot : Here | Here 🆘 Support: Device 🏷 Tags: #AOSP#ROM#InfinityX#U#QPR3#Official ✍️ Note: • Read changelogs • OTA available • Base firmware 2.6.0 is recommended • Dirty flash possible from previous build • Based on Qpr3 September Security Patch • Dolby Atmos available • Flash meteoric kernel for KSU support • Nik gapps recommend for vanilla version 🏆 Credits: - Chandu Dyavanapelli for DT Base - Hellboy for kernel tree - Fabian and Hellboy for Glyph Implementation 👤 Maintainer: @Ghosutox 🔔 Updates: @NothingPhone2Updates 🐙 Chat: @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #440 · 24.09.2024 г., 03:43

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.8.1 - Codename: #Pong - Released: 23/09/24 🔽 Download: [ Sourceforge ] (Sideload/Flash via orangefox recovery) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - Add Device Extras (Wireless Powershare and USB-OTG) - Improvements to performance and system stability ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #439 · 18.09.2024 г., 14:12

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.8.0 - Codename: #Pong - Released: 18/09/24 🔽 Download: [ Sourceforge ] (Sideload Build) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - switched to user build - added systemui restart in power menu - stability improvements ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #429 · 11.09.2024 г., 10:17

Project Infinity X - Official | A14| Nothing Phone 2 (Pong) 📝 Details: - Version: v1.5 - Device: #Pong - Released: 11/09/24 ⬇️ Download: Here 📖 Changelogs: Device | Source 📔 Instructions: Here 🎄 Device tree : Here 🖼 Screenshot : Here | Here 🆘 Support: Device 🏷 Tags: #AOSP#ROM#InfinityX#U#QPR3#Official ✍️ Note: • Read changelogs • Base firmware 2.6.0 is recommended • Dirty flash possible from previous build • Based on Qpr3 September Security Patch • Dolby Atmos available • Flash meteoric kernel for KSU support • Nik gapps recommend for vanilla version 🏆 Credits: - Chandu Dyavanapelli for kernel & DT Base - Fabian and Hellboy for Glyph Implementation 👤 Maintainer: @Ghosutox 🔔 Updates: @NothingPhone2Updates 🐙 Chat: @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #425 · 10.09.2024 г., 09:09

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.8.0 - Codename: #Pong - Released: 10/00/24 🔽 Download: [ Sourceforge ] (Sideload Build) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - added charging control ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboyfor Meteoric kernel - Fabian and Hellboyfor PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #416 · 31.08.2024 г., 11:58

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.7.3 - Codename: #Pong - Released: 24/08/24 🔽 Download: [ Sourceforge ] (Sideload Build) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - switch to Dolby ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #410 · 27.08.2024 г., 07:03

Project Infinity X - Official | A14| Nothing Phone 2 (Pong) 📝 Details: - Version: v1.4 - Device: #Pong - Released: 27/08/24 ⬇️ Download: Here 📔 Instructions: Here 🎄 Device tree : Here 🖼 Screenshot : Here | Here 🆘 Support: Device 🏷 Tags: #AOSP#ROM#InfinityX#U#QPR3#Official ✍️ Note: • Initial official release • Base firmware 2.6.0 is recommended • Clean flash mandatory • Based on Qpr3 August Security Patch • Dolby Atmos available • Flash meteoric kernel for KSU support • Nik gapps recommend for vanilla version 🏆 Credits: - Chandu Dyavanapelli for kernel & DT Base - Fabian and Hellboy for Glyph Implementation 👤 Maintainer: @Ghosutox 🔔 Updates: @NothingPhone2Updates 🐙 Chat: @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #407 · 23.08.2024 г., 15:18

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.7.2 - Codename: #Pong - Released: 23/08/24 🔽 Download: [ Sourceforge ] (Sideload Build) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - update to 10.7.2 ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

Nothing Phone (2) | Updates

@NothingPhone2Updates · Post #403 · 18.08.2024 г., 17:09

Project Matrixx - Official | Android 14 | Nothing Phone (2) ✍️ Details: - Version: 10.7.1 - Codename: #Pong - Released: 18/08/24 🔽 Download: [ Sourceforge ] (Sideload Build) 🆘 Support : Here ⚙️ Installation: Here 📸 Screenshots: Here ✨ Source Changelogs: Here 🔖 Tags : #ROM#AOSP#Official#Matrixx#QPR3#U ✨ Changelogs - update to 10.7.1 ✍️ Note: - Meteoric kernel is baked in with prepatched KSU - Both Gapps and Vanilla build available 🏆 Credits - Chandu for base DT - Hellboy for Meteoric kernel - Fabian for PA Glyph Implementation - Testers 😎 Maintainer : @Drishal 🔔 Updates : @NothingPhone2Updates 💬 Chat : @NothingPhone2

123•••56
ПретходнаСтраница 1 од 6Следна