Symbol: _HasFlags
headers/private/shared/IconButton.h
100
bool _HasFlags(uint32 flags) const;
src/apps/icon-o-matic/generic/gui/IconButton.cpp
120
if (_HasFlags(STATE_PRESSED) || _HasFlags(STATE_FORCE_PRESSED))
src/apps/icon-o-matic/generic/gui/IconButton.cpp
135
if (_HasFlags(STATE_PRESSED) || _HasFlags(STATE_FORCE_PRESSED))
src/apps/icon-o-matic/generic/gui/IconButton.cpp
170
if (_HasFlags(STATE_ENABLED)/* && !_HasFlags(STATE_FORCE_PRESSED)*/) {
src/apps/icon-o-matic/generic/gui/IconButton.cpp
187
if (_HasFlags(STATE_ENABLED) && _HasFlags(STATE_PRESSED) && Bounds().Contains(where))
src/apps/icon-o-matic/generic/gui/IconButton.cpp
204
if (!buttons && _HasFlags(STATE_PRESSED)) {
src/apps/icon-o-matic/generic/gui/IconButton.cpp
208
if (buttons && !_HasFlags(STATE_TRACKING))
src/apps/icon-o-matic/generic/gui/IconButton.cpp
211
&& _HasFlags(STATE_ENABLED))
src/apps/icon-o-matic/generic/gui/IconButton.cpp
215
if (_HasFlags(STATE_TRACKING)) {
src/apps/icon-o-matic/generic/gui/IconButton.cpp
311
return _HasFlags(STATE_FORCE_PRESSED);
src/apps/icon-o-matic/generic/gui/IconButton.cpp
509
return (IsEnabled() && (_HasFlags(STATE_INSIDE) || _HasFlags(STATE_TRACKING))
src/apps/icon-o-matic/generic/gui/IconButton.cpp
510
|| _HasFlags(STATE_FORCE_PRESSED));
src/apps/icon-o-matic/generic/gui/IconButton.cpp
546
return _HasFlags(STATE_PRESSED) ? B_CONTROL_ON : B_CONTROL_OFF;
src/apps/icon-o-matic/generic/gui/IconButton.cpp
563
return _HasFlags(STATE_ENABLED) ? B_CONTROL_ON : B_CONTROL_OFF;
src/apps/icon-o-matic/generic/gui/IconButton.cpp
99
if (_HasFlags(STATE_PRESSED) || _HasFlags(STATE_FORCE_PRESSED)) {
src/apps/icon-o-matic/generic/gui/IconButton.h
105
bool _HasFlags(uint32 flags) const;
src/kits/shared/IconButton.cpp
106
if (_HasFlags(STATE_PRESSED) || _HasFlags(STATE_FORCE_PRESSED))
src/kits/shared/IconButton.cpp
136
|| _HasFlags(STATE_FORCE_PRESSED);
src/kits/shared/IconButton.cpp
183
if (IsEnabled() && _HasFlags(STATE_PRESSED)
src/kits/shared/IconButton.cpp
203
if (!buttons && _HasFlags(STATE_PRESSED)) {
src/kits/shared/IconButton.cpp
292
return _HasFlags(STATE_FORCE_PRESSED);
src/kits/shared/IconButton.cpp
647
return _HasFlags(STATE_INSIDE);
src/kits/shared/IconButton.cpp
839
if (_HasFlags(flags) != set) {