В фреймворке 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
#ZEN/USDT analysis :
#ZEN is in an uptrend, forming higher highs (HHs) and higher lows (HLs) above the 200 EMA. The price is currently in a correction phase, showing a retracement to test the 200 EMA. It is advisable to wait for the price to test this zone for a long entry, as it is expected to rebound and resume its bullish momentum.
TF : 1D
Entry : $17.66
Target : $40.00
SL : $11.90