Searched refs:rect (Results 176 - 200 of 512) sorted by relevance

1234567891011>>

/haiku/src/preferences/mail/
H A DAutoConfigWindow.h28 AutoConfigWindow(BRect rect,
/haiku/src/add-ons/network_settings/dialup/
H A DInterfaceUtils.h21 extern BPoint center_on_screen(BRect rect, BWindow *window = NULL);
/haiku/src/apps/diskprobe/
H A DFindWindow.h27 FindWindow(BRect rect, BMessage& previous,
H A DTypeEditors.cpp63 MimeTypeEditor(BRect rect, DataEditor& editor);
82 NumberEditor(BRect rect, DataEditor& editor);
104 BooleanEditor(BRect rect, DataEditor& editor);
142 MessageView(BRect rect, DataEditor& editor);
162 TypeEditorView::TypeEditorView(BRect rect, const char *name, argument
164 : BView(rect, name, resizingMode, flags),
282 MimeTypeEditor::MimeTypeEditor(BRect rect, DataEditor& editor) argument
283 : TypeEditorView(rect, B_TRANSLATE("MIME type editor"), B_FOLLOW_LEFT_RIGHT, 0, editor)
287 fTextControl = new BTextControl(rect.InsetByCopy(5, 5), B_EMPTY_STRING,
293 fTextControl->ResizeTo(rect
373 NumberEditor(BRect rect, DataEditor &editor) argument
749 BooleanEditor(BRect rect, DataEditor &editor) argument
1109 MessageView(BRect rect, DataEditor &editor) argument
1287 GetTypeEditorFor(BRect rect, DataEditor& editor) argument
1345 GetTypeEditorAt(int32 index, BRect rect, DataEditor& editor) argument
[all...]
/haiku/src/apps/pulse/
H A DCPUButton.cpp33 CPUButton::CPUButton(BRect rect, const char *name, const char *label, BMessage *message) argument
34 : BControl(rect, name, label, message, B_FOLLOW_NONE, B_WILL_DRAW)
77 BRect rect(Bounds());
78 rect.top = rect.bottom - 7;
79 rect.left = rect.right - 7;
80 BDragger* dragger = new BDragger(rect, this,
88 CPUButton::Draw(BRect rect) argument
H A DDeskbarPulseView.h22 DeskbarPulseView(BRect rect);
H A DCPUButton.h19 CPUButton(BRect rect, const char *name, const char *label, BMessage *message);
23 virtual void Draw(BRect rect);
/haiku/headers/private/print/
H A DTemplate.h41 virtual void StrokeRect(BRect rect);
42 virtual void FillRect(BRect rect);
43 virtual void StrokeRoundRect(BRect rect, BPoint radii);
44 virtual void FillRoundRect(BRect rect, BPoint radii);
H A DPictureIterator.h47 virtual void StrokeRect(BRect rect) { } argument
48 virtual void FillRect(BRect rect) { } argument
49 virtual void StrokeRoundRect(BRect rect, BPoint radii) { } argument
50 virtual void FillRoundRect(BRect rect, BPoint radii) { } argument
/haiku/src/kits/print/
H A DTemplate.cpp44 void Template::StrokeRect(BRect rect) { argument
48 void Template::FillRect(BRect rect) { argument
52 void Template::StrokeRoundRect(BRect rect, BPoint radii) { argument
56 void Template::FillRoundRect(BRect rect, BPoint radii) { argument
/haiku/src/apps/debugger/user_interface/gui/teams_window/
H A DTeamsListView.cpp83 TeamsColumn::DrawField(BField* field, BRect rect, BView* parent) argument
95 float y = rect.top + ((rect.Height() - r.Height()) / 2);
102 x = rect.left + sTextMargin;
103 width = rect.right - (x + r.Width()) - (2 * sTextMargin);
104 r.Set(x + r.Width(), rect.top, rect.right - width, rect.bottom);
108 x = rect.right - sTextMargin - r.Width();
109 width = (x - rect
[all...]
/haiku/src/apps/haikudepot/ui/
H A DRatePackageWindow.cpp77 BRect rect = innerFrame; local
78 rect.left = rect.right + 1;
79 rect.right = rect.left + vScrollBar->Bounds().Width();
80 rect.top -= 1;
81 rect.bottom += 1;
83 vScrollBar->MoveTo(rect.left, rect.top);
84 vScrollBar->ResizeTo(rect
88 BRect rect = innerFrame; local
[all...]
H A DPackageListView.cpp144 virtual void DrawField(BField* field, BRect rect,
381 PackageColumn::DrawField(BField* field, BRect rect, BView* parent) argument
394 float y = rect.top + ((rect.Height() - r.Height()) / 2) - 1;
401 x = rect.left + sTextMargin;
402 width = rect.right - (x + r.Width()) - (2 * sTextMargin);
403 r.Set(x + r.Width(), rect.top, rect.right - width, rect.bottom);
407 x = rect
[all...]
/haiku/src/apps/debugger/user_interface/gui/inspector_window/
H A DMemoryView.cpp163 MemoryView::Draw(BRect rect) argument
165 rect = Bounds();
168 StrokeLine(BPoint(divider, rect.top),
169 BPoint(divider, rect.bottom));
178 StrokeLine(BPoint(divider, rect.top),
179 BPoint(divider, rect.bottom));
188 int32 startLine = int32(rect.top / fLineHeight);
203 for (; currentAddress < maxAddress && drawPoint.y < rect.bottom
910 MemoryView::_GetEditCaretRect(BRect& rect) const
920 rect
937 BRect rect; local
[all...]
/haiku/src/kits/interface/
H A DRect.cpp251 BRect::Intersects(BRect rect) const
253 if (!IsValid() || !rect.IsValid())
256 return !(rect.left > right || rect.right < left
257 || rect.top > bottom || rect.bottom < top);
270 BRect::Contains(BRect rect) const
272 return rect.left >= left && rect.right <= right
273 && rect
[all...]
/haiku/src/preferences/printers/
H A DTestPageView.cpp164 BRect rect(Bounds());
165 float size = rect.Width();
166 if (size > rect.Height())
167 size = rect.Height();
170 BPoint center(rect.Width() / 2, rect.Height() / 2);
222 BRect rect(Bounds());
224 BGradientLinear gradient(rect.LeftTop(), rect.RightBottom());
229 FillRect(rect, gradien
[all...]
/haiku/src/apps/powerstatus/
H A DExtendedInfoWindow.cpp239 BRect rect = frame; local
240 float size = std::min(rect.Width(), rect.Height());
241 rect.right = rect.left + size;
242 rect.bottom = rect.top + size;
243 if (frame.Width() > rect.Height()) {
244 rect.OffsetBy((frame.Width() - size) / 2.0f, 0.0f);
246 rect
[all...]
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DTheater.h72 virtual void getActiveRange( theater_standard standard, CRadeonRect &rect ) = 0;
74 virtual void getVBIRange( theater_standard standard, CRadeonRect &rect ) = 0;
H A DTheater100.h49 void getActiveRange( theater_standard standard, CRadeonRect &rect );
51 void getVBIRange( theater_standard standard, CRadeonRect &rect );
/haiku/src/bin/rc/tests/
H A Dbuiltin.rdef13 type #'RECT' rect
/haiku/headers/os/interface/
H A DLayoutUtils.h43 static BRect AlignOnRect(BRect rect, BSize size, BAlignment alignment);
44 static BRect MoveIntoFrame(BRect rect, BSize frameSize);
/haiku/src/kits/tracker/
H A DBackgroundImage.h104 void ScreenChanged(BRect rect, color_space space);
120 float BRectRatio(BRect rect);
/haiku/src/tests/kits/interface/
H A DListViewTest.cpp59 BRect rect(20, 10, 200, 300);
60 BListView *listView = new BListView(rect, "list");
/haiku/src/tests/kits/device/stickit_BJoystick/
H A DStickItWindow.cpp48 BRect rect = BRect(rectString.left, rectString.bottom + SPACE, local
50 fListView1 = new BListView(rect,"ListView1");
52 rectString = BRect(rect.left, rect.bottom + SPACE, rect.right,
53 rect.bottom + SPACE + 15);
57 rect = BRect(rectString.left, rectString.bottom + SPACE, rectString.right,
59 fListView2 = new BListView(rect,"ListView2");
/haiku/src/add-ons/screen_savers/shelf/
H A DShelf.cpp200 BRect rect;
205 font.GetBoundingBoxesForStrings(&fLine1, 1, B_SCREEN_METRIC, &delta, &rect);
206 float y = ((height - (rect.Height() * 2 + height / 10)) / 2) + rect.Height();
207 fLine1Start.Set((width - rect.Width()) / 2, y);
208 font.GetBoundingBoxesForStrings(&fLine2, 1, B_SCREEN_METRIC, &delta, &rect);
209 fLine2Start.Set((width - rect.Width()) / 2, y + rect.Height() + height / 10);

Completed in 385 milliseconds

1234567891011>>