В фреймворке PyQt (и PySide тоже) часто встречается настройка чего-либо с помощью так называемых флагов.
widget.setWindowFlags(Qt.Window)
Взаимодействие нескольких флагов делается с помощью бинарных (или побитовых) операторов.
Несколько флагов можно указать с помощью оператора "|"
list_item.setFlags(Qt.ItemIsSelectable | Qt.ItemIsEnabled)
исключить флаг из уже имеющегося набора можно так
list_item.setFlags(list_item.flags() ^ Qt.ItemIsEnabled)
Добавить новый флаг к имеющимся можно так
list_item.setFlags(list_item.flags() | Qt.ItemIsEnabled)
А проверка наличия делается так
is_enabled = item.flags() & Qt.ItemIsEnabled > 0
Почему именно так? Всё дело в том как именно работают побитовые операторы. Но об этом в следующем посте.
#qt
🌍 Nearly half of all quinoa grown worldwide comes from just two regions in the Andes Mountains of Bolivia and Peru, where unique high-altitude conditions make large-scale farming possible. ✨
#agriculture⚡#Andes⚡#crops⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels
🌍 Bananas are the world’s most-exported fruit, yet nearly all commercial bananas are genetic clones. This makes plantations worldwide vulnerable to the same diseases spreading rapidly. ✨
#agriculture⚡#crops⚡#food⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌍 Wheat is grown on more land than any other crop worldwide. Over 215 million hectares—from Russian steppes to Canadian prairies—are covered with wheat fields each year. ✨
#agriculture⚡#crops⚡#food⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography🌍
🌍 Palm oil plantations now cover over 19 million hectares worldwide, mainly in Indonesia and Malaysia. This rapid expansion has made Southeast Asia the top global supplier of edible vegetable oil. ✨
#agriculture⚡#crops⚡#landuse⚡#geography⚡#nature⚡#earth
👉subscribe Amazing Geography
👉more Channels