Searched refs:fTextView (Results 1 - 25 of 47) sorted by path

12

/haiku/headers/private/interface/
H A DAbstractSpinner.h160 SpinnerTextView* fTextView; member in class:BAbstractSpinner
H A DToolTip.h77 BTextView* fTextView; member in class:BTextToolTip
/haiku/src/add-ons/network_settings/dialup/
H A DTextRequestDialog.cpp47 fTextView = new BTextView(rect, "TextView", textRect, B_FOLLOW_NONE,
49 fTextView->SetViewUIColor(B_PANEL_BACKGROUND_COLOR);
50 fTextView->MakeSelectable(false);
51 fTextView->MakeEditable(false);
52 fTextView->SetText(information);
53 float textHeight = fTextView->TextHeight(0, fTextView->CountLines());
56 fTextView->ResizeBy(0, textHeight - textRect.Height());
58 backgroundView->AddChild(fTextView);
60 fTextView
[all...]
H A DTextRequestDialog.h32 BTextView *fTextView; member in class:TextRequestDialog
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp2039 fTextView(NULL),
2228 fTextView->Invalidate();
2244 fTextView->SetSourceCode(NULL);
2269 fTextView->SetSourceCode(fSourceCode);
2283 fTextView->UserBreakpointChanged(breakpoint);
2361 // BSize textSize(fTextView->MinSize());
2372 // BSize textSize(fTextView->MaxSize());
2383 BSize textSize(fTextView->PreferredSize());
2399 fTextView->MoveTo(markerWidth + 1, 0);
2400 fTextView
[all...]
H A DSourceView.h96 TextView* fTextView; member in class:SourceView
/haiku/src/apps/diskprobe/
H A DFindWindow.h41 FindTextView* fTextView; member in class:FindWindow
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DInputSlider.cpp85 fTextView(new NummericalTextView(BRect(0, 0 , 20, 20),
92 // prepare fTextView
93 fTextView->SetWordWrap(false);
94 fTextView->SetViewColor(255,255,255,0);
95 fTextView->SetValue(Value());
96 //fTextView->AddFilter(fTextViewFilter);
97 AddChild(fTextView);
117 fTextView->MoveTo(frame.LeftTop());
118 fTextView->ResizeTo(frame.Width(), frame.Height());
120 BRect textRect(fTextView
[all...]
H A DInputSlider.h43 NummericalTextView* fTextView; member in class:InputSlider
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DFloatValueView.cpp21 fTextView = new NummericalTextView(b, "nummerical input", b,
25 AddChild(fTextView);
26 fTextView->SetFloatMode(true);
29 fTextView->SetValue(fProperty->Value());
41 return fTextView;
49 fProperty->SetValue(fTextView->FloatValue());
50 fTextView->SetValue(fProperty->Value());
61 if (fTextView->FloatValue() != p->Value())
62 fTextView->SetValue(p->Value());
H A DFloatValueView.h33 NummericalTextView* fTextView; member in class:FloatValueView
H A DInt64ValueView.cpp21 fTextView = new NummericalTextView(b, "nummerical input", b,
25 AddChild(fTextView);
26 fTextView->SetFloatMode(false);
30 fTextView->SetValue((int32)fProperty->Value());
42 return fTextView;
50 fProperty->SetValue(fTextView->IntValue());
52 fTextView->SetValue((int32)fProperty->Value());
64 if (fTextView->IntValue() != (int32)p->Value())
65 fTextView->SetValue((int32)p->Value());
H A DInt64ValueView.h33 NummericalTextView* fTextView; member in class:Int64ValueView
H A DIntValueView.cpp21 fTextView = new NummericalTextView(b, "nummerical input", b,
25 AddChild(fTextView);
26 fTextView->SetFloatMode(false);
29 fTextView->SetValue(fProperty->Value());
41 return fTextView;
49 fProperty->SetValue(fTextView->IntValue());
50 fTextView->SetValue(fProperty->Value());
61 if (fTextView->IntValue() != p->Value())
62 fTextView->SetValue(p->Value());
H A DIntValueView.h33 NummericalTextView* fTextView; member in class:IntValueView
H A DStringValueView.cpp22 fTextView = new StringTextView(b, "string input", b,
25 AddChild(fTextView);
28 fTextView->SetValue(fProperty->Value());
40 return fTextView;
48 fProperty->SetValue(fTextView->Value());
49 fTextView->SetValue(fProperty->Value());
60 if (!fProperty || strcmp(p->Value(), fTextView->Text()) != 0) {
61 fTextView->SetValue(p->Value());
H A DStringValueView.h34 StringTextView* fTextView; member in class:StringValueView
/haiku/src/apps/mail/
H A DAddressTextControl.h53 TextView* fTextView; member in class:AddressTextControl
H A DContent.h113 TTextView* TextView() const { return fTextView; }
118 TTextView* fTextView; member in class:TContentView
H A DSignature.h99 TSigTextView* fTextView; member in class:TSignatureView
/haiku/src/apps/mediaplayer/interface/
H A DSubtitleBitmap.cpp20 fTextView(new BTextView("offscreen text")),
26 fTextView->SetStylable(true);
27 fTextView->MakeEditable(false);
28 fTextView->SetWordWrap(false);
29 fTextView->SetAlignment(B_ALIGN_CENTER);
41 delete fTextView;
143 fBitmap->AddChild(fTextView);
144 fTextView->ResizeTo(bounds.Width(), bounds.Height());
146 fTextView->MoveTo(-outlineRadius / 2, -outlineRadius / 2);
148 fTextView
[all...]
H A DSubtitleBitmap.h36 BTextView* fTextView; member in class:SubtitleBitmap
/haiku/src/apps/webpositive/
H A DURLInputGroup.h40 URLTextView* fTextView; member in class:URLInputGroup
/haiku/src/apps/webpositive/autocompletion/
H A DTextViewCompleter.cpp23 fTextView(textView)
32 if (fTextView && fTextView->LockLooper()) {
33 text = fTextView->Text();
36 fTextView->GetSelection(caretPos, &end);
38 fTextView->UnlockLooper();
47 if (fTextView && fTextView->LockLooper()) {
48 fTextView->SetText(text.String(), text.Length());
49 fTextView
[all...]
H A DTextViewCompleter.h40 BTextView* fTextView; member in class:TextViewCompleter::TextViewWrapper
44 BTextView* fTextView; member in class:TextViewCompleter

Completed in 135 milliseconds

12