В фреймворке 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
😄Paint
➖➖➖➖➖➖
🔘 The noun paint refers to coloured liquid that makes things look nice. The verb has different meanings. It can mean to put paint on something with a brush.
🔜 I'm going to paint this wall yellow, and this one white.
🔜The table was painted green.
🔘 Paint can also mean to make a picture of something, using paint.
🔜 She painted a portrait of me, it looks great.
🔜 The artist painted the beautiful landscape.
🔘 Paint can also mean to apply a liquid (not just paint) to something with a brush.
🔜 Paint the pastry with egg before putting it in the oven.
🔜 Paint the wood preserver on the fence to protect it.
#Paint👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys
😄Paint
➖➖➖➖➖➖
🔘 The noun paint refers to coloured liquid that makes things look nice. The verb has different meanings. It can mean to put paint on something with a brush.
🔜 I'm going to paint this wall yellow, and this one white.
🔜The table was painted green.
🔘 Paint can also mean to make a picture of something, using paint.
🔜 She painted a portrait of me, it looks great.
🔜 The artist painted the beautiful landscape.
🔘 Paint can also mean to apply a liquid (not just paint) to something with a brush.
🔜 Paint the pastry with egg before putting it in the oven.
🔜 Paint the wood preserver on the fence to protect it.
#Paint👨🏫@America
➖➖➖➖➖➖➖➖➖➖➖➖
🆕 Crypto News @Money
😁 Crypto Game @Egame
🇺🇸 US News @America
🇯🇵 Japan News @Japan
🇦🇪 UAE News @Dubai
▶️ Popular Movies @Videos
😜 Best Funny Video @Funnys