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

123

/haiku/src/apps/charactermap/
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);
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 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;
/haiku/src/tests/kits/net/
H A Dwlan_test.cpp43 show(const wireless_network& network) function
108 show(network);
115 show(networks[i]);
121 // show associated networks
125 show(network);
/haiku/src/apps/deskbar/
H A DTimeView.h53 // show or hide clock
56 // show seconds
59 // show day of week
62 // show time zone
101 void SetShowSeconds(bool show);
104 void SetShowDayOfWeek(bool show);
107 void SetShowTimeZone(bool show);
H A DWindowMenu.cpp95 // We don't want to show the menu when dragging, but it's not
197 TShowHideMenuItem* show local
207 show->SetEnabled(false);
213 AddItem(show);
230 // We changed the show level in AttachedToWindow(). Undo it.
H A DTimeView.cpp332 TTimeView::SetShowSeconds(bool show) argument
334 fShowSeconds = show;
348 TTimeView::SetShowDayOfWeek(bool show) argument
350 fShowDayOfWeek = show;
364 TTimeView::SetShowTimeZone(bool show) argument
366 fShowTimeZone = show;
/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/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/headers/private/interface/
H A DBMCPrivate.h54 void TogglePopUpMarker(bool show) argument
55 { fShowPopUpMarker = show; }
/haiku/src/preferences/keymap/
H A DStatusMenuField.h57 virtual void ShowStopIcon(bool show);
58 virtual void ShowWarnIcon(bool show);
H A DStatusMenuField.cpp189 StatusMenuField::ShowStopIcon(bool show) argument
191 // show or hide the stop icon
194 item->SetIcon(show ? fStopIcon : NULL);
199 StatusMenuField::ShowWarnIcon(bool show) argument
201 // show or hide the warn icon
204 item->SetIcon(show ? fWarnIcon : NULL);
/haiku/src/apps/haikudepot/model/
H A DModel.h126 void SetShowAvailablePackages(bool show);
129 void SetShowInstalledPackages(bool show);
132 void SetShowSourcePackages(bool show);
135 void SetShowDevelopPackages(bool show);
/haiku/src/apps/bootmanager/
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)
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)
/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/apps/sudoku/
H A DProgressWindow.cpp23 static const uint32 kMsgShow = 'show';
98 BMessage show(kMsgShow);
99 fRunner = new BMessageRunner(this, &show, 1000000, 1);
/haiku/src/preferences/network/
H A DNetworkWindow.h61 void _ShowReplicant(bool show);
/haiku/src/preferences/filetypes/
H A DFileTypesWindow.h48 void _ShowSnifferRule(bool show);
/haiku/src/servers/app/
H A DDesktopSettings.h103 void SetShowAllDraggers(bool show);
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.h81 void _ShowCaret(bool show);

Completed in 153 milliseconds

123