Searched refs:Text (Results 76 - 100 of 229) sorted by relevance

12345678910

/haiku/src/add-ons/print/drivers/preview/
H A DJobSetupWindow.cpp126 from = atoi(fFrom->Text());
127 to = atoi(fTo->Text());
/haiku/src/apps/stylededit/
H A DReplaceWindow.cpp184 message.AddString("FindText", fSearchString->Text());
185 message.AddString("ReplaceText", fReplaceString->Text());
/haiku/src/add-ons/input_server/devices/virtualkeyboard/
H A DVirtualKeyboardWindow.cpp29 return BLocale::Default()->StringCompare(item1->Text(), item2->Text());
/haiku/src/apps/webpositive/
H A DConsoleWindow.cpp146 text << item->Text();
151 text << item->Text();
H A DAuthenticationPanel.cpp81 BString text = m_passwordTextControl->Text();
209 user = m_usernameTextControl->Text();
210 pass = m_passwordTextControl->Text();
/haiku/src/apps/mail/
H A DHeader.cpp147 if (Text() != NULL) {
157 be_control_look->DrawLabel(this, Text(), rect, updateRect,
458 return fFromControl != NULL ? fFromControl->Text() : NULL;
480 return fToControl->Text();
501 return fCcControl != NULL ? fCcControl->Text() : NULL;
534 return fBccControl != NULL ? fBccControl->Text() : NULL;
556 return fSubjectControl->Text();
577 return fDateControl != NULL ? fDateControl->Text() : NULL;
H A DSignature.cpp326 if (strcmp(name, fSigView->fName->Text()) != 0
330 } else if (fSigView->fName->Text()[0] != '\0'
385 fFile->Write(fSigView->fTextView->Text(),
388 fFile->WriteAttr(INDEX_SIGNATURE, B_STRING_TYPE, 0, fSigView->fName->Text(),
389 strlen(fSigView->fName->Text()) + 1);
/haiku/src/apps/cortex/support/
H A DTextControlFloater.cpp170 message->AddString("_value", m_control->TextView()->Text());
/haiku/src/apps/terminal/
H A DSetTitleDialog.cpp118 fTitle = fTitleTextControl->Text();
/haiku/src/kits/shared/
H A DPromptWindow.cpp69 fMessage->AddString("text", fTextControl->TextView()->Text());
H A DColorItem.cpp85 owner->DrawString(Text());
/haiku/src/apps/bootmanager/
H A DWizardPageView.cpp82 const char* text = view->Text();
/haiku/src/kits/mail/
H A DProtocolConfigView.cpp88 atoi(fSizeControl->Text()) * 1024);
275 BString hostName = fHostControl->Text();
294 settings.SetString("username", fUserControl->Text());
302 set_passwd(&settings, "cpasswd", fPasswordControl->Text());
/haiku/src/add-ons/screen_savers/gravity/
H A DRainbowItem.cpp93 owner->DrawString(Text());
/haiku/src/apps/mediaplayer/
H A DNetworkStreamWin.cpp65 BUrl url(fTextControl->Text());
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DExpressionPromptWindow.cpp109 addMessage.AddString("expression", fExpressionInput->Text());
/haiku/src/add-ons/network_settings/dialup/
H A DInterfaceUtils.cpp54 if(item && strcasecmp(name, item->Text()) <= 0)
/haiku/src/preferences/appearance/
H A DColorWhichItem.cpp79 owner->DrawString(Text());
/haiku/src/apps/musiccollection/
H A DMusicCollectionWindow.cpp29 return BPrivate::NaturalCompare(firstItem->Text(), secondItem->Text());
185 if (strcmp(item->Text(), text) == 0)
317 BString orgString = fQueryField->Text();
/haiku/src/apps/deskcalc/
H A DExpressionTextView.cpp84 BString current = Text();
100 if (current != Text())
168 AddExpressionToHistory(Text());
409 fCurrentExpression = Text();
/haiku/src/apps/login/
H A DLoginView.cpp185 if (strlen(fPasswordControl->Text()) < 1
191 m->AddString("login", fLoginControl->Text());
192 m->AddString("password", fPasswordControl->Text());
/haiku/src/preferences/network/
H A DInterfaceAddressView.cpp332 _SetAddress(settings.Address(), fAddressField->Text());
333 _SetAddress(settings.Mask(), fNetmaskField->Text());
334 _SetAddress(settings.Gateway(), fGatewayField->Text());
/haiku/src/preferences/filetypes/
H A DApplicationTypeWindow.cpp227 int compare = strcasecmp(a->Text(), b->Text());
272 if (!strcmp(item->Text(), type)) {
740 status = info.SetSignature(fSignatureControl->Text());
765 fOriginalInfo.signature = fSignatureControl->Text();
801 if (fOriginalInfo.signature != fSignatureControl->Text())
893 versionInfo.major = atol(fMajorVersionControl->Text());
894 versionInfo.middle = atol(fMiddleVersionControl->Text());
895 versionInfo.minor = atol(fMinorVersionControl->Text());
897 versionInfo.internal = atol(fInternalVersionControl->Text());
[all...]
/haiku/src/preferences/time/
H A DZoneView.cpp136 fCurrent->SetText(fCurrentZoneItem->Text());
440 zoneIter->second->SetText(currentItem->Text());
505 fPreview->SetText(item->Text());
508 fSetZone->SetEnabled((strcmp(fCurrent->Text(), item->Text()) != 0));
519 fCurrent->SetText(fCurrentZoneItem->Text());
/haiku/src/apps/diskprobe/
H A DFindWindow.cpp110 const char* text = Text();
282 if (_GetDataFromHex(Text() + start, end - start, &data, &dataSize)
422 if (_GetHexFromData((const uint8*)Text(), TextLength(), &hex, &hexSize)
435 if (_GetDataFromHex(Text(), TextLength(), &data, &dataSize) < B_OK)
477 if (_GetDataFromHex(Text(), TextLength(), &data, &dataSize) != B_OK)
483 message.AddData("data", B_RAW_TYPE, Text(), TextLength());
504 fMenu->AddItem(item = new BMenuItem(B_TRANSLATE("Text"),

Completed in 129 milliseconds

12345678910