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

Резултати

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

Пребарај: #chessio

当前筛选 #chessio清除筛选
Chessio News EN 🇬🇧

@chessio_EN · Post #128 · 09.03.2025 г., 22:04

📢 Important Chessio Update 💔 This is probably the hardest yet message we are sharing with you, our lovely Chessio Community. Before we explain further, here’s the honest truth: All this time, we’ve been running Chessio entirely from our own pockets - covering infrastructure, prize tournaments, drops, and more. We developed and maintained the platform alongside our main jobs, often sacrificing valuable family time. After much thought, we’ve decided to pause Chessio development at the end of March 2025. Additionally, we have stopped mining because we can’t promise what we aren’t sure about. We didn't receive support from the TON Foundation, even though we were among the top 10 projects out of over 1,000 in the Summer Hackathon. For example, the marketing campaign that was part of our winning prize hasn’t been launched yet. Our final drop will have a place for top 100 players of the SION leaderboard where we share 1000 USDT proportionally between players. If you are in the top 100 list, make sure you have your wallet connected. We have always been with you, and we truly appreciate your support. We hope for your understanding during these challenging times. What’s Next? Chessio will remain online on minimal hardware so you can still play games with friends and host tournaments, though it will be running on a minimal hardware, and we may need to turn off games with bots and server analysis as it eats infrastructure resources. We will be around, but the development will be on hold. But we are not giving up. Something even more exciting is coming! So stay with us and stay subscribed!🔥 Thank you for being part of this incredible Chessio and SION journey. We look forward to meeting you on the next page 😉 ❤️🧡💚💖🤍 Your Chessio Team! #Chessio#ThankYou#SeeYouSoon