Searched refs:view (Results 51 - 75 of 492) sorted by relevance

1234567891011>>

/haiku/src/apps/icon-o-matic/transformable/
H A DCanvasTransformBox.cpp15 CanvasTransformBox::CanvasTransformBox(CanvasView* view) argument
17 TransformBox(view, BRect(0.0, 0.0, 1.0, 1.0)),
19 fCanvasView(view),
H A DPerspectiveBoxStates.cpp31 DragState::_SetViewCursor(BView* view, const uchar* cursorData) const argument
34 view->SetViewCursor(&cursor);
65 DragCornerState::UpdateViewCursor(BView* view, BPoint current) const argument
67 _SetViewCursor(view, kPathMoveCursor);
/haiku/src/tests/add-ons/print/pdf/bezierbounds/
H A DBBApp.cpp44 // add view
46 view = NULL;
47 AddChild(view = new BBView(aRect));
63 view->SetLineMode((cap_mode)data, view->LineJoinMode(), view->LineMiterLimit());
64 view->Invalidate();
67 view->SetLineMode(view->LineCapMode(), (join_mode)data, view
[all...]
/haiku/src/tests/add-ons/print/pdf/linepathbuilder/
H A DLPBApp.cpp44 // add path view
46 view = NULL;
47 AddChild(view = new PathView(aRect));
63 view->SetLineMode((cap_mode)data, view->LineJoinMode(), view->LineMiterLimit());
64 view->Invalidate();
67 view->SetLineMode(view->LineCapMode(), (join_mode)data, view
[all...]
/haiku/src/tests/servers/app/benchmark/
H A DStringTest.h17 virtual void Prepare(BView* view);
18 virtual bool RunIteration(BView* view);
19 virtual void PrintResults(BView* view);
/haiku/src/add-ons/screen_savers/leaves/
H A DLeaves.h20 virtual void Draw(BView* view, int32 frame);
21 virtual void StartConfig(BView* view);
22 virtual status_t StartSaver(BView* view, bool preview);
/haiku/src/add-ons/screen_savers/icons/
H A DIconsSaver.h30 virtual status_t StartSaver(BView *view, bool preview);
33 virtual void Draw(BView *view, int32 frame);
35 virtual void StartConfig(BView* view);
/haiku/src/apps/webpositive/
H A DDownloadWindow.cpp94 BScrollView("Downloads scroll view", target, 0, false, true,
211 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
213 if (!view)
216 view->ConvertFromScreen(&viewWhere);
217 if (view->Bounds().Contains(viewWhere)) {
218 view->ShowContextMenu(where);
333 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
335 if (!view)
337 if (view->Download() != NULL) {
372 DownloadProgressView* view local
389 DownloadProgressView* view = new DownloadProgressView(download); local
430 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
457 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
479 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
502 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
525 DownloadProgressView* view = dynamic_cast<DownloadProgressView*>( local
551 DownloadProgressView* view = new DownloadProgressView( local
[all...]
H A DBrowserWindow.h122 virtual void SetCurrentWebView(BWebView* view);
135 BWebView* view);
138 virtual void CloseWindowRequested(BWebView* view);
139 virtual void NewPageCreated(BWebView* view,
143 BWebView* view);
145 BWebView* view);
146 virtual void LoadProgress(float progress, BWebView* view);
147 virtual void LoadFailed(const BString& url, BWebView* view);
149 BWebView* view);
152 BWebView* view);
[all...]
/haiku/src/tests/kits/interface/
H A DSliderTest.cpp24 downBy(BRect &rect, BView* view) argument
26 rect.bottom = rect.top + view->Bounds().Height() + 10;
32 rightBy(BRect &rect, BView* view) argument
34 rect.right = rect.left + view->Bounds().Width() + 10;
47 BView* view = new BView(rect, NULL, B_FOLLOW_ALL, B_WILL_DRAW); local
48 view->SetViewUIColor(B_PANEL_BACKGROUND_COLOR);
49 AddChild(view);
59 view->AddChild(slider);
65 view->AddChild(slider);
77 view
[all...]
H A DScrollViewSetBorderTest.cpp19 BView* view = new BView("", B_WILL_DRAW, NULL); local
20 view->SetViewColor(255, 0, 0, 255);
21 view->SetExplicitMinSize(BSize(B_SIZE_UNSET, 200));
23 fScrollView = new BScrollView("mit", view, B_NAVIGABLE_JUMP, true,
82 BView* view = fScrollView->Target(); local
85 view->Bounds().PrintToStream();
86 view->Frame().PrintToStream();
/haiku/src/preferences/virtualmemory/
H A DVirtualMemory.cpp44 BTextView* view = alert->TextView(); local
47 view->SetStylable(true);
49 view->GetFont(&font);
52 view->SetFontAndColor(0, 13, &font);
/haiku/src/add-ons/screen_savers/butterfly/
H A DButterfly.cpp43 Butterfly::StartConfig(BView* view) argument
45 BPrivate::BuildDefaultSettingsView(view, "Butterfly",
51 Butterfly::StartSaver(BView* view, bool preview) argument
53 view->SetLowColor(0, 0, 0);
54 view->FillRect(view->Bounds(), B_SOLID_LOW);
55 view->SetDrawingMode(B_OP_ALPHA);
56 view->SetBlendingMode(B_CONSTANT_ALPHA, B_ALPHA_OVERLAY);
57 view->SetLineMode(B_ROUND_CAP, B_ROUND_JOIN);
59 view
83 Draw(BView* view, int32 frame) argument
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChartAxis.h24 virtual BSize PreferredSize(BView* view, BSize maxSize) = 0;
25 virtual void Render(BView* view, BRect updateRect) = 0;
H A DStringChartLegend.cpp43 StringChartLegendRenderer::GetMinimumLegendSpacing(BView* view, argument
52 StringChartLegendRenderer::LegendSize(ChartLegend* _legend, BView* view) argument
64 StringChartLegendRenderer::RenderLegend(ChartLegend* _legend, BView* view, argument
73 view->SetFont(&fFont);
74 view->SetHighColor(rgb_color().set_to(0, 0, 0, 255));
75 view->DrawString(legend->String(), point);
/haiku/src/apps/debugger/user_interface/gui/util/
H A DGuiSettingsUtils.h21 BSplitView* view);
23 BSplitView* view);
/haiku/src/apps/patchbay/
H A DMidiEventMeter.h30 void Pulse(BView* view);
32 void Draw(BView* view);
/haiku/src/apps/packageinstaller/
H A DPackageWindow.cpp31 PackageView* view = new PackageView(ref); local
34 .Add(view)
/haiku/src/add-ons/screen_savers/gravity/
H A DGravity.cpp55 Gravity::StartConfig(BView* view) argument
57 fConfigView = new ConfigView(view->Bounds(), this);
58 view->AddChild(fConfigView);
63 Gravity::StartSaver(BView* view, bool preview) argument
67 fGravityView = new GravityView(view->Bounds(), this);
68 view->AddChild(fGravityView);
/haiku/src/add-ons/screen_savers/shelf/
H A DShelf.cpp44 void Draw(BView *view, int32 frame);
45 void StartConfig(BView *view);
47 status_t StartSaver(BView *view, bool preview);
99 Shelf::StartConfig(BView *view) argument
113 helpText->SetViewColor(view->ViewColor());
123 BLayoutBuilder::Group<>(view, B_VERTICAL, B_USE_HALF_ITEM_SPACING)
152 fConfigWindow->SendBehind(view->Window());
173 Shelf::StartSaver(BView *view, bool preview) argument
177 view->SetViewColor(216, 216, 216, 0);
179 fShelf = new BShelf(&fShelfData, view);
271 Draw(BView *view, int32 frame) argument
[all...]
/haiku/src/add-ons/control_look/FlatControlLook/
H A DFlatControlLook.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 DrawMenuBarBackground(BView* view, BRect& rect,
62 virtual void DrawMenuItemBackground(BView* view,
66 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
69 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
72 virtual void DrawMenuFieldFrame(BView* view, BRect& rect,
78 virtual void DrawMenuBackground(BView* view,
83 virtual void DrawScrollBarBorder(BView* view,
[all...]
/haiku/src/add-ons/screen_savers/spider/
H A DSpiderSaver.cpp85 SpiderSaver::StartConfig(BView* view) argument
87 SpiderView* configView = new SpiderView(view->Bounds(), this,
89 view->AddChild(configView);
94 SpiderSaver::StartSaver(BView* view, bool preview) argument
99 fBounds = view->Bounds();
114 SpiderSaver::Draw(BView* view, int32 frame) argument
127 view->DrawBitmap(fBackBitmap, BPoint(0.0, 0.0));
246 "SpiderSaver::_AllocBackBitmap(): view allocation failed\n");
270 SpiderSaver::_DrawInto(BView* view) argument
275 view
321 _DrawPolygon(Polygon* polygon, BView* view) argument
[all...]
/haiku/src/add-ons/control_look/BeControlLook/
H A DBeControlLook.h33 virtual void DrawButtonFrame(BView* view, BRect& rect,
39 virtual void DrawButtonFrame(BView* view, BRect& rect,
45 virtual void DrawButtonFrame(BView* view, BRect& rect,
53 virtual void DrawButtonBackground(BView* view, BRect& rect,
59 virtual void DrawButtonBackground(BView* view, BRect& rect,
64 virtual void DrawButtonBackground(BView* view, BRect& rect,
71 virtual void DrawCheckBox(BView* view, BRect& rect,
76 virtual void DrawRadioButton(BView* view, BRect& rect,
81 virtual void DrawScrollBarBorder(BView* view,
85 virtual void DrawScrollBarButton(BView* view,
[all...]
/haiku/src/preferences/appearance/
H A DColorWhichListView.cpp70 BView* view = new BView(rect, "", B_FOLLOW_NONE, B_WILL_DRAW); local
71 bitmap->AddChild(view);
73 view->SetHighColor(B_TRANSPARENT_COLOR);
74 view->FillRect(view->Bounds());
79 view->SetHighColor(0, 0, 0, 100);
80 view->FillRect(rect);
83 view->SetHighColor(std::min(255, (int)(1.2 * color.red + 40)),
86 view->StrokeRect(rect);
91 view
[all...]
/haiku/src/apps/terminal/
H A DColorListView.cpp70 BView* view = new BView(rect, "", B_FOLLOW_NONE, B_WILL_DRAW); local
71 bitmap->AddChild(view);
73 view->SetHighColor(B_TRANSPARENT_COLOR);
74 view->FillRect(view->Bounds());
79 view->SetHighColor(0, 0, 0, 100);
80 view->FillRect(rect);
83 view->SetHighColor(std::min(255, (int)(1.2 * color.red + 40)),
86 view->StrokeRect(rect);
91 view
[all...]

Completed in 134 milliseconds

1234567891011>>