Searched refs:show (Results 1 - 25 of 59) sorted by last modified time

123

/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;
/haiku/src/servers/app/
H A DServerApp.cpp547 // Allow the debugger to show its window: if needed, remove any
1544 bool show; local
1545 if (link.Read<bool>(&show) == B_OK) {
1547 if (show != settings.ShowAllDraggers()) {
1548 settings.SetShowAllDraggers(show);
1560 bool show = false; local
1563 show = settings.ShowAllDraggers();
1567 update.AddBool("show", show);
/haiku/src/kits/tracker/
H A DContainerWindow.cpp831 // for now only show attributes in list view
2545 // clicked on a pose, show file or volume context menu
2554 // selected item was trash, show the trash context menu instead
2572 // only show for directories (directory, volume, root)
2574 // don't show a popup for the trash or printers
2670 // clicked on a window, show window context menu
4034 BContainerWindow::ShowNavigator(bool show) argument
4041 if (show) {
H A DPoseView.cpp1855 // to show the area below the items that have already
7449 // show desktop context menu
8757 BPoseView::ShowSelection(bool show) argument
8759 if (fSelectionVisible == show)
8762 fSelectionVisible = show;
8779 if (pose->IsSelected() != show
8782 pose->Select(show);
8800 if (pose->IsSelected() != show
8803 pose->Select(show);
8818 if (pose->IsSelected() != show
[all...]
H A DFindPanel.h243 void ShowOrHideMoreOptions(bool show);
H A DNavMenu.cpp601 // broken link, still can show though, bail
835 BNavMenu::SetShowParent(bool show) argument
837 fFlags = uint8((fFlags & ~kShowParent) | (show ? kShowParent : 0));
/haiku/src/apps/showimage/
H A DShowImageWindow.cpp189 tool_bar_icon(kIconMediaMovieLibrary), B_TRANSLATE("Slide show"));
326 _AddItemMenu(menu, B_TRANSLATE("Slide show"), MSG_SLIDE_SHOW, 0, 0, this);
1095 bool show; local
1096 if (message->FindBool("show", &show) != B_OK)
1098 _SetToolBarVisible(fShowToolBar && show, true);
1116 bool show; local
1118 && message->FindBool("show", &show) == B_OK) {
1121 if (!show)
[all...]
H A DShowImageView.cpp493 ShowImageView::SetShowCaption(bool show) argument
495 if (fShowCaption != show) {
496 fShowCaption = show;
1314 // stop slide show
1843 ShowImageView::_ShowToolBarIfEnabled(bool show) argument
1846 message.AddBool("show", show);
H A DShowImageView.h70 void SetShowCaption(bool show);
181 void _ShowToolBarIfEnabled(bool show);
/haiku/src/preferences/filetypes/
H A DIconView.h109 void ShowIconHeap(bool show);
110 void ShowEmptyFrame(bool show);
H A DIconView.cpp856 // show context menu
1110 IconView::ShowIconHeap(bool show) argument
1112 if (show == (fHeapIconBitmap != NULL))
1115 if (show) {
1154 IconView::ShowEmptyFrame(bool show) argument
1156 if (show == fShowEmptyFrame)
1159 fShowEmptyFrame = show;
/haiku/src/apps/haikudepot/model/
H A DModel.cpp471 Model::SetShowAvailablePackages(bool show) argument
473 fShowAvailablePackages = show;
478 Model::SetShowInstalledPackages(bool show) argument
480 fShowInstalledPackages = show;
485 Model::SetShowSourcePackages(bool show) argument
487 fShowSourcePackages = show;
492 Model::SetShowDevelopPackages(bool show) argument
494 fShowDevelopPackages = show;
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/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/webpositive/
H A DBrowserWindow.cpp1629 // Make sure we show the page that contains the view.
2167 "show the Bookmarks folder.\n\nError: %error",
2488 BrowserWindow::_ShowInterface(bool show) argument
2490 if (fInterfaceVisible == show)
2493 fInterfaceVisible = show;
2495 if (show) {
2519 BrowserWindow::_ShowProgressBar(bool show) argument
2521 if (show) {
2803 snprintf(buffer, sizeof(buffer), "Failed to show the "
2814 BrowserWindow::_ShowBookmarkBar(bool show) argument
[all...]
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.h81 void _ShowCaret(bool show);
H A DTextDocumentView.cpp508 TextDocumentView::_ShowCaret(bool show) argument
510 fShowCaret = show;
/haiku/src/apps/mail/
H A DMailWindow.h137 bool show);
H A DMailWindow.cpp240 // Cheap hack - only show the drafts menu when composing messages. Insert
2806 // Update window title to show new spam classification.
2848 // Uncertain, Unrated and other unknown classes, show the ratio.
3335 TMailWindow::_UpdateLabel(uint32 command, const char* label, bool show) argument
3339 button->SetLabel(show ? label : NULL);
3340 button->SetToolTip(show ? NULL : label);
/haiku/src/apps/mediaplayer/
H A DMainWin.h109 void _ShowFullscreenControls(bool show,
H A DMainWin.cpp1206 bool show; local
1208 && msg->FindBool("show", &show) == B_OK) {
1209 if (show) {
1433 // show or activate
2660 MainWin::_ShowFullscreenControls(bool show, bool animate) argument
2662 if (fShowsFullscreenControls == show)
2665 fShowsFullscreenControls = show;
2666 fVideoView->SetFullscreenControlsVisible(show);
2668 if (show) {
[all...]
/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)
/haiku/src/apps/deskbar/
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.
/haiku/headers/private/tracker/
H A DNavMenu.h107 void SetShowParent(bool show);

Completed in 378 milliseconds

123