Searched refs:show (Results 1 - 25 of 59) sorted by path

123

/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php42 // do not show applet controls
/haiku/headers/os/interface/
H A DLayout.h89 void VisibilityChanged(bool show);
/haiku/headers/private/interface/
H A DBMCPrivate.h54 void TogglePopUpMarker(bool show) argument
55 { fShowPopUpMarker = show; }
/haiku/src/apps/bootmanager/
H A DBootManagerController.cpp172 bool show; local
173 if (message.FindBool("show", &show) == B_OK && show)
389 bool show; local
390 if (message.FindBool("show", &show) != B_OK || !show)
H A DDefaultPartitionPage.cpp230 bool show; local
231 if (message.FindBool("show", &show) != B_OK || !show)
H A DLegacyBootMenu.cpp267 message.AddBool("show", true);
413 bool show; local
414 partition.FindBool("show", &show);
415 if (!show)
428 bool show; local
433 partition.FindBool("show", &show);
439 if (!show)
H A DPartitionsPage.cpp36 const uint32 kMessageShow = 'show';
71 partition.ReplaceBool("show", showBox->Value() != 0);
120 // show | name | type | size | path
128 bool show; local
133 message.FindBool("show", &show);
140 BCheckBox* checkBox = new BCheckBox("show", "",
142 if (show)
/haiku/src/apps/clock/
H A Dcl_view.h20 short hRadius, short offset, long face, bool show);
57 short offset, long face, bool show);
H A Dcl_view.cpp27 short hRadius, short offset, long face, bool show)
36 fShowSeconds(show),
181 short offset, long face, bool show)
183 fOffscreenView = new TOffscreenView(rect, "freqd", mRadius, hRadius, offset, face, show);
26 TOffscreenView(BRect frame, const char *name, short mRadius, short hRadius, short offset, long face, bool show) argument
180 InitObject(BRect rect, short mRadius, short hRadius, short offset, long face, bool show) argument
/haiku/src/apps/mail/
H A DPrefs.h91 BPopUpMenu* _BuildButtonBarMenu(uint8 show);
/haiku/src/apps/showimage/
H A DProgressWindow.cpp22 static const uint32 kMsgShow = 'show';
90 BMessage show(kMsgShow);
91 fRunner = new BMessageRunner(this, &show, 1000000, 1);
/haiku/src/bin/
H A Dcomm.c64 void show(FILE *, const char *, char *);
134 show(fp2, col2, line2);
139 show(fp1, col1, line1);
173 show(FILE *fp, const char *offset, char *buf) function
/haiku/src/bin/network/pppconfig/
H A Dpppconfig.cpp29 fprintf(stderr, "pppconfig show | -a\n");
44 show(ppp_interface_filter filter = PPP_REGISTERED_INTERFACES) function
739 if (!strcmp(argv[1], "show") || !strcmp(argv[1], "-a"))
740 return show(PPP_ALL_INTERFACES);
/haiku/src/kits/app/
H A DApplication.cpp1119 bool show; local
1120 if (message->FindBool("show", &show) != B_OK)
1123 BDragger::Private::UpdateShowAllDraggers(show);
/haiku/src/kits/interface/
H A DLayout.cpp576 BLayout::VisibilityChanged(bool show) argument
582 ItemAt(i)->AncestorVisibilityChanged(show);
/haiku/src/preferences/filetypes/
H A DFileTypesWindow.h48 void _ShowSnifferRule(bool show);
/haiku/src/preferences/network/
H A DNetworkWindow.h61 void _ShowReplicant(bool show);
/haiku/src/preferences/notifications/
H A DPrefletWin.cpp77 // Center this window on screen and show it
143 bool show = msg->GetBool(kShowButtonsKey, true); local
144 fButtonsLayout->SetVisible(show);
/haiku/src/servers/app/
H A DDesktopSettings.h103 void SetShowAllDraggers(bool show);
/haiku/headers/private/tracker/
H A DNavMenu.h107 void SetShowParent(bool show);
/haiku/src/apps/charactermap/
H A DCharacterView.cpp70 CharacterView::ShowPrivateBlocks(bool show) argument
72 if (fShowPrivateBlocks == show)
75 fShowPrivateBlocks = show;
81 CharacterView::ShowContainedBlocksOnly(bool show) argument
83 if (fShowContainedBlocksOnly == show)
86 fShowContainedBlocksOnly = show;
H A DCharacterView.h24 void ShowPrivateBlocks(bool show);
28 void ShowContainedBlocksOnly(bool show);
H A DCharacterWindow.cpp169 bool show; local
170 if (settings.FindBool("show private blocks", &show) == B_OK) {
171 fCharacterView->ShowPrivateBlocks(show);
172 fUnicodeBlockView->ShowPrivateBlocks(show);
174 if (settings.FindBool("show contained blocks only", &show) == B_OK) {
175 fCharacterView->ShowContainedBlocksOnly(show);
176 fUnicodeBlockView->ShowContainedBlocksOnly(show);
267 B_TRANSLATE("Only show block
[all...]
H A DUnicodeBlockView.cpp57 UnicodeBlockView::ShowPrivateBlocks(bool show) argument
59 if (fShowPrivateBlocks == show)
62 fShowPrivateBlocks = show;
68 UnicodeBlockView::ShowContainedBlocksOnly(bool show) argument
70 if (fShowContainedBlocksOnly == show)
73 fShowContainedBlocksOnly = show;
H A DUnicodeBlockView.h37 void ShowPrivateBlocks(bool show);
41 void ShowContainedBlocksOnly(bool show);

Completed in 427 milliseconds

123