Symbol: B_CONTROL_ON
src/add-ons/control_look/BeControlLook/BeControlLook.cpp
98
case B_CONTROL_ON:
src/add-ons/disk_systems/intel/PrimaryParameterEditor.cpp
51
fActiveCheckBox->SetValue(active ? B_CONTROL_ON : B_CONTROL_OFF);
src/add-ons/disk_systems/intel/PrimaryParameterEditor.cpp
83
if (fActiveCheckBox->Value() == B_CONTROL_ON)
src/add-ons/kernel/file_systems/netfs/authentication_server/AuthenticationPanel.cpp
203
*keep = fKeepUsingCB->Value() == B_CONTROL_ON;
src/add-ons/mail_daemon/inbound_filters/spam_filter/SpamFilterConfig.cpp
125
fSubjectHintCheckBox->Value() == B_CONTROL_ON);
src/add-ons/mail_daemon/inbound_filters/spam_filter/SpamFilterConfig.cpp
129
fAutoTrainingCheckBox->Value() == B_CONTROL_ON);
src/add-ons/mail_daemon/inbound_filters/spam_filter/SpamFilterConfig.cpp
133
fNoWordsMeansSpamCheckBox->Value() == B_CONTROL_ON);
src/add-ons/mail_daemon/inbound_protocols/imap/ConfigView.cpp
68
((BControl*)(FindView("leave_mail_on_server")))->SetValue(B_CONTROL_ON);
src/add-ons/screen_savers/ifs/IFSSaver.cpp
250
fAdditive = fAdditiveCB->Value() == B_CONTROL_ON;
src/add-ons/translators/avif/ConfigView.cpp
84
fLosslessCheckBox->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
425
fAlwaysRGB32->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
431
fPhotoshopCMYK->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
437
fShowErrorBox->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
536
fProgress->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
542
fSmallerFile->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
548
fOptimizeColors->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg/JPEGTranslator.cpp
556
fGrayAsRGB24->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg2000/JPEG2000Translator.cpp
572
fGrayAsRGB32->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg2000/JPEG2000Translator.cpp
636
fGrayAsRGB24->SetValue(B_CONTROL_ON);
src/add-ons/translators/jpeg2000/JPEG2000Translator.cpp
642
fCodeStreamOnly->SetValue(B_CONTROL_ON);
src/add-ons/translators/tga/TGAView.cpp
110
bool ignoreAlpha = fpchkIgnoreAlpha->Value() == B_CONTROL_ON;
src/add-ons/translators/tga/TGAView.cpp
117
bool saveWithRLE = fpchkRLE->Value() == B_CONTROL_ON;
src/add-ons/translators/webp/ConfigView.cpp
128
fPreprocessingCheckBox->SetValue(B_CONTROL_ON);
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
449
fGroupByName ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/debuganalyzer/gui/AbstractWaitObjectsPage.h
503
fGroupByName = fGroupByNameCheckBox->Value() == B_CONTROL_ON;
src/apps/debuganalyzer/gui/thread_window/ActivityPage.cpp
375
fRunTimeCheckBox->CheckBox()->SetValue(B_CONTROL_ON);
src/apps/debuganalyzer/gui/thread_window/ActivityPage.cpp
500
bool enabled = checkBox->CheckBox()->Value() == B_CONTROL_ON;
src/apps/debugger/user_interface/gui/team_settings_window/ExceptionStopConfigView.cpp
172
fExceptionThrown->SetValue(B_CONTROL_ON);
src/apps/debugger/user_interface/gui/team_settings_window/ExceptionStopConfigView.cpp
83
== B_CONTROL_ON);
src/apps/debugger/user_interface/gui/team_settings_window/ImageStopConfigView.cpp
114
fStopOnImageLoad->Value() == B_CONTROL_ON,
src/apps/debugger/user_interface/gui/team_settings_window/ImageStopConfigView.cpp
122
fStopOnImageLoad->Value() == B_CONTROL_ON,
src/apps/debugger/user_interface/gui/team_settings_window/ImageStopConfigView.cpp
148
fStopOnImageLoad->Value() == B_CONTROL_ON,
src/apps/debugger/user_interface/gui/team_settings_window/ImageStopConfigView.cpp
317
fStopOnLoadEnabled ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
143
fStdoutEnabled->SetValue(B_CONTROL_ON);
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
144
fStderrEnabled->SetValue(B_CONTROL_ON);
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
153
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
155
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
162
bool value = fStdoutEnabled->Value() == B_CONTROL_ON;
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
166
value = fStderrEnabled->Value() == B_CONTROL_ON;
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
235
if (info->fd == 1 && fStdoutEnabled->Value() != B_CONTROL_ON)
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
237
else if (info->fd == 2 && fStderrEnabled->Value() != B_CONTROL_ON)
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
95
if (fd == 1 && fStdoutEnabled->Value() != B_CONTROL_ON)
src/apps/debugger/user_interface/gui/team_window/ConsoleOutputView.cpp
97
else if (fd == 2 && fStderrEnabled->Value() != B_CONTROL_ON)
src/apps/debugger/user_interface/gui/utility_windows/BreakpointEditWindow.cpp
138
fConditionRadio->SetValue(B_CONTROL_ON);
src/apps/debugger/user_interface/gui/utility_windows/BreakpointEditWindow.cpp
141
fAlwaysRadio->SetValue(B_CONTROL_ON);
src/apps/debugger/user_interface/gui/utility_windows/BreakpointEditWindow.cpp
83
if (fConditionRadio->Value() == B_CONTROL_ON) {
src/apps/deskbar/PreferencesWindow.cpp
498
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/deskbar/PreferencesWindow.cpp
503
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/deskbar/PreferencesWindow.cpp
508
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/expander/ExpanderPreferences.cpp
178
fAutoExpand->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
183
fCloseWindow->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
190
fSameDest->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
194
fDestUse->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
200
fLeaveDest->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
216
fOpenDest->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
222
fAutoShow->SetValue(B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
231
fAutoExpand->Value() == B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
233
fCloseWindow->Value() == B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
235
(fSameDest->Value() == B_CONTROL_ON) ? 0x63
src/apps/expander/ExpanderPreferences.cpp
236
: ((fLeaveDest->Value() == B_CONTROL_ON) ? 0x66 : 0x65));
src/apps/expander/ExpanderPreferences.cpp
239
fOpenDest->Value() == B_CONTROL_ON);
src/apps/expander/ExpanderPreferences.cpp
241
fAutoShow->Value() == B_CONTROL_ON);
src/apps/expander/ExpanderWindow.cpp
331
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/expander/ExpanderWindow.cpp
584
if (fShowContents->Value() == B_CONTROL_ON) {
src/apps/expander/ExpanderWindow.cpp
897
fShowContents->SetValue(B_CONTROL_ON);
src/apps/fontdemo/ControlView.cpp
108
fAliasingCheckBox->SetValue(B_CONTROL_ON);
src/apps/haikudepot/ui/RatePackageWindow.cpp
310
fRatingDeterminateCheckBox->SetValue(B_CONTROL_ON);
src/apps/haikudepot/ui/RatePackageWindow.cpp
322
fRatingDeterminate = fRatingDeterminateCheckBox->Value() == B_CONTROL_ON;
src/apps/haikudepot/ui/RatePackageWindow.cpp
330
fRatingActive = value == B_CONTROL_ON;
src/apps/haikudepot/ui/RatePackageWindow.cpp
486
fRatingDeterminateCheckBox->SetValue(fRatingDeterminate ? B_CONTROL_ON : B_CONTROL_OFF);
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/installer/PackageViews.cpp
258
? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/mediaplayer/interface/PlayPauseButton.cpp
46
if (Value() == B_CONTROL_ON)
src/apps/mediaplayer/interface/PlayPauseButton.cpp
51
if (Value() == B_CONTROL_ON)
src/apps/mediaplayer/interface/PlayPauseButton.cpp
68
if (Value() == B_CONTROL_ON) {
src/apps/mediaplayer/interface/PlayPauseButton.cpp
75
|| (fPlaybackState == kPaused && Value() == B_CONTROL_ON));
src/apps/mediaplayer/interface/PlayPauseButton.cpp
78
|| (fPlaybackState == kPlaying && Value() == B_CONTROL_ON));
src/apps/mediaplayer/interface/SymbolButton.cpp
52
if (Value() == B_CONTROL_ON)
src/apps/mediaplayer/interface/SymbolButton.cpp
57
if (Value() == B_CONTROL_ON)
src/apps/mediaplayer/settings/SettingsWindow.cpp
311
fSettings.autostart = fAutostartCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
313
= fCloseWindowMoviesCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
315
= fCloseWindowSoundsCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
316
fSettings.loopMovie = fLoopMoviesCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
317
fSettings.loopSound = fLoopSoundsCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
319
fSettings.useOverlays = fUseOverlaysCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
320
fSettings.scaleBilinear = fScaleBilinearCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
322
= fScaleFullscreenControlsCB->Value() == B_CONTROL_ON;
src/apps/mediaplayer/settings/SettingsWindow.cpp
328
if (fFullVolumeBGMoviesRB->Value() == B_CONTROL_ON) {
src/apps/mediaplayer/settings/SettingsWindow.cpp
331
} else if (fHalfVolumeBGMoviesRB->Value() == B_CONTROL_ON) {
src/apps/mediaplayer/settings/SettingsWindow.cpp
334
} else if (fMutedVolumeBGMoviesRB->Value() == B_CONTROL_ON) {
src/apps/midiplayer/MidiPlayerWindow.cpp
239
fShowScopeCheckBox->SetValue(B_CONTROL_ON);
src/apps/midiplayer/MidiPlayerWindow.cpp
300
fShowScopeCheckBox->SetValue(fScopeEnabled ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/poorman/PoorManLoggingView.h
24
fLogConsole->SetValue(B_CONTROL_ON);
src/apps/poorman/PoorManLoggingView.h
31
return (fLogConsole->Value() == B_CONTROL_ON);
src/apps/poorman/PoorManLoggingView.h
37
fLogFile->SetValue(B_CONTROL_ON);
src/apps/poorman/PoorManLoggingView.h
44
return (fLogFile->Value() == B_CONTROL_ON);
src/apps/poorman/PoorManSiteView.h
24
fSendDir->SetValue(B_CONTROL_ON);
src/apps/poorman/PoorManSiteView.h
31
return (fSendDir->Value() == B_CONTROL_ON);
src/apps/pulse/CPUButton.cpp
36
SetValue(B_CONTROL_ON);
src/apps/pulse/ConfigView.cpp
119
fActiveButton->SetValue(B_CONTROL_ON);
src/apps/pulse/ConfigView.cpp
98
fActiveButton->SetValue(B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
164
fAreaSelect->SetValue(B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
166
fActiveWindow->SetValue(B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
168
fWholeScreen->SetValue(B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
175
fWindowBorder->SetValue(B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
180
fShowCursor->SetValue(B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
315
fIncludeBorder = (fWindowBorder->Value() == B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
322
fIncludeCursor = (fShowCursor->Value() == B_CONTROL_ON);
src/apps/screenshot/ScreenshotWindow.cpp
438
fAreaSelect->SetValue(B_CONTROL_ON);
src/apps/showimage/PrintOptionsWindow.cpp
113
button->SetValue(selected ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/showimage/ShowImageWindow.cpp
1037
bool force = (message->FindInt32("be:value") == B_CONTROL_ON);
src/apps/soundrecorder/RecorderWindow.cpp
589
if (fUpDownButton->Value() == B_CONTROL_ON) {
src/apps/soundrecorder/UpDownButton.cpp
13
fLastValue(B_CONTROL_ON)
src/apps/soundrecorder/UpDownButton.cpp
71
SetValue(Value() == B_CONTROL_ON ? B_CONTROL_OFF : B_CONTROL_ON);
src/apps/soundrecorder/UpDownButton.cpp
94
SetValue(B_CONTROL_ON);
src/apps/stylededit/FindWindow.cpp
140
message.AddBool("casesens", fCaseSensBox->Value() == B_CONTROL_ON);
src/apps/stylededit/FindWindow.cpp
141
message.AddBool("wrap", fWrapBox->Value() == B_CONTROL_ON);
src/apps/stylededit/FindWindow.cpp
142
message.AddBool("backsearch", fBackSearchBox->Value() == B_CONTROL_ON);
src/apps/stylededit/FindWindow.cpp
71
fCaseSensBox->SetValue(caseState ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/stylededit/FindWindow.cpp
72
fWrapBox->SetValue(wrapState ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/stylededit/FindWindow.cpp
73
fBackSearchBox->SetValue(backState ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/stylededit/ReplaceWindow.cpp
124
fWrapBox->SetValue(fUIchange ? B_CONTROL_OFF : B_CONTROL_ON);
src/apps/stylededit/ReplaceWindow.cpp
188
message.AddBool("casesens", fCaseSensBox->Value() == B_CONTROL_ON);
src/apps/stylededit/ReplaceWindow.cpp
189
message.AddBool("wrap", fWrapBox->Value() == B_CONTROL_ON);
src/apps/stylededit/ReplaceWindow.cpp
190
message.AddBool("backsearch", fBackSearchBox->Value() == B_CONTROL_ON);
src/apps/stylededit/ReplaceWindow.cpp
191
message.AddBool("allwindows", fAllWindowsBox->Value() == B_CONTROL_ON);
src/apps/stylededit/ReplaceWindow.cpp
89
fCaseSensBox->SetValue(caseState ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/stylededit/ReplaceWindow.cpp
90
fWrapBox->SetValue(wrapState ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/stylededit/ReplaceWindow.cpp
91
fBackSearchBox->SetValue(backState ? B_CONTROL_ON : B_CONTROL_OFF);
src/apps/terminal/FindWindow.cpp
126
fFindLabel->SetEnabled(fTextRadio->Value() == B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
149
if (fTextRadio->Value() == B_CONTROL_ON) {
src/apps/terminal/FindWindow.cpp
158
message.AddBool("usetext", fTextRadio->Value() == B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
159
message.AddBool("forwardsearch", fForwardSearchBox->Value() == B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
160
message.AddBool("matchcase", fMatchCaseBox->Value() == B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
161
message.AddBool("matchword", fMatchWordBox->Value() == B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
85
useSelection->SetValue(B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
87
fTextRadio->SetValue(B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
90
fForwardSearchBox->SetValue(B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
93
fMatchCaseBox->SetValue(B_CONTROL_ON);
src/apps/terminal/FindWindow.cpp
96
fMatchWordBox->SetValue(B_CONTROL_ON);
src/apps/text_search/GrepWindow.cpp
660
fShowLinesCheckbox->SetValue(B_CONTROL_ON);
src/apps/webpositive/AuthenticationPanel.cpp
133
m_hidePasswordCheckBox->SetValue(B_CONTROL_ON);
src/apps/webpositive/AuthenticationPanel.cpp
213
== B_CONTROL_ON;
src/apps/webpositive/AuthenticationPanel.cpp
87
m_hidePasswordCheckBox->Value() == B_CONTROL_ON);
src/apps/webpositive/BrowserWindow.cpp
2544
button->SetValue(B_CONTROL_ON);
src/apps/webpositive/BrowserWindow.cpp
294
if (Value() == B_CONTROL_ON && fOverCloseRect) {
src/apps/webpositive/SettingsWindow.cpp
386
fShowTabsIfOnlyOnePage->SetValue(B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
401
fShowHomeButton->SetValue(B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
506
fUseProxyCheckBox->SetValue(B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
527
fUseProxyAuthCheckBox->SetValue(B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
600
canApply = canApply || ((fShowTabsIfOnlyOnePage->Value() == B_CONTROL_ON)
src/apps/webpositive/SettingsWindow.cpp
604
(fAutoHideInterfaceInFullscreenMode->Value() == B_CONTROL_ON)
src/apps/webpositive/SettingsWindow.cpp
609
(fAutoHidePointer->Value() == B_CONTROL_ON)
src/apps/webpositive/SettingsWindow.cpp
612
canApply = canApply || ((fShowHomeButton->Value() == B_CONTROL_ON)
src/apps/webpositive/SettingsWindow.cpp
653
canApply = canApply || ((fUseProxyCheckBox->Value() == B_CONTROL_ON)
src/apps/webpositive/SettingsWindow.cpp
662
canApply = canApply || ((fUseProxyAuthCheckBox->Value() == B_CONTROL_ON)
src/apps/webpositive/SettingsWindow.cpp
685
fShowTabsIfOnlyOnePage->Value() == B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
687
fAutoHideInterfaceInFullscreenMode->Value() == B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
689
fAutoHidePointer->Value() == B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
691
fShowHomeButton->Value() == B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
711
fUseProxyCheckBox->Value() == B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
717
fUseProxyAuthCheckBox->Value() == B_CONTROL_ON);
src/apps/webpositive/SettingsWindow.cpp
733
if (fUseProxyCheckBox->Value() == B_CONTROL_ON) {
src/apps/webpositive/SettingsWindow.cpp
734
if (fUseProxyAuthCheckBox->Value() == B_CONTROL_ON) {
src/apps/webpositive/SettingsWindow.cpp
918
bool useProxy = fUseProxyCheckBox->Value() == B_CONTROL_ON;
src/apps/webpositive/SettingsWindow.cpp
922
bool useProxyAuth = useProxy && fUseProxyAuthCheckBox->Value() == B_CONTROL_ON;
src/apps/webpositive/tabview/TabManager.cpp
185
if (!IsEnabled() || (Value() == B_CONTROL_ON)
src/apps/webpositive/tabview/TabManager.cpp
193
SetValue(B_CONTROL_ON);
src/bin/mail_utils/spamdbm.cpp
5390
*m_BulkModeSelectedPntr = (ControlPntr->Value() == B_CONTROL_ON);
src/bin/mail_utils/spamdbm.cpp
6868
TempBool = (m_IgnorePreviousClassCheckboxPntr->Value() == B_CONTROL_ON);
src/bin/mail_utils/spamdbm.cpp
6887
TempBool = (m_ServerModeCheckboxPntr->Value() == B_CONTROL_ON);
src/bin/mail_utils/spamdbm.cpp
6931
m_ServerModeCachedValue ? B_CONTROL_ON : B_CONTROL_OFF);
src/bin/mail_utils/spamdbm.cpp
6985
m_IgnorePreviousClassCachedValue ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/interface/Button.cpp
186
bool wasPressed = Value() == B_CONTROL_ON;
src/kits/interface/Button.cpp
188
SetValue(wasPressed ? B_CONTROL_OFF : B_CONTROL_ON);
src/kits/interface/Button.cpp
191
SetValue(B_CONTROL_ON);
src/kits/interface/Button.cpp
210
SetValue(pressed ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/interface/Button.cpp
212
if ((Value() == B_CONTROL_ON) != inside)
src/kits/interface/Button.cpp
213
SetValue(inside ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/interface/Button.cpp
220
_Flag(FLAG_WAS_PRESSED) ? B_CONTROL_OFF : B_CONTROL_ON);
src/kits/interface/Button.cpp
248
SetValue(B_CONTROL_ON);
src/kits/interface/Button.cpp
389
SetValue(pressed ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/interface/Button.cpp
391
if ((Value() == B_CONTROL_ON) != inside)
src/kits/interface/Button.cpp
392
SetValue(inside ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/interface/Button.cpp
405
SetValue(_Flag(FLAG_WAS_PRESSED) ? B_CONTROL_OFF : B_CONTROL_ON);
src/kits/interface/CheckBox.cpp
356
case B_CONTROL_ON:
src/kits/interface/CheckBox.cpp
360
value = B_CONTROL_ON;
src/kits/interface/CheckBox.cpp
548
return B_CONTROL_ON;
src/kits/interface/CheckBox.cpp
550
return fPartialToOff ? B_CONTROL_OFF : B_CONTROL_ON;
src/kits/interface/CheckBox.cpp
551
case B_CONTROL_ON:
src/kits/interface/Control.cpp
271
SetValue(Value() ? B_CONTROL_OFF : B_CONTROL_ON);
src/kits/interface/HaikuControlLook.cpp
86
case B_CONTROL_ON:
src/kits/interface/PictureButton.cpp
195
if (Value() == B_CONTROL_ON)
src/kits/interface/PictureButton.cpp
205
if (Value() == B_CONTROL_ON)
src/kits/interface/PictureButton.cpp
233
SetValue(B_CONTROL_ON);
src/kits/interface/PictureButton.cpp
237
if (Value() == B_CONTROL_ON)
src/kits/interface/PictureButton.cpp
240
SetValue(B_CONTROL_ON);
src/kits/interface/PictureButton.cpp
263
SetValue(B_CONTROL_ON);
src/kits/interface/PictureButton.cpp
265
if (Value() == B_CONTROL_ON)
src/kits/interface/PictureButton.cpp
268
SetValue(B_CONTROL_ON);
src/kits/interface/PictureButton.cpp
280
if (Value() == B_CONTROL_ON) {
src/kits/interface/PictureButton.cpp
301
SetValue(B_CONTROL_ON);
src/kits/interface/RadioButton.cpp
145
SetValue(B_CONTROL_ON);
src/kits/interface/RadioButton.cpp
172
SetValue(B_CONTROL_ON);
src/kits/interface/RadioButton.cpp
238
ASSERT(Value() == B_CONTROL_ON);
src/kits/interface/RadioButton.cpp
311
if (Value() != B_CONTROL_ON) {
src/kits/interface/RadioButton.cpp
312
SetValue(B_CONTROL_ON);
src/kits/mail/ProtocolConfigView.cpp
219
"leave_mail_on_server") ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/mail/ProtocolConfigView.cpp
224
"delete_remote_when_local") ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/mail/ProtocolConfigView.cpp
344
message->FindInt32("be:value") == B_CONTROL_ON);
src/kits/mail/ProtocolConfigView.cpp
397
bool value = checkBox != NULL && checkBox->Value() == B_CONTROL_ON;
src/kits/mail/ProtocolConfigView.cpp
77
fPartialBox->SetValue(B_CONTROL_ON);
src/kits/mail/ProtocolConfigView.cpp
86
if (fPartialBox->Value() == B_CONTROL_ON) {
src/kits/print/JobSetupPanel.cpp
139
fPrintAll->SetValue(B_CONTROL_ON);
src/kits/print/JobSetupPanel.cpp
145
fSelection->SetValue(B_CONTROL_ON);
src/kits/print/JobSetupPanel.cpp
151
fPagesFrom->SetValue(B_CONTROL_ON);
src/kits/print/JobSetupPanel.cpp
296
fPrintAll->SetValue(B_CONTROL_ON);
src/kits/shared/BitmapButton.cpp
79
if (fBackgroundMode == BUTTON_BACKGROUND || Value() == B_CONTROL_ON) {
src/kits/shared/IconButton.cpp
846
SetValueNoUpdate(set ? B_CONTROL_ON : B_CONTROL_OFF);
src/kits/shared/ToolBar.cpp
68
if ((modifiers() & B_SHIFT_KEY) != 0 || Value() == B_CONTROL_ON)
src/kits/tracker/AutoMounterSettings.cpp
299
fAutoMountAllCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
301
fAutoMountAllBFSCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
303
fScanningDisabledCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
306
fScanningDisabledCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
309
fInitialMountAllCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
312
fInitialMountRestoreCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
315
fInitialMountAllBFSCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
317
fInitialDontMountCheck->SetValue(B_CONTROL_ON);
src/kits/tracker/AutoMounterSettings.cpp
320
fEjectWhenUnmountingCheckBox->SetValue(B_CONTROL_ON);
src/kits/tracker/DialogPane.cpp
89
if (fLabelOn != NULL && Value() == B_CONTROL_ON)
src/kits/tracker/SettingsViews.cpp
741
? B_CONTROL_OFF : B_CONTROL_ON);
src/kits/tracker/StatusWindow.cpp
148
if (Value() == B_CONTROL_ON)
src/kits/tracker/StatusWindow.cpp
160
if (Value() == B_CONTROL_ON) {
src/kits/tracker/StatusWindow.cpp
880
fPauseButton->SetValue(fIsPaused ? B_CONTROL_ON : B_CONTROL_OFF);
src/libs/print/libprint/JobSetupDlg.cpp
173
button->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
233
fAll->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
235
range->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
274
fDuplex->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
293
fCollate->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
301
fReverse->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
327
fPreview->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
602
checkBox->SetValue(B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
788
bool pageRangeEnabled = fAll->Value() != B_CONTROL_ON;
src/libs/print/libprint/JobSetupDlg.cpp
793
fDuplex->Value() != B_CONTROL_ON;
src/libs/print/libprint/JobSetupDlg.cpp
815
fPages->SetCollate(fCollate->Value() == B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
819
fPages->SetReverse(fReverse->Value() == B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
920
fJobData->SetShowPreview(fPreview->Value() == B_CONTROL_ON);
src/libs/print/libprint/JobSetupDlg.cpp
931
if (B_CONTROL_ON == fAll->Value()) {
src/libs/print/libprint/JobSetupDlg.cpp
948
fJobData->SetPrintStyle((B_CONTROL_ON == fDuplex->Value())
src/libs/print/libprint/JobSetupDlg.cpp
954
fJobData->SetCollate(B_CONTROL_ON == fCollate->Value());
src/libs/print/libprint/JobSetupDlg.cpp
955
fJobData->SetReverse(B_CONTROL_ON == fReverse->Value());
src/libs/print/libprint/JobSetupDlg.cpp
958
if (fOddNumberedPages->Value() == B_CONTROL_ON)
src/libs/print/libprint/JobSetupDlg.cpp
960
if (fEvenNumberedPages->Value() == B_CONTROL_ON)
src/libs/print/libprint/JobSetupDlg.cpp
985
bool value = checkBox->Value() == B_CONTROL_ON;
src/preferences/appearance/FakeScrollBar.cpp
147
SetValue(B_CONTROL_ON);
src/preferences/appearance/FakeScrollBar.cpp
58
if (Value() == B_CONTROL_ON)
src/preferences/appearance/LookAndFeelSettingsView.cpp
179
fArrowStyleDouble->SetValue(B_CONTROL_ON);
src/preferences/appearance/LookAndFeelSettingsView.cpp
181
fArrowStyleSingle->SetValue(B_CONTROL_ON);
src/preferences/appearance/LookAndFeelSettingsView.cpp
424
fArrowStyleDouble->SetValue(B_CONTROL_ON);
src/preferences/appearance/LookAndFeelSettingsView.cpp
426
fArrowStyleSingle->SetValue(B_CONTROL_ON);
src/preferences/backgrounds/BackgroundsView.cpp
526
fIconLabelOutline->SetValue(B_CONTROL_ON);
src/preferences/backgrounds/BackgroundsView.cpp
529
? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/backgrounds/BackgroundsView.cpp
582
bool textWidgetLabelOutline = fIconLabelOutline->Value() == B_CONTROL_ON;
src/preferences/backgrounds/BackgroundsView.cpp
897
fIconLabelOutline->Value() == B_CONTROL_ON, 0, 0);
src/preferences/backgrounds/BackgroundsView.cpp
947
if ((fIconLabelOutline->Value() == B_CONTROL_ON)
src/preferences/filetypes/ApplicationTypeWindow.cpp
349
fFlagsCheckBox->SetValue(B_CONTROL_ON);
src/preferences/filetypes/ApplicationTypeWindow.cpp
593
fSingleLaunchButton->SetValue(B_CONTROL_ON);
src/preferences/filetypes/ApplicationTypeWindow.cpp
597
fExclusiveLaunchButton->SetValue(B_CONTROL_ON);
src/preferences/filetypes/ApplicationTypeWindow.cpp
602
fMultipleLaunchButton->SetValue(B_CONTROL_ON);
src/preferences/filetypes/AttributeWindow.cpp
386
width, fVisibleCheckBox->Value() == B_CONTROL_ON,
src/preferences/filetypes/AttributeWindow.cpp
387
fEditableCheckBox->Value() == B_CONTROL_ON);
src/preferences/input/InputMouse.cpp
136
= acceptFirstClickBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
297
settings.scroll_reverse = fScrollReverseBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
298
settings.scroll_twofinger = fTwoFingerBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
300
= fTwoFingerHorizontalBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
302
= fTwoFingerNaturalScrollingBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
319
settings.finger_click = fFingerClickBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
325
settings.software_button_areas = fSoftwareButtonAreasBox->Value() == B_CONTROL_ON;
src/preferences/input/InputTouchpadPrefView.cpp
588
fScrollReverseBox->SetValue(settings->scroll_reverse ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/input/InputTouchpadPrefView.cpp
589
fTwoFingerBox->SetValue(settings->scroll_twofinger ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/input/InputTouchpadPrefView.cpp
591
settings->scroll_twofinger_horizontal ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/input/InputTouchpadPrefView.cpp
594
settings->scroll_twofinger_natural_scrolling ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/input/SettingsView.cpp
199
fSettings.AcceptFirstClick() ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/locale/FormatSettingsView.cpp
276
f24HourRadioButton->SetValue(B_CONTROL_ON);
src/preferences/locale/FormatSettingsView.cpp
278
f12HourRadioButton->SetValue(B_CONTROL_ON);
src/preferences/locale/FormatSettingsView.cpp
290
f24HourRadioButton->Value() == B_CONTROL_ON);
src/preferences/locale/FormatSettingsView.cpp
344
f12HourRadioButton->SetValue(B_CONTROL_ON);
src/preferences/locale/FormatSettingsView.cpp
347
f24HourRadioButton->SetValue(B_CONTROL_ON);
src/preferences/locale/FormatSettingsView.cpp
353
? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/locale/LocaleWindow.cpp
441
value == B_CONTROL_ON);
src/preferences/mail/ConfigWindow.cpp
469
if (fCheckMailCheckBox->Value() == B_CONTROL_ON) {
src/preferences/mail/ConfigWindow.cpp
715
fCheckMailCheckBox->SetValue(interval != 0 ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/media/MediaViews.cpp
336
if (fVolumeCheckBox->Value() == B_CONTROL_ON)
src/preferences/media/MediaViews.cpp
387
fVolumeCheckBox->SetValue(B_CONTROL_ON);
src/preferences/network/NetworkWindow.cpp
243
message->GetInt32("be:value", B_CONTROL_OFF) == B_CONTROL_ON);
src/preferences/notifications/GeneralView.cpp
198
fNotificationBox->SetValue(autoStart ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/notifications/GeneralView.cpp
231
bool autoStart = (fNotificationBox->Value() == B_CONTROL_ON);
src/preferences/notifications/GeneralView.cpp
331
bool enabled = fNotificationBox->Value() == B_CONTROL_ON;
src/preferences/screensaver/PasswordWindow.cpp
138
fUseSystem->SetValue(B_CONTROL_ON);
src/preferences/screensaver/PasswordWindow.cpp
140
fUseCustom->SetValue(B_CONTROL_ON);
src/preferences/screensaver/ScreenSaverWindow.cpp
421
fSettings.TimeFlags() & ENABLE_SAVER ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/screensaver/ScreenSaverWindow.cpp
465
fTurnOffCheckBox->Value() == B_CONTROL_ON);
src/preferences/screensaver/ScreenSaverWindow.cpp
504
? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/screensaver/ScreenSaverWindow.cpp
506
enabled = fEnableCheckBox->Value() == B_CONTROL_ON;
src/preferences/screensaver/ScreenSaverWindow.cpp
523
bool enabled = fEnableCheckBox->Value() == B_CONTROL_ON;
src/preferences/time/ClockView.cpp
120
? B_CONTROL_ON : B_CONTROL_OFF;
src/preferences/time/ClockView.cpp
127
? B_CONTROL_ON : B_CONTROL_OFF;
src/preferences/time/ClockView.cpp
134
? B_CONTROL_ON : B_CONTROL_OFF;
src/preferences/time/ClockView.cpp
141
fCachedShowClock = showClock ? B_CONTROL_ON : B_CONTROL_OFF;
src/preferences/time/ClockView.cpp
156
fShowClock->SetValue(showClock ? B_CONTROL_ON : B_CONTROL_OFF);
src/preferences/time/ClockView.cpp
165
showClock = fShowClock->Value() == B_CONTROL_ON;
src/preferences/time/ClockView.cpp
38
fCachedShowClock(B_CONTROL_ON),
src/preferences/time/ZoneView.cpp
177
fUseGmtTime = fGmtTime->Value() == B_CONTROL_ON;
src/preferences/time/ZoneView.cpp
234
fGmtTime->SetValue(B_CONTROL_ON);
src/preferences/time/ZoneView.cpp
236
fLocalTime->SetValue(B_CONTROL_ON);
src/preferences/time/ZoneView.cpp
477
fGmtTime->SetValue(B_CONTROL_ON);
src/preferences/time/ZoneView.cpp
479
fLocalTime->SetValue(B_CONTROL_ON);
src/servers/debug/DebugWindow.cpp
80
terminate->SetValue(B_CONTROL_ON);
src/servers/package/ProblemWindow.cpp
155
if (button->Value() == B_CONTROL_ON) {
src/servers/package/ProblemWindow.cpp
277
ignoreButton->SetValue(B_CONTROL_ON);
src/servers/package/ProblemWindow.cpp
306
if (button->Value() == B_CONTROL_ON)
src/tests/add-ons/media/media-add-ons/mixer/main.cpp
266
if (fInterpolate->Value() == B_CONTROL_ON) {
src/tests/add-ons/print/ppd/ui/PPDConfigView.cpp
179
? B_CONTROL_ON
src/tests/kits/game/file_game_sound_test/FileSoundWindow.cpp
241
if (checkValue == B_CONTROL_ON)
src/tests/kits/game/file_game_sound_test/FileSoundWindow.cpp
250
if (checkValue == B_CONTROL_ON)
src/tests/kits/game/simple_game_sound_test/SimpleSoundTest.cpp
205
fSound->SetIsLooping(fLoop->Value() == B_CONTROL_ON);
src/tests/kits/interface/look/Look.cpp
48
control3->SetValue(B_CONTROL_ON);
src/tests/kits/interface/look/Look.cpp
50
control4->SetValue(B_CONTROL_ON);
src/tests/kits/interface/menu/menuworld/MenuWindow.cpp
294
size = (pCheckBox->Value() == B_CONTROL_ON) ? B_LARGE_ICON : B_MINI_ICON;
src/tests/servers/app/playground/ObjectWindow.cpp
209
radioButton->SetValue(B_CONTROL_ON);