Searched refs:Text (Results 1 - 25 of 229) sorted by relevance

12345678910

/haiku/src/apps/poorman/
H A DPoorManSiteView.h36 return fIndexFileName->Text();
46 return fWebDir->Text();
/haiku/src/apps/debugger/user_interface/gui/value/
H A DTableCellIntegerEditor.cpp36 return GetValueFormatter()->ValidateFormattedValue(Text(),
48 return GetValueFormatter()->GetValueFromFormattedInput(Text(),
H A DTableCellFloatEditor.cpp36 return GetValueFormatter()->ValidateFormattedValue(Text(),
48 return GetValueFormatter()->GetValueFromFormattedInput(Text(),
/haiku/src/bin/screen_blanker/
H A DPasswordWindow.h24 const char *Password() { return fPassword->Text(); }
/haiku/src/apps/icon-o-matic/generic/gui/
H A DInputTextView.cpp69 fTextBeforeFocus = Text();
73 fTextBeforeFocus = Text();
96 fTextBeforeFocus = Text();
101 if (fTextBeforeFocus != Text())
H A DStringTextView.cpp55 if (fStringCache != Text()) {
77 fStringCache = Text();
H A DNummericalTextView.cpp67 int32 i = atoi(Text());
68 float f = atof(Text());
123 fIntValueCache = atoi(Text());
131 fFloatValueCache = atof(Text());
174 const char* text = Text();
/haiku/src/bin/network/ppp_up/
H A DConnectionView.h29 { return fUsername->Text(); }
31 { return fPassword->Text(); }
/haiku/src/preferences/filetypes/
H A DStringView.cpp98 return fLabel->Text();
103 StringView::Text() const function in class:StringView
105 return fText->Text();
H A DStringView.h23 const char* Text() const;
/haiku/src/add-ons/print/transports/lpr/
H A DLprSetupDlg.cpp136 if (*fServer->Text() && *fQueue->Text()) {
139 LpsClient lpr(fServer->Text());
150 fDir->WriteAttr(LPR_SERVER_NAME, B_STRING_TYPE, 0, fServer->Text(),
151 strlen(fServer->Text()) + 1);
152 fDir->WriteAttr(LPR_QUEUE_NAME, B_STRING_TYPE, 0, fQueue->Text(),
153 strlen(fQueue->Text()) + 1);
/haiku/src/apps/mail/
H A DStatus.cpp112 if (!_Exists(fStatus->Text())) {
138 sprintf(name, "%s", fStatus->Text());
158 file.Write(fStatus->Text(), strlen(fStatus->Text()) + 1);
160 file.WriteAttr(INDEX_STATUS, B_STRING_TYPE, 0, fStatus->Text(),
161 strlen(fStatus->Text()) + 1);
167 close.AddString("status", fStatus->Text());
/haiku/src/apps/haikudepot/textview/
H A DParagraph.cpp97 BString text(span.Text());
98 text.Append(firstSpan.Text());
117 BString text(lastSpan.Text());
118 text.Append(span.Text());
153 span.Insert(offset, newSpan.Text());
163 span.Insert(span.CountChars(), newSpan.Text());
227 span.Insert(span.CountChars(), lastSpan.Text());
253 span.Append(span2.Text());
301 BString end = Text(start, endLength);
307 Paragraph::Text() cons function in class:Paragraph
320 Paragraph::Text(int32 start, int32 length) const function in class:Paragraph
[all...]
H A DParagraph.h42 BString Text() const;
43 BString Text(int32 start, int32 length) const;
/haiku/src/preferences/joysticks/
H A DJoyWin.cpp153 _PerformProbe(item->Text());
175 if (_CheckJoystickExist(item->Text()) == B_ERROR) {
176 if (_ShowCantFindFileMessage(item->Text()) == B_OK) {
177 _PerformProbe(item->Text());
205 _PerformProbe(item->Text());
217 portname->SetJoystickName(BString(controllerName->Text()));
222 strOldFile.Append(portname->Text());
227 strLinkPlace.Append(portname->Text());
230 strLinkTo.Append(controllerName->Text());
250 _ShowNoDeviceConnectedMessage("known", portname->Text());
[all...]
/haiku/src/add-ons/print/transports/hp_jetdirect/
H A DSetupWindow.cpp128 if (*fServerAddress->Text() && *fQueuePort->Text()) {
131 uint16 port = atoi(fQueuePort->Text());
136 if (ep->Connect(fServerAddress->Text(), port) != B_OK) {
138 text << "Failed to connect to " << fServerAddress->Text()
148 sprintf(str, "%s:%d", fServerAddress->Text(), port);
/haiku/src/apps/resedit/
H A DInternalEditors.h26 const char * GetID(void) const { return fIDBox->Text(); }
29 const char * GetName(void) const { return fNameBox->Text(); }
32 const char * GetValue(void) const { return fValueView->Text(); }
/haiku/src/add-ons/network_settings/dialup/
H A DIPCPAddon.h80 { return fIPAddress->Text(); }
82 { return fPrimaryDNS->Text(); }
84 { return fSecondaryDNS->Text(); }
/haiku/src/preferences/time/
H A DTZDisplay.h37 const char* Text() const;
/haiku/src/apps/terminal/
H A DHyperLink.h29 const BString& Text() const { return fText; } function in class:HyperLink
/haiku/src/tests/kits/interface/btextcontrol/
H A DTextControlTest.cpp23 CPPUNIT_ASSERT_EQUAL(BString("Initial (inserted)text"), v->Text());
/haiku/src/kits/mail/
H A DFileConfigView.cpp77 BPath path(fText->Text());
114 FileControl::Text() const function in class:BPrivate::FileControl
116 return fText->Text();
153 return archive->SetString(fName, Text());
/haiku/src/apps/people/
H A DAttributeTextControl.cpp53 _HandleLabelClicked(Text());
75 return fOriginalValue != Text();
90 fOriginalValue = Text();
154 BString argument(Text());
/haiku/src/preferences/shortcuts/
H A DEditWindow.cpp64 ResizeTo(max_c(be_plain_font->StringWidth(fTextControl->Text()) * 1.5,
71 BString result = fTextControl->Text();
/haiku/src/add-ons/print/transports/ipp/
H A DIppSetupDlg.cpp108 if (*url->Text()) {
114 request->setURI("printer-uri", url->Text());
117 IppURLConnection conn(BUrl(url->Text()));
128 dir->WriteAttr(IPP_URL, B_STRING_TYPE, 0, url->Text(),
129 strlen(url->Text()) + 1);

Completed in 127 milliseconds

12345678910