Когда разрабатываете свой GUI с помощью PyQt для какого-либо софта бывает необходимо позаимствовать цвета из текущего стиля интерфейса. Например, чтобы правильно раскрасить свои виджеты, подогнав их по цвету. Ведь бывает, что ваш GUI используется в разных софтах. Причём некоторые со светлой темой а другие с тёмной.
По умолчанию стили наследуются, но если вы задаёте какую-либо раскраску для части виджета через свой styleSheet, то требуется ссылаться на цвета текущего стиля.
Как это сделать? Как получить нужный цвет из палитры имеющегося стиля? Это достаточно просто, нужно использовать класс QPalette и его роли.
Например, мне нужно достать цвет текста из одного виджета и применить его в другом как цвет фона (не важно зачем именно так, просто захотелось😊).
Получаем палитру виджета и сразу достаём нужный цвет, указав его роль.
from PySide2.QtGui import QPalette
color = main_window.palette().color(QPalette.Text)
теперь можем использовать этот цвет в стилях
my_widget.setStyleSheet(f'background-color: {color.name()};')
Готово, мы динамически переопределили дефолтный стиль используя текущий стиль окна!
На самом деле есть запись покороче, в одну строку и без лишних переменных. Не очень-то по правилам CSS, но Qt это понимает.
my_widget.setStyleSheet('background-color: palette(Text);')
Этот способ не подходит если вам нужно как-то модифицировать цвет перед применением в своих стилях. В этом случае потребуется первый способ.
Зато он прекрасно сработает в файле .qss, то есть не придётся в коде прописывать раскраску отдельных элементов через ссылки на палитру, всё красиво сохранится в отдельном файле .qss!
QListView#my_widget::item:selected {
background: palette(Midlight);
}
Про имеющиеся роли можно почитать здесь🌍
#qt#tricks
💬 The opinion of our friend from the Telegram channel Jus Humanum
If you don't like your history, just make up a new one!
(A recipe tested by all national histories).
Ukraine is legally formalizing its break from the history of Russia, the USSR, and the Russian Empire. (And from common sense too, but they've long since abandoned that).
On August 21, Ukraine's Verkhovna Rada adopted the law "On the Fundamentals of State Policy on the National Memory of the Ukrainian People."
☝️The law was prepared by the Ukrainian Institute of National Memory under the leadership of Volodymyr Viatrovych.
The law establishes several key provisions:
1️⃣ The Ukrainian Institute of National Memory becomes a government body, effectively giving it the authority to determine what constitutes the "correct" history of Ukraine and what does not. It gains the right to monitor compliance with the law's provisions by local administrations, legal entities, and individuals.
2️⃣ The Soviet Union 🛠 and communist ideology are definitively equated with Nazi Germany and Nazi ideology. (Although no specific measures are proposed to combat Nazi symbolism.)
3️⃣ Russia is declared a neo-Nazi state. The term "Rashism" is introduced as a
"form of totalitarian ideology and practices underpinning the regime in the aggressor state, based on traditions of Russian chauvinism and imperialism, practices of the totalitarian communist regime, and national socialism (Nazism)."
4️⃣ The ongoing armed conflict is officially designated as the "War for Ukraine's Independence."
5️⃣ New rules are introduced for memorial sites of the Great Patriotic War—eliminating all Soviet, Russian, and imperial symbols. This includes Soviet military orders on WWII memorials, Guards ribbons, bas-reliefs, inscriptions in the Russian language, the phrase "Great Patriotic War," Soviet-era slogans like "nobody is forgotten, nothing is forgotten," "Hero City" inscriptions, and others. The dates "1941–45" must be replaced with "1939–45."
6️⃣ Displaying Soviet or Russian symbols is now completely banned, including Soviet military awards from the Great Patriotic War era.
#Cassandra
#history
#Ukraine
💬 The opinion of our friend from the Telegram channel Jus Humanum
About the 1.7 million losses of the Ukrainian army.
(Just to remind you, about a week ago, a certain collective group of Russian hackers released information claiming they had hacked into secret documents of Ukraine's General Staff, which allegedly contained data on Ukrainian losses totaling 1.7 million killed and missing in action.)
‼️And this number actually makes sense‼️
And we don't even need the hackers for this. Just using media reports. Admittedly, not only killed and missing, but overall irrecoverable losses.
Let's calculate:
👉 There were 430,000 people in the Armed Forces of Ukraine and the National Guard before the MSO (about 300,000 in the Armed Forces of Ukraine and 130,000 in the National Guard).
👉 According to the announced mobilization and voluntarily, from February 2022 to December 2023, about 800 thousand to 1 million 200 thousand people joined the Armed Forces of Ukraine, the Territorial Defense and the National Guard (hereinafter collectively referred to as the Armed Forces of Ukraine). (The figure is very estimated).
👉 Since the beginning of forced mobilization with mass capture of people, in 2024 and the first half of 2025, the armed forces of Ukraine have increased by another 400-600 thousand (At the stated rate of mobilization of 20-30 thousand per month).
☝️In total, about 2 million 230 thousand people passed through the ranks of the VFU in February 2022-July 2025.
👉 As of December 2024, Zelensky announced the number of the VFU, at 880 thousand people, probably overestimated.
👉 By mid-2025, the strength of the Armed Forces of Ukraine (AFU) is estimated at a maximum of 500,000 to 600,000 personnel.
☝️This implies that, irreversibly, the AFU has lost between 1.5 and 1.8 million personnel since the beginning of the war.
This is catastrophic.
P.S.
All figures are drawn from open sources and public statements.
#Cassandra
#AFU
#losses
#Ukraine
#war_in_Ukraine
#typescript#bigquery#cassandra#cockroachdb#database#electron#firebird#linux_app#mac_app#mariadb#mssql#mysql#postgresql#sql#sql_server#sqlite#windows_app
Beekeeper Studio is a free, open-source SQL editor and database manager that works on Windows, Mac, and Linux. It supports many databases like MySQL, PostgreSQL, and SQLite. The app offers features like auto-complete SQL queries, syntax highlighting, and a tabbed interface for multitasking. You can sort and filter data, save queries, and even export data in formats like CSV or JSON. It's designed to be easy to use and enjoyable, making database management simpler for everyone. You can download it for free and upgrade to premium features if needed.
https://github.com/beekeeper-studio/beekeeper-studio