Searched refs:view (Results 401 - 425 of 493) sorted by relevance

<<11121314151617181920

/haiku/src/kits/interface/
H A DSeparatorView.cpp402 BSeparatorView::SetLabel(BView* view, bool deletePrevious) argument
404 if (fLabelView == view)
413 fLabelView = view;
416 AddChild(view);
H A DScrollView.cpp79 BView* view; local
80 while ((view = ChildAt(firstBar++)) != NULL) {
81 BScrollBar *bar = dynamic_cast<BScrollBar *>(view);
147 BView* view; local
148 while ((view = ChildAt(firstBar++)) != NULL) {
149 BScrollBar *bar = dynamic_cast<BScrollBar *>(view);
150 // We assume that the first non-scrollbar child view is the target.
151 // So the target view can't be a BScrollBar, but who would do that?
156 fTarget = view;
600 // we are not supposed to delete the view
[all...]
H A DWindow.cpp1094 // from a view which has the B_INPUT_METHOD_AWARE on a window
1105 message.AddMessenger("view", messenger);
1245 if (BView* view = _FindView(info->token))
1246 view->_Draw(info->updateRect);
1248 printf("_UPDATE_ - didn't find view by token: %"
1259 if (BView* view = _FindView(info->token))
1260 view->_DrawAfterChildren(info->updateRect);
1436 // Get min/max constraints of the top view and enforce window
3159 // we can't use AddChild() because this is the top view
3166 Resizes the top view t
3256 BView* view = _FindView(token); local
3435 BView* view = dynamic_cast<BView*>(target); local
3482 BView* view = dynamic_cast<BView*>(target); local
3567 _TransitForMouseMoved(BView* view, BView* viewUnderMouse) const argument
3909 BView* view = dynamic_cast<BView*>(handler); local
3918 _FindView(BView* view, BPoint point) const argument
4093 BView* view = ChildAt(index); local
[all...]
H A DView.cpp82 { B_DIRECT_SPECIFIER, 0 }, "The view's frame rectangle.", 0,
86 { B_DIRECT_SPECIFIER, 0 }, "Whether or not the view is hidden.",
99 "Directs the scripting message to the specified view.", 0
293 // set view's font state
305 // set view's state
771 debugger("Trying to delete a view that belongs to a window. "
1144 // if we're the top view, and we're interested
1145 // in the "global" view, we're inheriting the
1650 // TODO: in beos R5, location is already converted to the view
1655 // be outdated as soon as a window or even the view move
2697 AdoptViewColors(BView* view) argument
4801 BView* view = child->FindView(name); local
5207 BView* view = ChildAt(i); local
6645 _ReservedView1__5BView(BView* view, BRect rect) argument
6652 _ReservedView2__5BView(BView* view) argument
6661 _ReservedView3__5BView(BView* view) argument
6670 _ReservedView4__5BView(BView* view) argument
6680 _ReservedView5__5BView(BView* view) argument
6690 _ReservedView6__5BView(BView* view) argument
6700 _ReservedView7__5BView(BView* view, float width, float* min, float* max, float* preferred) argument
6717 _ReservedView8__5BView(BView* view, BLayout* layout) argument
6727 _ReservedView9__5BView(BView* view, bool descendants) argument
6737 _ReservedView10__5BView(BView* view) argument
[all...]
H A DDeskbar.cpp353 BDeskbar::AddItem(BView* view, int32* _id) argument
356 status_t result = view->Archive(&archive);
361 request.AddMessage("view", &archive);
H A DBMCPrivate.cpp80 if (BView* view = dynamic_cast<BView*>(*handler)) {
83 view->ConvertToParent(&point);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DListViews.cpp183 if (BView* view = Parent())
184 view->Invalidate();
838 if (BView* view = new BView(dragBitmap->Bounds(), "helper",
840 dragBitmap->AddChild(view);
853 item->DrawItem(view, itemFrame, (i % 2) == 0);
858 view->SetHighColor(kDragFrameColor);
859 view->StrokeRect(view->Bounds());
860 view->Sync();
H A DIconOptionsControl.cpp237 if (BView* view = ChildAt(index))
238 return dynamic_cast<IconButton*>(view);
/haiku/src/apps/mail/
H A DContent.cpp389 If "view" is NULL, it will assume that "line" lies on a line break,
394 FillInQuoteTextRuns(BTextView* view, quote_context* context, const char* line,
414 } else if (view != NULL) {
416 view->GetSelection(&end, &end);
418 begin = view->TextLength() == 0
419 || view->ByteAt(view->TextLength() - 1) == '\n';
423 // start = view->OffsetAt(view->CurrentLine());
425 const char *text = view
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DMultipleManipulatorState.cpp19 MultipleManipulatorState::MultipleManipulatorState(StateView* view) argument
20 : ViewState(view),
/haiku/headers/private/shared/
H A DCalendarView.h206 BCalendarView(const BCalendarView& view);
207 BCalendarView& operator=(const BCalendarView& view);
/haiku/src/apps/softwareupdater/
H A DSoftwareUpdaterWindow.h90 void _DrawBar(BPoint where, BView* view,
166 BLayoutItem* layout_item_for(BView* view);
/haiku/src/apps/deskbar/
H A DCalendarMenuWindow.cpp118 BView* view = BGroupLayoutBuilder(B_VERTICAL, 5.0) local
123 groupView->AddChild(view);
/haiku/src/kits/tracker/
H A DCountView.cpp65 BCountView::BCountView(BPoseView* view) argument
69 fPoseView(view),
/haiku/src/tests/servers/app/bitmap_drawing/
H A Dmain.cpp118 fOffscreenView(new BView(fBitmap->Bounds(), "Offscreen view",
544 BView* view = new TestView(window->Bounds(), "test", B_FOLLOW_ALL, local
547 window->AddChild(view);
549 b.OffsetTo(5.0, view->Bounds().bottom - (b.Height() + 15.0));
552 view->AddChild(control);
553 control->SetTarget(view);
/haiku/src/preferences/media/
H A DMediaWindow.cpp399 new BView("content view", 0, fContentLayout);
478 // build our list view
678 BView* view = item->View();
679 if (view != fVideoView && view != fAudioView && view != fMidiView) {
681 delete view;
/haiku/src/apps/debuganalyzer/gui/main_window/
H A DSchedulingPage.cpp235 virtual float HeaderHeight(BView* view, const Header* header) argument
237 _SetupAxis(view, header);
238 return fAxis.PreferredSize(view, view->Frame().Size()).height;
241 virtual float PreferredHeaderWidth(BView* view, const Header* header) argument
243 _SetupAxis(view, header);
244 return fAxis.PreferredSize(view, view->Frame().Size()).width;
247 virtual void DrawHeader(BView* view, BRect frame, BRect updateRect, argument
250 _SetupAxis(view, heade
257 _SetupAxis(BView* view, const Header* header) argument
[all...]
/haiku/src/tests/servers/app/painter/
H A Dmain.cpp356 BitmapView* painterView = new BitmapView(bounds, "view", bitmap);
359 BView* view = new BView(bounds, NULL, B_FOLLOW_NONE, B_WILL_DRAW); local
362 bitmap->AddChild(view);
364 // view->ConstrainClippingRegion(&clip);
374 // viewNow += test(*view, width, height, testBitmap);
375 // viewNow += test_lines(*view, width, height);
376 // viewNow += test_straight_lines(*view, width, height);
377 viewNow += test_fill_rect(*view, width, height);
378 // viewNow += test_ellipses(*view, width, height);
391 BitmapView* bViewView = new BitmapView(bounds, "view", bitma
[all...]
/haiku/src/tests/kits/interface/look/
H A DLook.cpp244 void _InvalidateChildrenAndView(BView* view) argument
246 for (int32 i = 0; BView* child = view->ChildAt(i); i++)
248 view->Invalidate();
318 BTabView* tabView = new BTabView("tab view", B_WIDTH_FROM_WIDEST);
/haiku/src/preferences/joysticks/
H A DJoyWin.cpp514 JoyWin::_FindStringItemInList(BListView *view, PortItem *item) argument
517 int32 number = view->CountItems();
519 strItem = dynamic_cast<PortItem*>(view->ItemAt(i));
/haiku/src/bin/desklink/
H A DMediaReplicant.cpp89 BTextView* view = (BTextView*)View();
92 view->SetText(fMuteMessage.String());
99 view->SetText(text.String());
/haiku/src/apps/people/
H A DPersonWindow.cpp191 BView* view = CurrentFocus(); local
192 if (view != NULL)
193 view->MessageReceived(msg);
/haiku/src/servers/app/
H A DServerWindow.cpp528 STRACE(("ServerWindow(%s)::_CreateView()-> view %s, token %" B_PRId32 "\n",
568 // Initialize the view with the current application plain font.
593 /*! Dispatches all window messages, and those view messages that
594 don't need a valid fCurrentView (ie. view creation).
1124 "\n\n\nAS_SET_CURRENT_VIEW: view not found, token %"
1139 // Start receiving top_view data -- pass NULL as the parent view.
1202 Dispatches all view messages that need a valid fCurrentView.
1248 // Received when a view is detached from a window
1254 View *view; local
1256 (void**)&view)
2241 View* view = NULL; local
4374 _SetCurrentView(View* view) argument
4408 _UpdateDrawState(View* view) argument
[all...]
/haiku/src/tests/servers/app/newerClipping/
H A DWindowLayer.cpp15 // the client draws the view, we have less flickering
71 fTopLayer = new(nothrow) ViewLayer(fFrame, "top view", B_FOLLOW_ALL, 0,
323 WindowLayer::ScrollViewBy(ViewLayer* view, int32 dx, int32 dy) argument
331 if (!view || view == fTopLayer || (dx == 0 && dy == 0))
337 view->ScrollBy(dx, dy, &dirty);
351 // inform client about the view
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp218 virtual void Draw(BView* view, BRect rect) = 0;
229 virtual void Draw(BView* view, BRect rect);
234 void _DrawArrow(BView* view, BPoint tip, BSize size,
258 virtual void Draw(BView* view, BRect rect);
504 SourceView::MarkerManager::InstructionPointerMarker::Draw(BView* view, argument
521 _DrawArrow(view, tip, BSize(10, 10), BSize(5, 5), color, true);
523 _DrawArrow(view, tip + BPoint(-0.5f, 0), BSize(9, 8),
530 SourceView::MarkerManager::InstructionPointerMarker::_DrawArrow(BView* view, argument
533 view->SetHighColor(color);
552 view
579 Draw(BView* view, BRect rect) argument
[all...]

Completed in 330 milliseconds

<<11121314151617181920