Symbol: show
headers/os/interface/Layout.h
89
void VisibilityChanged(bool show);
headers/private/interface/BMCPrivate.h
55
void TogglePopUpMarker(bool show)
headers/private/interface/BMCPrivate.h
56
{ fShowPopUpMarker = show; }
headers/private/tracker/NavMenu.h
107
void SetShowParent(bool show);
src/apps/bootmanager/BootManagerController.cpp
172
bool show;
src/apps/bootmanager/BootManagerController.cpp
173
if (message.FindBool("show", &show) == B_OK && show)
src/apps/bootmanager/BootManagerController.cpp
390
bool show;
src/apps/bootmanager/BootManagerController.cpp
391
if (message.FindBool("show", &show) != B_OK || !show)
src/apps/bootmanager/DefaultPartitionPage.cpp
230
bool show;
src/apps/bootmanager/DefaultPartitionPage.cpp
231
if (message.FindBool("show", &show) != B_OK || !show)
src/apps/bootmanager/LegacyBootMenu.cpp
413
bool show;
src/apps/bootmanager/LegacyBootMenu.cpp
414
partition.FindBool("show", &show);
src/apps/bootmanager/LegacyBootMenu.cpp
415
if (!show)
src/apps/bootmanager/LegacyBootMenu.cpp
428
bool show;
src/apps/bootmanager/LegacyBootMenu.cpp
433
partition.FindBool("show", &show);
src/apps/bootmanager/LegacyBootMenu.cpp
439
if (!show)
src/apps/bootmanager/PartitionsPage.cpp
128
bool show;
src/apps/bootmanager/PartitionsPage.cpp
133
message.FindBool("show", &show);
src/apps/bootmanager/PartitionsPage.cpp
142
if (show)
src/apps/charactermap/CharacterView.cpp
70
CharacterView::ShowPrivateBlocks(bool show)
src/apps/charactermap/CharacterView.cpp
72
if (fShowPrivateBlocks == show)
src/apps/charactermap/CharacterView.cpp
75
fShowPrivateBlocks = show;
src/apps/charactermap/CharacterView.cpp
81
CharacterView::ShowContainedBlocksOnly(bool show)
src/apps/charactermap/CharacterView.cpp
83
if (fShowContainedBlocksOnly == show)
src/apps/charactermap/CharacterView.cpp
86
fShowContainedBlocksOnly = show;
src/apps/charactermap/CharacterView.h
24
void ShowPrivateBlocks(bool show);
src/apps/charactermap/CharacterView.h
28
void ShowContainedBlocksOnly(bool show);
src/apps/charactermap/CharacterWindow.cpp
170
bool show;
src/apps/charactermap/CharacterWindow.cpp
171
if (settings.FindBool("show private blocks", &show) == B_OK) {
src/apps/charactermap/CharacterWindow.cpp
172
fCharacterView->ShowPrivateBlocks(show);
src/apps/charactermap/CharacterWindow.cpp
173
fUnicodeBlockView->ShowPrivateBlocks(show);
src/apps/charactermap/CharacterWindow.cpp
175
if (settings.FindBool("show contained blocks only", &show) == B_OK) {
src/apps/charactermap/CharacterWindow.cpp
176
fCharacterView->ShowContainedBlocksOnly(show);
src/apps/charactermap/CharacterWindow.cpp
177
fUnicodeBlockView->ShowContainedBlocksOnly(show);
src/apps/charactermap/UnicodeBlockView.cpp
59
UnicodeBlockView::ShowPrivateBlocks(bool show)
src/apps/charactermap/UnicodeBlockView.cpp
61
if (fShowPrivateBlocks == show)
src/apps/charactermap/UnicodeBlockView.cpp
64
fShowPrivateBlocks = show;
src/apps/charactermap/UnicodeBlockView.cpp
70
UnicodeBlockView::ShowContainedBlocksOnly(bool show)
src/apps/charactermap/UnicodeBlockView.cpp
72
if (fShowContainedBlocksOnly == show)
src/apps/charactermap/UnicodeBlockView.cpp
75
fShowContainedBlocksOnly = show;
src/apps/charactermap/UnicodeBlockView.h
37
void ShowPrivateBlocks(bool show);
src/apps/charactermap/UnicodeBlockView.h
41
void ShowContainedBlocksOnly(bool show);
src/apps/clock/cl_view.cpp
181
short offset, long face, bool show)
src/apps/clock/cl_view.cpp
183
fOffscreenView = new TOffscreenView(rect, "freqd", mRadius, hRadius, offset, face, show);
src/apps/clock/cl_view.cpp
30
short hRadius, short offset, long face, bool show)
src/apps/clock/cl_view.cpp
39
fShowSeconds(show),
src/apps/clock/cl_view.h
20
short hRadius, short offset, long face, bool show);
src/apps/clock/cl_view.h
57
short offset, long face, bool show);
src/apps/deskbar/TimeView.cpp
332
TTimeView::SetShowSeconds(bool show)
src/apps/deskbar/TimeView.cpp
334
fShowSeconds = show;
src/apps/deskbar/TimeView.cpp
348
TTimeView::SetShowDayOfWeek(bool show)
src/apps/deskbar/TimeView.cpp
350
fShowDayOfWeek = show;
src/apps/deskbar/TimeView.cpp
364
TTimeView::SetShowTimeZone(bool show)
src/apps/deskbar/TimeView.cpp
366
fShowTimeZone = show;
src/apps/deskbar/TimeView.h
101
void SetShowSeconds(bool show);
src/apps/deskbar/TimeView.h
104
void SetShowDayOfWeek(bool show);
src/apps/deskbar/TimeView.h
107
void SetShowTimeZone(bool show);
src/apps/deskbar/WindowMenu.cpp
197
TShowHideMenuItem* show
src/apps/deskbar/WindowMenu.cpp
207
show->SetEnabled(false);
src/apps/deskbar/WindowMenu.cpp
213
AddItem(show);
src/apps/haikudepot/textview/TextDocumentView.cpp
579
TextDocumentView::_ShowCaret(bool show)
src/apps/haikudepot/textview/TextDocumentView.cpp
581
fShowCaret = show;
src/apps/haikudepot/textview/TextDocumentView.h
81
void _ShowCaret(bool show);
src/apps/mail/MailWindow.cpp
3471
TMailWindow::_UpdateLabel(uint32 command, const char* label, bool show)
src/apps/mail/MailWindow.cpp
3475
button->SetLabel(show ? label : NULL);
src/apps/mail/MailWindow.cpp
3476
button->SetToolTip(show ? NULL : label);
src/apps/mail/MailWindow.h
141
bool show);
src/apps/mail/Prefs.cpp
890
TPrefsWindow::_BuildButtonBarMenu(uint8 show)
src/apps/mail/Prefs.cpp
900
if (show & 1)
src/apps/mail/Prefs.cpp
906
if (show & 2)
src/apps/mail/Prefs.cpp
912
if (!show)
src/apps/mail/Prefs.h
91
BPopUpMenu* _BuildButtonBarMenu(uint8 show);
src/apps/mediaplayer/MainWin.cpp
1206
bool show;
src/apps/mediaplayer/MainWin.cpp
1208
&& msg->FindBool("show", &show) == B_OK) {
src/apps/mediaplayer/MainWin.cpp
1209
if (show) {
src/apps/mediaplayer/MainWin.cpp
2654
MainWin::_ShowFullscreenControls(bool show, bool animate)
src/apps/mediaplayer/MainWin.cpp
2656
if (fShowsFullscreenControls == show)
src/apps/mediaplayer/MainWin.cpp
2659
fShowsFullscreenControls = show;
src/apps/mediaplayer/MainWin.cpp
2660
fVideoView->SetFullscreenControlsVisible(show);
src/apps/mediaplayer/MainWin.cpp
2662
if (show) {
src/apps/mediaplayer/MainWin.cpp
2681
float moveDist = show ? -height : height;
src/apps/mediaplayer/MainWin.cpp
2691
finalMessage.AddBool("show", show);
src/apps/mediaplayer/MainWin.cpp
2693
} else if (!show) {
src/apps/mediaplayer/MainWin.h
109
void _ShowFullscreenControls(bool show,
src/apps/showimage/ProgressWindow.cpp
90
BMessage show(kMsgShow);
src/apps/showimage/ProgressWindow.cpp
91
fRunner = new BMessageRunner(this, &show, 1000000, 1);
src/apps/showimage/ShowImageView.cpp
1847
ShowImageView::_ShowToolBarIfEnabled(bool show)
src/apps/showimage/ShowImageView.cpp
1850
message.AddBool("show", show);
src/apps/showimage/ShowImageView.cpp
497
ShowImageView::SetShowCaption(bool show)
src/apps/showimage/ShowImageView.cpp
499
if (fShowCaption != show) {
src/apps/showimage/ShowImageView.cpp
500
fShowCaption = show;
src/apps/showimage/ShowImageView.h
181
void _ShowToolBarIfEnabled(bool show);
src/apps/showimage/ShowImageView.h
70
void SetShowCaption(bool show);
src/apps/showimage/ShowImageWindow.cpp
1089
bool show;
src/apps/showimage/ShowImageWindow.cpp
1090
if (message->FindBool("show", &show) != B_OK)
src/apps/showimage/ShowImageWindow.cpp
1092
_SetToolBarVisible(fShowToolBar && show, true);
src/apps/showimage/ShowImageWindow.cpp
1110
bool show;
src/apps/showimage/ShowImageWindow.cpp
1112
&& message->FindBool("show", &show) == B_OK) {
src/apps/showimage/ShowImageWindow.cpp
1115
if (!show)
src/apps/sudoku/ProgressWindow.cpp
98
BMessage show(kMsgShow);
src/apps/sudoku/ProgressWindow.cpp
99
fRunner = new BMessageRunner(this, &show, 1000000, 1);
src/apps/webpositive/BrowserWindow.cpp
2492
BrowserWindow::_ShowInterface(bool show)
src/apps/webpositive/BrowserWindow.cpp
2494
if (fInterfaceVisible == show)
src/apps/webpositive/BrowserWindow.cpp
2497
fInterfaceVisible = show;
src/apps/webpositive/BrowserWindow.cpp
2499
if (show) {
src/apps/webpositive/BrowserWindow.cpp
2523
BrowserWindow::_ShowProgressBar(bool show)
src/apps/webpositive/BrowserWindow.cpp
2525
if (show) {
src/apps/webpositive/BrowserWindow.cpp
2818
BrowserWindow::_ShowBookmarkBar(bool show)
src/apps/webpositive/BrowserWindow.cpp
2821
if (show && (fBookmarkBar == NULL || fBookmarkBar->CountItems() <= 1))
src/apps/webpositive/BrowserWindow.cpp
2827
fBookmarkBarMenuItem->SetMarked(show);
src/apps/webpositive/BrowserWindow.cpp
2829
if (fBookmarkBar == NULL || fBookmarkBar->IsHidden() != show)
src/apps/webpositive/BrowserWindow.cpp
2832
fAppSettings->SetValue(kSettingsShowBookmarkBar, show);
src/apps/webpositive/BrowserWindow.cpp
2834
if (show)
src/apps/webpositive/BrowserWindow.h
209
void _ShowInterface(bool show);
src/apps/webpositive/BrowserWindow.h
224
void _ShowBookmarkBar(bool show);
src/bin/comm.c
134
show(fp2, col2, line2);
src/bin/comm.c
139
show(fp1, col1, line1);
src/bin/comm.c
64
void show(FILE *, const char *, char *);
src/bin/network/pppconfig/pppconfig.cpp
740
return show(PPP_ALL_INTERFACES);
src/kits/app/Application.cpp
1108
bool show;
src/kits/app/Application.cpp
1109
if (message->FindBool("show", &show) != B_OK)
src/kits/app/Application.cpp
1112
BDragger::Private::UpdateShowAllDraggers(show);
src/kits/interface/Layout.cpp
576
BLayout::VisibilityChanged(bool show)
src/kits/interface/Layout.cpp
582
ItemAt(i)->AncestorVisibilityChanged(show);
src/kits/tracker/ContainerWindow.cpp
4035
BContainerWindow::ShowNavigator(bool show)
src/kits/tracker/ContainerWindow.cpp
4040
if (show) {
src/kits/tracker/FindPanel.h
279
void ShowOrHideMoreOptions(bool show);
src/kits/tracker/NavMenu.cpp
843
BNavMenu::SetShowParent(bool show)
src/kits/tracker/NavMenu.cpp
845
fFlags = uint8((fFlags & ~kShowParent) | (show ? kShowParent : 0));
src/kits/tracker/PoseView.cpp
8757
BPoseView::ShowSelection(bool show)
src/kits/tracker/PoseView.cpp
8759
if (fSelectionVisible == show)
src/kits/tracker/PoseView.cpp
8762
fSelectionVisible = show;
src/kits/tracker/PoseView.cpp
8783
if (pose->IsSelected() != show || fShowSelectionWhenInactive) {
src/kits/tracker/PoseView.cpp
8785
pose->Select(show);
src/kits/tracker/PoseView.cpp
8804
if (pose->IsSelected() != show || fShowSelectionWhenInactive) {
src/kits/tracker/PoseView.cpp
8806
pose->Select(show);
src/kits/tracker/PoseView.cpp
8821
if (pose->IsSelected() != show && !fShowSelectionWhenInactive)
src/kits/tracker/PoseView.cpp
8822
pose->Select(show);
src/kits/tracker/PoseView.cpp
8826
if (!show) {
src/preferences/filetypes/FileTypesWindow.cpp
1010
FileTypesWindow::_ShowSnifferRule(bool show)
src/preferences/filetypes/FileTypesWindow.cpp
1012
if (fRuleControl->IsHidden() == !show)
src/preferences/filetypes/FileTypesWindow.cpp
1015
if (!show)
src/preferences/filetypes/FileTypesWindow.h
48
void _ShowSnifferRule(bool show);
src/preferences/filetypes/IconView.cpp
1110
IconView::ShowIconHeap(bool show)
src/preferences/filetypes/IconView.cpp
1112
if (show == (fHeapIconBitmap != NULL))
src/preferences/filetypes/IconView.cpp
1115
if (show) {
src/preferences/filetypes/IconView.cpp
1154
IconView::ShowEmptyFrame(bool show)
src/preferences/filetypes/IconView.cpp
1156
if (show == fShowEmptyFrame)
src/preferences/filetypes/IconView.cpp
1159
fShowEmptyFrame = show;
src/preferences/filetypes/IconView.h
109
void ShowIconHeap(bool show);
src/preferences/filetypes/IconView.h
110
void ShowEmptyFrame(bool show);
src/preferences/keymap/StatusMenuField.cpp
189
StatusMenuField::ShowStopIcon(bool show)
src/preferences/keymap/StatusMenuField.cpp
194
item->SetIcon(show ? fStopIcon : NULL);
src/preferences/keymap/StatusMenuField.cpp
199
StatusMenuField::ShowWarnIcon(bool show)
src/preferences/keymap/StatusMenuField.cpp
204
item->SetIcon(show ? fWarnIcon : NULL);
src/preferences/keymap/StatusMenuField.h
57
virtual void ShowStopIcon(bool show);
src/preferences/keymap/StatusMenuField.h
58
virtual void ShowWarnIcon(bool show);
src/preferences/network/NetworkWindow.cpp
594
NetworkWindow::_ShowReplicant(bool show)
src/preferences/network/NetworkWindow.cpp
596
if (show) {
src/preferences/network/NetworkWindow.h
61
void _ShowReplicant(bool show);
src/preferences/notifications/PrefletWin.cpp
143
bool show = msg->GetBool(kShowButtonsKey, true);
src/preferences/notifications/PrefletWin.cpp
144
fButtonsLayout->SetVisible(show);
src/servers/app/DesktopSettings.cpp
1060
LockedDesktopSettings::SetShowAllDraggers(bool show)
src/servers/app/DesktopSettings.cpp
1062
fSettings->SetShowAllDraggers(show);
src/servers/app/DesktopSettings.cpp
603
DesktopSettingsPrivate::SetShowAllDraggers(bool show)
src/servers/app/DesktopSettings.cpp
605
fShowAllDraggers = show;
src/servers/app/DesktopSettings.h
103
void SetShowAllDraggers(bool show);
src/servers/app/DesktopSettingsPrivate.h
65
void SetShowAllDraggers(bool show);
src/servers/app/ServerApp.cpp
1547
bool show;
src/servers/app/ServerApp.cpp
1548
if (link.Read<bool>(&show) == B_OK) {
src/servers/app/ServerApp.cpp
1550
if (show != settings.ShowAllDraggers()) {
src/servers/app/ServerApp.cpp
1551
settings.SetShowAllDraggers(show);
src/servers/app/ServerApp.cpp
1563
bool show = false;
src/servers/app/ServerApp.cpp
1566
show = settings.ShowAllDraggers();
src/servers/app/ServerApp.cpp
1570
update.AddBool("show", show);
src/servers/registrar/ShutdownProcess.cpp
989
ShutdownProcess::_SetShowShutdownWindow(bool show)
src/servers/registrar/ShutdownProcess.cpp
994
if (show == fWindow->IsHidden()) {
src/servers/registrar/ShutdownProcess.cpp
995
if (show)
src/servers/registrar/ShutdownProcess.h
60
void _SetShowShutdownWindow(bool show);
src/tests/kits/net/wlan_test.cpp
108
show(network);
src/tests/kits/net/wlan_test.cpp
115
show(networks[i]);
src/tests/kits/net/wlan_test.cpp
125
show(network);