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

12

/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/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/icon-o-matic/generic/gui/
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
H A DNummericalTextView.h18 BRect textRect,
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 DInputTextView.h17 BRect 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/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/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);
/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/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/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/headers/os/interface/
H A DTextView.h49 BRect textRect, uint32 resizeMask,
53 BRect textRect, const BFont* initialFont,
285 void _InitObject(BRect textRect,
/haiku/src/apps/aboutsystem/
H A DHyperTextView.cpp119 HyperTextView::HyperTextView(BRect frame, const char* name, BRect textRect, argument
122 BTextView(frame, name, textRect, resizeMask, flags),
H A DHyperTextView.h40 BRect textRect, uint32 resizeMask,
/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/apps/deskcalc/
H A DInputTextView.cpp18 InputTextView::InputTextView(BRect frame, const char* name, BRect textRect, argument
21 BTextView(frame, name, textRect, resizingMode, flags),
H A DInputTextView.h20 BRect textRect,
/haiku/src/apps/processcontroller/
H A DMemoryBarMenuItem.cpp166 BRect textRect(rect.left - kMargin - gMemoryTextWidth, frame.top,
168 menu->FillRect(textRect, B_SOLID_LOW);
/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);
H A DStyledEditWindow.cpp1064 BRect textRect(0.0, top + TEXT_INSET,
1066 printJob.DrawView(fTextView, textRect, B_ORIGIN);
/haiku/src/kits/interface/
H A DAbstractSpinner.cpp189 SpinnerTextView(BRect rect, BRect textRect);
526 SpinnerTextView::SpinnerTextView(BRect rect, BRect textRect) argument
528 BTextView(rect, "textview", textRect, B_FOLLOW_ALL,
1506 BRect textRect(rect.OffsetToCopy(B_ORIGIN));
1508 fTextView = new SpinnerTextView(rect, textRect);
H A DColorControl.cpp123 BRect textRect(0.0f, 0.0f, 0.0f, 0.0f);
127 textRect.right = labelWidth + StringWidth("999999");
132 textRect.bottom = labelHeight;
136 fRedText = new BTextControl(textRect, "_red", red, "0",
149 textRect.OffsetBy(0, _TextRectOffset());
150 fGreenText = new BTextControl(textRect, "_green", green, "0",
163 textRect.OffsetBy(0, _TextRectOffset());
164 fBlueText = new BTextControl(textRect, "_blue", blue, "0",

Completed in 257 milliseconds

12