Searched refs:textView (Results 26 - 34 of 34) sorted by relevance

12

/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1002 SysInfoView::_UpdateText(BTextView* textView) argument
1004 textView->SetExplicitAlignment(BAlignment(B_ALIGN_LEFT, B_ALIGN_TOP));
1005 textView->SetFontAndColor(be_plain_font, B_FONT_FAMILY_AND_STYLE);
1006 textView->SetColorSpace(B_RGBA32);
1007 textView->MakeResizable(false);
1008 textView->MakeEditable(false);
1009 textView->MakeSelectable(false);
1010 textView->SetWordWrap(true);
1011 textView->SetDoesUndo(false);
1012 textView
[all...]
/haiku/headers/libs/print/libprint/
H A DJobSetupDlg.h140 void AllowOnlyDigits(BTextView* textView, int maxDigits);
/haiku/src/libs/print/libprint/
H A DJobSetupDlg.cpp180 JobSetupView::AllowOnlyDigits(BTextView* textView, int maxDigits) argument
184 textView->DisallowChar(num);
187 textView->AllowChar('0' + num);
189 textView->SetMaxBytes(maxDigits);
/haiku/src/tests/kits/interface/balert/
H A DAlertTest.cpp203 BTextView *textView = pAlert->TextView(); local
204 CPPUNIT_ASSERT(textView);
208 CPPUNIT_ASSERT_EQUAL(ui_color(B_PANEL_BACKGROUND_COLOR), textView->ViewColor());
212 CPPUNIT_ASSERT_EQUAL(false, textView->IsEditable());
216 CPPUNIT_ASSERT_EQUAL(false, textView->IsSelectable());
220 CPPUNIT_ASSERT_EQUAL(true, textView->DoesWordWrap());
224 CPPUNIT_ASSERT(strcmp(fTextInfo.label, textView->Text()) == 0);
228 ASSERT_DEQUAL(fTextInfo.width, textView->Bounds().Width());
229 ASSERT_DEQUAL(fTextInfo.height, textView->Bounds().Height());
233 BPoint pt = textView
[all...]
/haiku/src/apps/haikudepot/ui/
H A DPackageInfoView.cpp876 TextView* textView = new TextView("rating-text"); local
877 ParagraphStyle paragraphStyle(textView->ParagraphStyle());
879 textView->SetParagraphStyle(paragraphStyle);
880 textView->SetText(rating->Comment());
882 verticalGroup->AddView(textView);
/haiku/src/apps/screenshot/
H A DScreenshotWindow.cpp474 ScreenshotWindow::_DisallowChar(BTextView* textView) argument
477 textView->DisallowChar(i);
480 textView->DisallowChar(i);
/haiku/src/apps/mail/
H A DMailWindow.cpp991 BTextView* textView = dynamic_cast<BTextView*>(CurrentFocus()); local
992 if (textView != NULL
993 && (dynamic_cast<AddressTextControl*>(textView->Parent()) != NULL
994 || dynamic_cast<BTextControl*>(textView->Parent()) != NULL)) {
996 textView->GetSelection(&start, &finish);
/haiku/src/apps/webpositive/
H A DBrowserWindow.cpp1085 BTextView* textView = dynamic_cast<BTextView*>(CurrentFocus()); local
1086 if (textView != NULL)
1087 textView->MessageReceived(message);
/haiku/src/kits/interface/
H A DWindow.cpp3714 BTextView* textView = dynamic_cast<BTextView*>(CurrentFocus()); local
3715 if (textView != NULL) {
3716 textView->KeyDown(bytes, modifiers);

Completed in 85 milliseconds

12