Searched refs:textRect (Results 1 - 25 of 32) sorted by relevance

12

/haiku/src/tests/kits/interface/btextview/
H A DTextViewTest.cpp19 BRect textRect(0, 0, 100, 100);
20 BTextView* v = new BTextView(textRect, "test", textRect, 0, 0);
/haiku/src/tests/kits/interface/btextcontrol/
H A DTextControlTest.cpp19 BRect textRect(0, 0, 100, 100);
20 BTextControl* v = new BTextControl(textRect, "test", 0, 0, 0);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DStringTextView.cpp16 BRect textRect,
19 : InputTextView(frame, name, textRect, resizingMode, flags),
15 StringTextView(BRect frame, const char* name, BRect textRect, uint32 resizingMode, uint32 flags) argument
H A DStringTextView.h20 BRect textRect,
H A DInputTextView.cpp15 BRect textRect,
18 : BTextView(frame, name, textRect, resizingMode, flags),
14 InputTextView(BRect frame, const char* name, BRect textRect, uint32 resizingMode, uint32 flags) argument
H A DNummericalTextView.h18 BRect textRect,
H A DInputTextView.h17 BRect textRect,
H A DNummericalTextView.cpp18 BRect textRect,
21 : InputTextView(frame, name, textRect, resizingMode, flags)
17 NummericalTextView(BRect frame, const char* name, BRect textRect, uint32 resizingMode, uint32 flags) argument
/haiku/src/servers/input/
H A DBottomlineWindow.cpp24 BRect textRect = Bounds(); local
25 textRect.OffsetTo(B_ORIGIN);
26 textRect.InsetBy(2,2);
27 fTextView = new BTextView(Bounds(), "", textRect, be_plain_font,
/haiku/src/apps/stylededit/
H A DStyledEditView.cpp159 BRect textRect; local
160 textRect = Bounds();
161 textRect.OffsetTo(B_ORIGIN);
162 textRect.InsetBy(TEXT_INSET, TEXT_INSET);
164 textRect.SetRightBottom(BPoint(1500.0, textRect.RightBottom().y));
165 SetTextRect(textRect);
/haiku/src/apps/deskcalc/
H A DInputTextView.h20 BRect textRect,
H A DInputTextView.cpp18 InputTextView::InputTextView(BRect frame, const char* name, BRect textRect, argument
21 BTextView(frame, name, textRect, resizingMode, flags),
/haiku/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp327 SubtitleBitmap::_InsertText(BRect& textRect, float& outlineRadius, argument
347 textRect = fVideoBounds;
348 textRect.OffsetBy(outlineRadius, outlineRadius);
366 fTextView->SetTextRect(textRect);
368 fShadowTextView->SetTextRect(textRect);
370 textRect = fTextView->TextRect();
371 textRect.InsetBy(-outlineRadius, -outlineRadius);
372 textRect.OffsetTo(B_ORIGIN);
376 textRect.bottom = outlineRadius;
379 textRect
[all...]
/haiku/src/apps/debugger/user_interface/gui/util/
H A DAlertWithCheckbox.cpp55 BRect textRect = message->TextRect(); local
56 textRect.PrintToStream();
60 if (width < textRect.Width()) {
/haiku/src/add-ons/network_settings/dialup/
H A DTextRequestDialog.cpp45 BRect textRect(rect);
46 textRect.OffsetTo(0, 0);
47 fTextView = new BTextView(rect, "TextView", textRect, B_FOLLOW_NONE,
56 fTextView->ResizeBy(0, textHeight - textRect.Height());
/haiku/src/kits/interface/
H A DTextInput.h24 _BTextInput_(BRect frame, BRect textRect,
H A DTextInput.cpp30 _BTextInput_::_BTextInput_(BRect frame, BRect textRect, uint32 resizeMask, argument
33 BTextView(frame, "_input_", textRect, resizeMask, flags),
/haiku/src/apps/aboutsystem/
H A DHyperTextView.h40 BRect textRect, uint32 resizeMask,
H A DHyperTextView.cpp119 HyperTextView::HyperTextView(BRect frame, const char* name, BRect textRect, argument
122 BTextView(frame, name, textRect, resizeMask, flags),
/haiku/src/kits/tracker/
H A DTextWidget.cpp611 BTextWidget::Draw(BRect eraseRect, BRect textRect, float, BPoseView* view, argument
615 textRect.OffsetBy(offset);
629 drawView->FillRect(textRect, B_SOLID_LOW);
649 location.y = textRect.bottom - view->FontInfo().descent;
650 location.x = textRect.left + 1;
728 textRect.right = textRect.left + fText->Width(view);
730 drawView->StrokeLine(textRect.LeftBottom(), textRect.RightBottom(),
H A DCountView.cpp228 BRect textRect(TextInvalRect());
232 textRect.Width());
240 MovePenTo(textRect.LeftBottom());
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.cpp185 BRect textRect(textFrame);
186 textRect.OffsetTo(0, 0);
187 textRect.InsetBy(1, 1);
193 textRect.right = 2000;
195 textRect, &font, 0, B_FOLLOW_ALL, B_WILL_DRAW);
200 textRect = fTitleEditView->TextRect();
201 textRect.right = fTitleEditView->LineWidth() + 20;
202 fTitleEditView->SetTextRect(textRect);
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DInputSlider.cpp120 BRect textRect(fTextView->Bounds());
121 textRect.InsetBy(1, 1);
122 fTextView->SetTextRect(textRect);
/haiku/src/add-ons/screen_savers/ifs/
H A DIFSSaver.cpp112 BRect textRect = bounds; local
113 textRect.OffsetTo(0.0, 0.0);
114 BTextView* textView = new BTextView(bounds, B_EMPTY_STRING, textRect,
/haiku/src/apps/resedit/
H A DMiscEditors.cpp106 BRect textRect(r.OffsetToCopy(0.0, 0.0));
107 textRect.InsetBy(5.0, 5.0);
108 fValueView = new BTextView(r, "value", textRect, B_FOLLOW_ALL);

Completed in 268 milliseconds

12