Searched refs:rect (Results 126 - 150 of 512) sorted by relevance

1234567891011>>

/haiku/src/tests/add-ons/print/pdf/linepathbuilder/
H A DPathView.h17 PathView(BRect rect);
/haiku/src/tests/servers/app/find_view/
H A DFindView.cpp16 View(BRect rect, const char* name, uint32 followMode, argument
18 : BView(rect, name, followMode, 0)
27 TestView(BRect rect, const char* name, uint32 followMode, argument
29 : View(rect, name, followMode, red, green, blue)
/haiku/src/tests/servers/app/newerClipping/drawing/
H A DDrawingEngine.cpp72 clipping_rect rect = fCurrentClipping.RectAtInt(i); local
74 if (rect.left <= x &&
75 rect.right >= x) {
76 int32 i = max_c(rect.top, y1);
77 int32 end = min_c(rect.bottom, y2);
96 clipping_rect rect = fCurrentClipping.RectAtInt(i); local
98 if (rect.top <= y &&
99 rect.bottom >= y) {
100 int32 i = max_c(rect.left, x1);
101 int32 end = min_c(rect
194 BRect rect; member in struct:node
[all...]
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellValueRenderer.h28 BRect rect, BView* targetView) = 0;
H A DTableCellFormattedValueRenderer.h28 BRect rect, BView* targetView);
/haiku/src/add-ons/mail_daemon/inbound_protocols/imap/
H A DFolderConfigWindow.h22 FolderConfigWindow(BRect rect,
/haiku/src/bin/network/ppp_up/
H A DPPPStatusView.h16 PPPStatusView(BRect rect, ppp_interface_id id);
/haiku/src/apps/diskprobe/
H A DProbeWindow.h15 ProbeWindow(BRect rect, entry_ref* ref);
H A DAttributeWindow.h18 AttributeWindow(BRect rect, entry_ref* ref,
/haiku/src/add-ons/translators/shared/
H A DTranslatorWindow.h56 BRect rect = BRect(0, 0, 1, 1));
/haiku/src/tools/translation/inspector/
H A DActiveTranslatorsWindow.h41 ActiveTranslatorsWindow(BRect rect, const char *name, BList *plist);
/haiku/src/apps/serialconnect/
H A DTermView.cpp366 VTermRect rect; local
367 rect.start_col = (int)floor(pixels.left / fFontWidth);
368 rect.end_col = (int)ceil(pixels.right / fFontWidth);
369 rect.start_row = (int)floor(pixels.top / fFontHeight);
370 rect.end_row = (int)ceil(pixels.bottom / fFontHeight);
377 rect.start_row, pixels.top,
378 rect.end_row, pixels.bottom,
379 rect.start_col, pixels.left,
380 rect.end_col, pixels.right
383 return rect;
389 BRect rect; local
415 VTermRect rect; local
455 _Damage(VTermRect rect) argument
549 _Damage(VTermRect rect, void* user) argument
[all...]
/haiku/src/tests/servers/app/desktop_window/
H A DDesktopWindow.cpp21 View(BRect rect);
28 View::View(BRect rect) argument
29 : BView(rect, "desktop view", B_FOLLOW_ALL, B_WILL_DRAW)
/haiku/src/tests/servers/app/view_state/
H A DViewState.cpp19 View(BRect rect);
43 View::View(BRect rect) argument
45 BView(rect, "view state", B_FOLLOW_ALL, B_WILL_DRAW)
/haiku/src/tests/servers/app/workspace_activated/
H A DWorkspaceActivated.cpp36 View(BRect rect);
43 View::View(BRect rect) argument
44 : BView(rect, "workspace", B_FOLLOW_ALL, B_WILL_DRAW)
/haiku/src/servers/app/
H A DSimpleTransform.h56 void Apply(BRect* rect) const
59 rect->OffsetBy(fOffset.x, fOffset.y);
61 _Apply(rect->left, rect->top);
62 _Apply(rect->right, rect->bottom);
66 void Apply(IntRect* rect) const
69 rect->OffsetBy(fOffset.x, fOffset.y);
71 _Apply(rect->left, rect
[all...]
/haiku/src/tests/kits/shared/shake_filter/
H A DShakeFilterTest.cpp20 View(BRect rect, const char* name, uint32 followMode);
28 View::View(BRect rect, const char* name, uint32 followMode) argument
30 BView(rect, name, followMode, B_WILL_DRAW)
/haiku/src/tests/servers/app/cursor_test/
H A DCursorBitmapTest.cpp28 View(BRect rect);
38 View::View(BRect rect) argument
39 : BView(rect, "desktop view", B_FOLLOW_ALL, B_WILL_DRAW)
/haiku/src/apps/processcontroller/
H A DPreferences.cpp129 BRect rect = window->Frame(); local
131 ReplacePoint(name, rect.LeftTop());
133 AddPoint(name, rect.LeftTop());
159 BRect rect = window->Frame(); local
161 ReplaceRect(name, rect);
163 AddRect(name, rect);
238 Preferences::SaveRect(BRect& rect, const char* name) argument
242 ReplaceRect(name, rect);
244 AddRect(name, rect);
250 Preferences::ReadRect(BRect& rect, cons argument
[all...]
/haiku/src/apps/powerstatus/
H A DPowerStatusView.cpp170 PowerStatusView::_DrawBattery(BView* view, BRect rect) argument
172 BRect lightningRect = rect;
173 float quarter = floorf((rect.Height() + 1) / 4);
174 rect.top += quarter;
175 rect.bottom -= quarter;
177 rect.InsetBy(2, 0);
179 float left = rect.left;
180 rect.left += rect.Width() / 11;
181 lightningRect.left = rect
313 DrawTo(BView* view, BRect rect) argument
[all...]
/haiku/src/apps/clock/
H A Dcl_view.cpp162 TOnscreenView::TOnscreenView(BRect rect, const char *title, short mRadius, argument
164 : BView(rect, title, B_FOLLOW_NONE,
169 InitObject(rect, mRadius, hRadius, offset, 1, TRUE);
171 rect.OffsetTo(B_ORIGIN);
172 rect.top = rect.bottom - 7;
173 rect.left = rect.right - 7;
174 BDragger *dw = new BDragger(rect, this);
180 TOnscreenView::InitObject(BRect rect, shor argument
309 Draw(BRect rect) argument
[all...]
/haiku/src/apps/showimage/
H A DProgressWindow.cpp38 BRect rect = Bounds(); local
40 BView* view = new BView(rect, NULL, B_FOLLOW_ALL, B_WILL_DRAW);
44 rect = view->Bounds().InsetByCopy(5, 5);
45 fStatusBar = new BStatusBar(rect, "status", NULL, NULL);
48 fStatusBar->ResizeTo(rect.Width(), height);
/haiku/src/libs/print/libprint/
H A DPrintProcess.cpp20 file->Read(&rect, sizeof(BRect));
25 DBGMSG(("picture_data::rect = %f, %f, %f, %f\n",
26 rect.left, rect.top, rect.right, rect.bottom));
H A DPrintUtils.cpp40 ScaleRect(const BRect& rect, float scale) argument
42 BRect scaleRect(rect);
98 SetRect(BMessage* msg, const char* name, const BRect& rect) argument
101 msg->ReplaceRect(name, rect);
103 msg->AddRect(name, rect);
/haiku/src/apps/remotedesktop/
H A DRemoteView.cpp551 BRect rect; local
552 if (message.Read(rect) != B_OK)
555 Invalidate(rect);
589 BRect rect; local
593 if (message.Read(rect) != B_OK)
596 BRect dest = rect.OffsetByCopy(xOffset, yOffset);
598 fOffscreen->CopyBits(rect, dest);
750 BRect rect; local
751 if (message.Read(rect) != B_OK)
754 offscreen->InvertRect(rect);
810 BRect rect; local
867 BRect rect; local
930 BRect rect; local
956 BRect rect; local
1184 BRect rect; local
[all...]

Completed in 93 milliseconds

1234567891011>>