Searched refs:view (Results 426 - 450 of 493) sorted by relevance

<<11121314151617181920

/haiku/src/apps/codycam/
H A DVideoConsumer.h42 VideoConsumer(const char* name, BView* view,
/haiku/src/kits/interface/
H A DMenuBar.cpp729 BView* view = dynamic_cast<BView*>(handler); local
730 if (view != NULL && view->Window() == window)
731 view->MakeFocus();
H A DBitmap.cpp403 if (BView* view
405 AddChild(view);
873 /*! \brief Adds a BView to the bitmap's view hierarchy.
875 The bitmap must accept views and the supplied view must not be child of
878 \param view The view to be added.
881 BBitmap::AddChild(BView* view) argument
884 fWindow->AddChild(view);
888 /*! \brief Removes a BView from the bitmap's view hierarchy.
889 \param view Th
892 RemoveChild(BView* view) argument
[all...]
H A DTextView.cpp138 void SimulateMouseMovement(BTextView* view);
1067 status_t err = data->AddString("suites", "suite/vnd.Be-text-view");
1610 // When the text view is not stylable, we always set the whole text's
1674 // when the text view is not stylable, we always set the whole text's
2164 // prevent from scrolling out of view
2500 // After setting new alignment, update the view/window
3780 \param scrollTo Scroll the view to \a scrollTo offset if not \c INT32_MIN.
4397 BTextView::_DrawLine(BView* view, const int32 &lineNum, argument
4426 view->MovePenTo(startLeft,
4432 view
4570 BView* view = NULL; local
[all...]
H A DTabView.cpp214 BTab::SetView(BView* view) argument
216 if (view == NULL || fView == view)
223 fView = view;
559 BView* view; local
561 BUnarchiver::B_DONT_ASSUME_OWNERSHIP, view)) != B_OK)
564 tab->SetView(view);
817 // make the view visible through the layout if there is one
1182 message->AddString("suites", "suite/vnd.Be-tab-view");
1404 fContainerView = new BView("view containe
[all...]
/haiku/src/apps/webpositive/tabview/
H A DTabManager.cpp723 fContainerView = new BView("web view container", 0);
870 TabManager::AddTab(BView* view, const char* label, int32 index) argument
873 fCardLayout->AddView(index, view);
880 // It's important to remove the view first, since
891 BView* view = item->View(); local
893 return view;
/haiku/src/apps/networkstatus/
H A DNetworkStatusView.cpp363 BTextView* view = alert->TextView(); local
366 view->SetStylable(true);
367 view->GetFont(&font);
369 view->SetFontAndColor(0, boldLength, &font);
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp49 virtual void TargetedByScrollView(BScrollView* view);
100 FindTextView::TargetedByScrollView(BScrollView* view) argument
102 BTextView::TargetedByScrollView(view);
103 fScrollView = view;
/haiku/src/bin/desklink/
H A DVolumeControl.cpp349 BView* view = OffscreenView(); local
361 be_control_look->DrawSliderBar(view, frame, frame, base, leftFillColor,
/haiku/headers/private/interface/
H A DColumnListView.h39 / Description: Experimental multi-column list view.
247 // The column list view class.
293 // The status view is a little area in the lower left hand corner.
294 void AddStatusView(BView* view);
372 virtual void DrawLatch(BView* view, BRect frame,
/haiku/src/apps/tv/
H A DController.cpp87 Controller::SetVideoView(VideoView *view) argument
89 fVideoView = view;
H A DVideoNode.cpp76 VideoNode::VideoNode(const char *name, VideoView *view) argument
80 , fVideoView(view)
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentLayout.cpp192 TextDocumentLayout::Draw(BView* view, const BPoint& offset, argument
204 layout.layout->Draw(view, location);
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DBreakpointListView.cpp71 ListInputFilter(BView* view) argument
74 fTargetView(view)
/haiku/src/servers/app/
H A DDesktop.h172 void AddWorkspacesView(WorkspacesView* view);
173 void RemoveWorkspacesView(WorkspacesView* view);
H A DDesktop.cpp328 // get the view token from the click target
1084 Desktop::AddWorkspacesView(WorkspacesView* view) argument
1086 if (view->Window() == NULL || view->Window()->IsHidden())
1091 if (!fWorkspacesViews.HasItem(view))
1092 fWorkspacesViews.AddItem(view);
1097 Desktop::RemoveWorkspacesView(WorkspacesView* view) argument
1100 fWorkspacesViews.RemoveItem(view);
1357 // find workspaces views in view hierarchy
1415 while (WorkspacesView* view
2216 View* view = window->TopView(); local
3116 WorkspacesView* view = fWorkspacesViews.ItemAt(i); local
3132 WorkspacesView* view = fWorkspacesViews.ItemAt(i); local
[all...]
/haiku/src/preferences/screensaver/
H A DScreenSaverWindow.cpp786 // Iterate over add-on directories, and add their files to the list view
866 BView* view = fPreviewView->RemovePreview(); local
876 delete view;
892 BView* view = fPreviewView->AddPreview(); local
894 fSaverRunner = new ScreenSaverRunner(view->Window(), view, fSettings);
910 if (saver->StartSaver(view, true) == B_OK) {
1050 // Create the tab view
1061 // Create the topmost background view
1097 // We delete this here in order to make sure the module view save
[all...]
/haiku/src/apps/screenshot/
H A DScreenshotWindow.cpp701 // Create a window with a configuration view
702 BView* view;
706 translator, NULL, &view, &rect);
707 if (status != B_OK || view == NULL) {
715 view->GetPreferredSize(&width, &height);
717 fSettingsWindow->AddChild(view);
726 fSettingsWindow->AddChild(view);
/haiku/src/tests/kits/interface/picture/
H A DSVGViewView.cpp1258 void Svg2PictureView::_StartElement(Svg2PictureView *view, const XML_Char *name, const XML_Char **attributes) { argument
1259 view->StartElement(name, attributes);
1262 void Svg2PictureView::_EndElement(Svg2PictureView *view, const XML_Char *name) { argument
1263 view->EndElement(name);
1266 void Svg2PictureView::_CharacterDataHandler(Svg2PictureView *view, const XML_Char *s, int len) { argument
1267 view->CharacterDataHandler(s, len);
/haiku/src/servers/app/drawing/interface/virtual/
H A DDWindowHWInterface.cpp114 DirectMessageFilter(DView* view);
128 BView(bounds, "graphics card view", B_FOLLOW_ALL, 0)
178 DirectMessageFilter::DirectMessageFilter(DView* view) argument
181 fView(view)
231 DView* view = new DView(Bounds()); local
232 AddChild(view);
233 view->MakeFocus();
722 // so that the view does not accidentally draw a freed bitmap
/haiku/src/tests/kits/interface/layout/
H A DLayoutTest1.cpp51 : BView("test view", B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE),
685 // split view
937 "Horizontal BGroupLayout with height for width view.")
1026 "Vertical BGroupLayout with height for width view.")
1115 "BGridLayout with height for width view.")
1216 "Horizontal BGroupLayout with height for width view and "
1308 "BGridLayout with height for width view and horizontal BSplitters.")
1561 BView* scrollView = new BScrollView("test scroll view", fTestList);
1565 BView* cardView = new BView("card view", 0, fTestCardLayout);
1621 // the test view
1641 _DumpViewHierarchy(BView* view, int32 indent = 0) argument
[all...]
/haiku/src/preferences/keymap/
H A DKeymapWindow.cpp1032 KeymapWindow::_SelectCurrentMap(BListView* view) argument
1037 for (int32 i = 0; i < view->CountItems(); i++) {
1039 static_cast<KeymapListItem *>(view->ItemAt(i));
1041 view->Select(i);
1042 view->ScrollToSelection();
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp49 BView * view; member in struct:engine_state
133 fOffscreen = new(std::nothrow) BView(bounds, "offscreen remote view",
383 "offscreen remote view", B_FOLLOW_NONE, B_WILL_DRAW);
385 TRACE_ERROR("failed to allocate offscreen view\n");
395 state->view = offscreen;
415 fOffscreenBitmap->RemoveChild(state->view);
416 delete state->view;
617 BView *offscreen = state->view;
/haiku/src/kits/tracker/
H A DPoseView.cpp186 BSearch(PoseList* table, const BPose* key, BPoseView* view,
191 PoseCompareAddWidget(const BPose* p1, const BPose* p2, BPoseView* view);
496 // Always realign columns, since the title-view snaps on resize anyway.
562 // recover if desktop window view state set wrong
580 // recover if desktop window view state set wrong
699 // save view state into object
936 // update item count view in window if necessary
967 // keep the view state in sync
1120 BorderedView* view = dynamic_cast<BorderedView*>(Parent()); local
1121 if (view !
1398 BPoseView* view = dynamic_cast<BPoseView*>(lock.Handler()); local
4495 HandleDropCommon(BMessage* message, Model* targetModel, BPose* targetPose, BView* view, BPoint dropPoint) argument
5853 BView* view = Window()->FindView("MenuBar"); local
7696 BView* view = new BView(bitmap->Bounds(), "", B_FOLLOW_NONE, 0); local
9398 PoseCompareAddWidget(const BPose* p1, const BPose* p2, BPoseView* view) argument
9453 BSearch(PoseList* table, const BPose* key, BPoseView* view, int (*cmp)(const BPose*, const BPose*, BPoseView*), bool returnClosest) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/scrollview/
H A DScrollView.cpp64 // Notify our parent scroll view. Note: the value already has changed,
590 BView* view = dynamic_cast<BView*>(newTarget);
591 fChild = view;
592 if (view)
593 AddChild(view);
626 // Set transparent view color -- our area is completely covered by
794 // Convenience function: Sets a view's visibility state to /visible/.
797 // view. /view/ must be valid.
800 set_visible_state(BView* view, boo
[all...]

Completed in 342 milliseconds

<<11121314151617181920