Searched refs:view (Results 76 - 100 of 492) sorted by relevance

1234567891011>>

/haiku/src/add-ons/screen_savers/icons/
H A DIconDisplay.cpp67 IconDisplay::ClearOn(BView* view) argument
72 view->FillRect(fFrame);
77 IconDisplay::DrawOn(BView* view, uint32 delta) argument
84 rgb_color backColor = view->HighColor();
133 view->SetHighColor(backColor);
134 view->DrawBitmap(fBitmap, BPoint(fFrame.left, fFrame.top));
136 view->SetHighColor(backColor);
H A DIconDisplay.h34 void ClearOn(BView* view);
35 void DrawOn(BView* view, uint32 delta);
/haiku/src/add-ons/screen_savers/leaves/
H A DLeaves.cpp99 Leaves::StartConfig(BView* view) argument
101 BRect bounds = view->Bounds();
113 view->AddChild(dropRateSlider);
123 view->AddChild(leafSizeSlider);
133 view->AddChild(sizeVariationSlider);
137 textView->SetViewColor(view->ViewColor());
148 view->AddChild(textView);
150 BWindow* window = view->Window();
160 Leaves::StartSaver(BView* view, bool preview) argument
165 view
220 Draw(BView* view, int32 frame) argument
[all...]
/haiku/src/add-ons/screen_savers/slideshowsaver/
H A DSlideShowSaver.h50 virtual void StartConfig(BView *view);
51 virtual status_t StartSaver(BView *view, bool preview);
52 virtual void Draw(BView *view, int32 frame);
82 void LayoutCaption(BView *view, BFont &font, BPoint &pos, BRect &rect);
83 void DrawCaption(BView *view);
84 // void UpdateCaption(BView *view);
H A DSlideShowSaver.cpp198 SlideShowSaver::StartConfig(BView *view) argument
200 view->AddChild(new SlideShowConfigView(
206 SlideShowSaver::StartSaver(BView *view, bool preview) argument
221 SlideShowSaver::Draw(BView *view, int32 frame) argument
225 view->SetLowColor(0, 0, 0);
226 view->SetHighColor(192, 192, 192);
227 view->SetViewColor(192, 192, 192);
243 vwBounds = view->Bounds();
252 BRect border = destRect, bounds = view->Bounds();
254 view
470 LayoutCaption(BView *view, BFont &font, BPoint &pos, BRect &rect) argument
491 DrawCaption(BView *view) argument
[all...]
/haiku/src/add-ons/screen_savers/spider/
H A DSpiderSaver.h50 virtual void StartConfig(BView *view);
51 virtual status_t StartSaver(BView *view, bool preview);
53 virtual void Draw(BView* view, int32 frame);
67 void _DrawInto(BView *view);
68 void _DrawPolygon(Polygon* polygon, BView *view);
/haiku/src/kits/tracker/
H A DTests.cpp173 BView* view = target->FindView("iconView"); local
174 ASSERT(view);
177 view->SetHighColor(255, 255, 255);
178 view->FillRect(bounds);
180 view->SetHighColor(0, 0, 0);
184 view->DrawString(buffer, BPoint(20, bounds.bottom - 20));
190 view->DrawString(buffer, BPoint(20, bounds.bottom - 30));
194 view->DrawString(buffer, BPoint(20, bounds.bottom - 40));
209 IconCache::sIconCache->Draw(&model, view,
231 BView* view
324 BView* view = new BView(Bounds(), "iconView", B_FOLLOW_ALL, B_WILL_DRAW); local
[all...]
H A DDraggableContainerIcon.cpp132 BView* view = new BView(dragBitmap->Bounds(), "", B_FOLLOW_NONE, 0); local
133 dragBitmap->AddChild(view);
134 view->SetOrigin(0, 0);
135 BRect clipRect(view->Bounds());
138 view->ConstrainClippingRegion(&newClip);
141 view->SetHighColor(0, 0, 0, 0);
142 view->FillRect(view->Bounds());
143 view->SetDrawingMode(B_OP_ALPHA);
148 view
[all...]
/haiku/headers/os/interface/
H A DControlLook.h109 virtual void DrawButtonFrame(BView* view, BRect& rect,
115 virtual void DrawButtonFrame(BView* view, BRect& rect,
122 virtual void DrawButtonFrame(BView* view, BRect& rect,
133 virtual void DrawButtonBackground(BView* view, BRect& rect,
139 virtual void DrawButtonBackground(BView* view, BRect& rect,
146 virtual void DrawButtonBackground(BView* view, BRect& rect,
157 virtual void DrawMenuBarBackground(BView* view, BRect& rect,
163 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
169 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
176 virtual void DrawMenuFieldFrame(BView* view, BRec
[all...]
/haiku/src/add-ons/screen_savers/simpleclock/
H A DSimpleClock.cpp24 void StartConfig(BView *view);
25 status_t StartSaver(BView *view, bool preview);
26 void Draw(BView *view, int32 frame);
28 void _drawBlock(BView *view, float x, float y, float alpha,
30 void _drawArrow(BView *view, float x0, float y0, float angle,
52 Clock::StartConfig(BView *view) argument
58 view->AddChild(aboutView);
61 view->AddChild(aboutView);
66 Clock::StartSaver(BView *view, bool) argument
74 Clock::Draw(BView *view, int3 argument
146 _drawBlock(BView *view, float x, float y, float alpha, float size) argument
161 _drawArrow(BView *view, float x0, float y0, float angle, float length, float coeff, float width) argument
[all...]
/haiku/src/apps/cortex/DiagramView/
H A DDiagramEndPoint.cpp98 if (view())
100 view()->PushState();
104 view()->ConstrainClippingRegion(&region);
107 view()->PopState();
131 DiagramView* v = view();
138 view()->DragMessage(&dragMsg, BRect(0.0, 0.0, -1.0, -1.0), view());
139 view()->MessageDragged(point, B_INSIDE_VIEW, &dragMsg);
168 view()->trackWire(point);
173 view()
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
H A DStringChartLegend.h31 virtual void GetMinimumLegendSpacing(BView* view,
35 BView* view);
36 virtual void RenderLegend(ChartLegend* legend, BView* view,
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyEditorFactory.cpp54 IconValueView* view = new IconValueView(i); local
55 view->SetIcon(i->Icon(), i->Width(), i->Height(), i->Format());
56 return view;
/haiku/src/apps/icon-o-matic/transformable/
H A DPerspectiveBoxStates.h29 virtual void UpdateViewCursor(BView* view, BPoint current) const = 0;
32 void _SetViewCursor(BView* view,
48 virtual void UpdateViewCursor(BView* view, BPoint current) const;
/haiku/src/tests/kits/interface/
H A DGetMouseTest.cpp7 class view : public BView { class in inherits:BView
9 view(BRect rect) function in class:view
10 : BView(rect, "test view", B_FOLLOW_ALL_SIDES, B_WILL_DRAW)
36 AddChild(new view(Bounds()));
/haiku/src/apps/aboutsystem/
H A DHyperTextActions.h18 virtual void Clicked(HyperTextView* view, BPoint where,
30 virtual void Clicked(HyperTextView* view, BPoint where,
/haiku/src/apps/mediaconverter/
H A DMediaEncoderWindow.cpp18 MediaEncoderWindow::MediaEncoderWindow(BRect frame, BView* view) argument
26 fView = view;
34 // The view must continue to exist until conversion complete.
/haiku/src/apps/webpositive/autocompletion/
H A DAutoCompleter.cpp64 BAutoCompleter::CompletionStyle::SetEditView(EditView* view) argument
67 fEditView = view;
89 BAutoCompleter::CompletionStyle::SetChoiceView(ChoiceView* view) argument
92 fChoiceView = view;
216 BAutoCompleter::SetEditView(EditView* view) argument
219 fCompletionStyle->SetEditView(view);
240 BAutoCompleter::SetChoiceView(ChoiceView* view) argument
243 fCompletionStyle->SetChoiceView(view);
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DTest.h20 BView* view = NULL);
27 virtual void SetView(BView* view);
/haiku/src/add-ons/screen_savers/gravity/
H A DGravity.h36 void StartConfig(BView* view);
38 status_t StartSaver(BView* view, bool preview);
/haiku/src/add-ons/network_settings/dialup/
H A DDialUpApplication.cpp58 DialUpView *view = new DialUpView(Bounds()); local
60 AddChild(view);
/haiku/headers/private/interface/
H A DHaikuControlLook.h33 virtual void DrawButtonFrame(BView* view, BRect& rect,
39 virtual void DrawButtonFrame(BView* view, BRect& rect,
46 virtual void DrawButtonFrame(BView* view, BRect& rect,
57 virtual void DrawButtonBackground(BView* view, BRect& rect,
63 virtual void DrawButtonBackground(BView* view, BRect& rect,
70 virtual void DrawButtonBackground(BView* view, BRect& rect,
81 virtual void DrawMenuBarBackground(BView* view, BRect& rect,
87 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
93 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
100 virtual void DrawMenuFieldFrame(BView* view, BRec
[all...]
/haiku/src/kits/shared/
H A DStatusView.cpp14 AdoptScrollBarFontSize(BView* view) argument
37 view->SetFontSize(minFontSize);
/haiku/src/kits/bluetooth/
H A DDeviceClass.cpp352 DeviceClass::Draw(BView* view, const BPoint& point) argument
360 view->SetHighColor(kBlue);
361 view->FillRoundRect(BRect(point.x + IconInsets, point.y + IconInsets,
364 view->SetHighColor(kWhite);
369 view->StrokeRoundRect(BRect(point.x + IconInsets + uint(PixelsForIcon/4),
373 view->StrokeRect(BRect(point.x + IconInsets + uint(PixelsForIcon/4) + 4,
377 view->StrokeLine(BPoint(point.x + IconInsets + uint(PixelsForIcon/4) + 4,
381 view->StrokeLine(BPoint(point.x + IconInsets + uint(PixelsForIcon/4) + 4,
385 view->StrokeLine(BPoint(point.x + IconInsets + uint(PixelsForIcon/4) + 4,
391 view
[all...]
/haiku/src/apps/diskprobe/
H A DAttributeWindow.cpp40 void AddRawEditorTab(BView *view);
41 void SetTypeEditorTab(BView *view);
56 EditorTabView::AddRawEditorTab(BView *view) argument
58 BTab* tab = new BTab(view);
60 AddTab(view, tab);
65 EditorTabView::SetTypeEditorTab(BView *view) argument
67 if (view == NULL) {
68 view = new BStringView(B_TRANSLATE("Type editor"),
70 ((BStringView*)view)->SetAlignment(B_ALIGN_CENTER);
76 .Add(view)
[all...]

Completed in 138 milliseconds

1234567891011>>