Регулярно приходится писать и ревьюить код, где используется PySide2-6.
Заметил, что в подавляющем большинстве случаев настройка создаваемых базовых виджетов происходит через методы. Думаю, всем знаком такой способ.
Простой пример с кнопкой:
button = QPushButton("Click Me")
button.setMinimumWidth(300)
button.setFlat(True)
button.setStyleSheet("font-size: 20pt")
button.setToolTip("Super Button")
button.clicked.connect(lambda: print("Button clicked"))
Но есть и альтернативный способ - настройка через свойства. Это просто ключевые аргументы конструктора класса. Хоть они и не указаны в документации как аргументы, но они есть)
Этот код делает тоже самое но с помощью Property
button = QPushButton(
"Click Me",
minimumWidth=300,
flat=True,
styleSheet="font-size: 20pt",
toolTip="Super Button",
clicked=lambda: print("Button clicked"),
)
Где это может быть полезно
▫️ Это выглядит более аккуратно и коротко, уже повод использовать
▫️ Может использоваться в заполнении лейаута, когда нам не нужно никакое другое взаимодействие с виджетом и поэтому сохранять его в переменную не требуется. Например, лейбл или кнопка.
widget = QWidget(minimumWidth=400)
layout = QHBoxLayout(widget)
layout.addWidget(QLabel("Button >", alignment=Qt.AlignRight))
layout.addWidget(QPushButton("Click Me", clicked=lambda: print("Button clicked")))
widget.show()
Либо так
widget = QWidget(minimumWidth=400)
layout = QHBoxLayout(widget)
for wd in (
QLabel("Button >", alignment=Qt.AlignRight),
QPushButton("Click Me", clicked=lambda: ...)
):
layout.addWidget(wd)
widget.show()
▫️ Можно хранить настройки в каком-то конфиге или генерировать на лету, после чего передавать как kwargs.
kwargs = {"text": "Hello " * 30, "wordWrap": True}
my_label = QLabel(**kwargs)
Как получить полный список доступных свойств?
Эта функция распечатает в терминал все свойства виджета и их текущие значения
def print_widget_properties(widget):
meta_object = widget.metaObject()
for i in range(meta_object.propertyCount()):
property_ = meta_object.property(i)
property_name = property_.name()
property_value = property_.read(widget)
print(f"{property_name}: {property_value}")
#tricks#qt
😄Practice
➖➖➖➖➖➖
🔘Practice, as a noun, can be the reality of doing something, rather than the theory.
🔜It sounded like a good plan but in practice, it was terrible.
🔜Your idea works in theory. Let's see if it works in practice.
🔘Practice can be used to describe a custom or tradition.
🔜It's common practice to tip taxi drivers and hairdressers in the UK.
🔜Shaking hands before and after a business meeting is good practice.
🔘We can also use practice to describe an activity that we do regularly.
🔜I enjoy football practice because I love football and I see my friends.
🔜I have to go now. I have band practice this evening.
#Practice👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys
After many years of inaction, Google has finally released an update for Google Keep ⚹¹ that adds the necessary text formatting functions (i.e. Rich Text Editing or WYSIWYG ⚹²), although not everything — you won’t be able to cross out text. But they are already promising to add version history, which is already something.
Btw even so, "Keep" sucks in terms of functionality and UX, but it's ads-free and fast, so...
#practice
⚹ keep.google.com
100 lines of Go code for … HTTP(S) proxy! Take a look at fast and graceful proxy service based on standard Go http server and client packages 🙂
#development#practice
https://medium.com/@mlowicki/http-s-proxy-in-golang-in-less-than-100-lines-of-code-6a51c2f2c38c
Interesting article about the bufio package in GoLang. How does it work (read, write for different data types) inside of package
#development#practice
https://medium.com/golangspec/introduction-to-bufio-package-in-golang-ad7d1877f762?source=linkShare-b636419a57de-1520074459
Writing Ч ч in cursive can be challenging, but not for you!
🔻Let's watch the video, print out the practice sheet and, shedding tears of despair, practice and move on.
❓Which other letters of the Russian alphabet make you overwhelmingly want to chuck the study of Russian overboard?
📎The pdf file is in the comments
▶️Hard sign tutorial
▶️Сursive letters
#practice
#cursive
😎RCR | Support | Boost
Writing the hard sign (ъ) in cursive can be challenging, but not for us, right?
🔻Let's watch the video, print out the practice sheet and, shedding tears of despair, practise and move on.
❓Which other letters of the Russian alphabet make you overwhelmingly want to chuck the study of Russian overboard?
📎 file is in the comments
▶️Сursive letters
#practice
#cursive
😎 Stay with @learnRCRussian
#Practice
#NUUStudents
⚡️"Yangi O'zbekiston" universitetining bir guruh 1-bosqich talabalari "Inno Technopark"ga tashrif buyurib, uning sharoitlari va imkoniyatlari bilan tanishishgani shaxsan meni quvontirdi.
Negaki, 1-bosqichdanoq amaliy jarayonlarga kirishishlari, kelajakdagi loyihalarda hamkorlik qilishga kelishuvlari💡talabalar uchun juda ham katta maktab bo'lib xizmat qiladi🔥
Izlanish va harakatdan to'xtamang, aziz talabalar❗️
___
⚡️I was personally pleased that a group of first-year students of the "New Uzbekistan" University visited Inno Technopark and gotacquainted with its conditions and opportunities.
Because from the first-year, entering practical processes, dealing to cooperate in future projects will serve as a foundation for students🔥
Bizni kuzatishda davom eting👇
Telegram| Instagram| Facebook| Twitter