В фреймворке 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
The overall goal of Infection Prevention & Control is to maintain an environment of care that minimises risks of infection for patients, staff & visitors.
These #IPC guidelines must be practised by all #HCWs in public and private primary, secondary & tertiary healthcare facilities.
Read more in the Nigerian Manual of Infection Prevention and Control:
https://ncdc.gov.ng/themes/common/docs/protocols/296_1649340294.pdf
The overall goal of Infection Prevention & Control is to maintain an environment of care that minimises risks of infection for patients, staff & visitors.
These #IPC guidelines must be practised by all #HCWs in public and private primary, secondary & tertiary healthcare facilities.
Read more in the Nigerian Manual of Infection Prevention and Control:
https://ncdc.gov.ng/themes/common/docs/protocols/296_1649340294.pdf
The overall goal of Infection Prevention & Control is to maintain an environment of care that minimises risks of infection for patients, staff & visitors
This #IPC guideline for viral haemorrhagic fevers must be practised by all #HCWs in public & private primary, secondary & tertiary healthcare facilities.
🔗
https://ncdc.gov.ng/themes/common/docs/protocols/341_1707300274.pdf
#TakeResponsibility to #StaySafe