Searched refs:text (Results 151 - 175 of 543) sorted by relevance

1234567891011>>

/haiku/src/add-ons/mail_daemon/inbound_filters/notifier/
H A DNotifierFilter.cpp84 BString text; local
85 format.Format(text, fNNewMessages);
86 text.ReplaceFirst("%account", fMailProtocol.AccountSettings().Name());
88 BAlert *alert = new BAlert(B_TRANSLATE("New messages"), text.String(),
/haiku/src/apps/haikudepot/util/
H A DAppUtils.cpp26 AppUtils::NotifySimpleError(const char* title, const char* text, argument
34 if (text != NULL && strlen(text) != 0)
35 message.AddString(KEY_ALERT_TEXT, text);
H A DAppUtils.h17 const char* text,
/haiku/src/kits/mail/
H A DMailComponent.cpp1 /* (Text)Component - message component base class and plain text
71 } else if (!IsAttachment() && (super == "text" || type.Type() == NULL))
224 //-------Trim spaces off of beginning and end of text
367 // boundary string), then one for text/plain. We'll scan through them and
395 strcpy(typeAsLowerCaseString, "text/plain"); // Hope this is an OK default.
406 // convert to "text/plain" since the rest of the code looks for that.
407 if (strcmp(typeAsLowerCaseString, "text") == 0)
408 strcpy(typeAsLowerCaseString, "text/plain");
426 BTextMailComponent::BTextMailComponent(const char* text, uint32 defaultCharSet) argument
432 if (text !
453 SetText(const char* text) argument
462 AppendText(const char* text) argument
[all...]
/haiku/src/kits/print/
H A DJobSetupPanel.cpp160 BString text(fFirstPage->Text());
161 if (text.Length() <= 0)
164 return atoi(text.String());
171 BString text(fLastPage->Text());
172 if (text.Length() <= 0)
175 return atoi(text.String());
182 BString text; local
185 text << firstPage;
186 fFirstPage->SetText(text.String());
188 text << lastPag
[all...]
/haiku/src/apps/bootmanager/
H A DLegacyBootMenu.h38 virtual status_t GetDisplayText(const char* text,
42 bool _ConvertToBIOSText(const char* text,
H A DPartitionsPage.cpp82 BString text; local
83 text << B_TRANSLATE_COMMENT("Partitions", "Title") << "\n"
89 fDescription = CreateDescription("description", text);
184 PartitionsPage::_CreateSizeText(int64 size, BString* text) argument
187 *text = string_for_size(size, buffer, sizeof(buffer));
/haiku/src/system/kernel/arch/x86/32/
H A Dcpuid.S12 .text
/haiku/src/apps/haikudepot/ui_generic/
H A DMarkupTextView.cpp55 MarkupTextView::SetDisabledText(const BString& text) argument
66 paragraph.Append(TextSpan(text, disabledStyle));
/haiku/headers/private/shared/
H A DToolBar.h27 const char* text = NULL,
32 const char* text = NULL,
/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorPickerView.h58 bool _SetHexTextControlString(const BString& text);
60 const BString& text);
/haiku/src/apps/mail/
H A DAddressTextControl.h36 void SetText(const char* text);
46 void _AddAddress(const char* text);
/haiku/src/apps/haikudepot/textview/
H A DTextView.cpp99 TextView::SetText(const BString& text) argument
104 fText.Append(TextSpan(text, regularStyle));
H A DTextDocument.cpp76 TextDocument::Insert(int32 textOffset, const BString& text) argument
78 return Replace(textOffset, 0, text);
83 TextDocument::Insert(int32 textOffset, const BString& text, argument
86 return Replace(textOffset, 0, text, style);
91 TextDocument::Insert(int32 textOffset, const BString& text, argument
94 return Replace(textOffset, 0, text, characterStyle, paragraphStyle);
112 TextDocument::Replace(int32 textOffset, int32 length, const BString& text) argument
114 return Replace(textOffset, length, text, CharacterStyleAt(textOffset));
119 TextDocument::Replace(int32 textOffset, int32 length, const BString& text, argument
122 return Replace(textOffset, length, text, styl
128 Replace(int32 textOffset, int32 length, const BString& text, CharacterStyle characterStyle, ParagraphStyle paragraphStyle) argument
335 BString text; local
429 NormalizeText(const BString& text, CharacterStyle characterStyle, ParagraphStyle paragraphStyle) argument
[all...]
/haiku/src/system/libnetwork/
H A Dinit.cpp29 __gNetworkStart = (addr_t)min_c(info.text, info.data);
30 __gNetworkEnd = min_c((addr_t)info.text + info.text_size,
/haiku/src/system/boot/platform/u-boot/arch/ppc/
H A Dshell.S6 .text
/haiku/src/tools/translation/inspector/
H A DInfoWindow.cpp39 InfoWindow::InfoWindow(BRect rect, const char *name, const char *text) argument
57 fptextView->SetText(text);
71 // Adjust the size of the BTextView's text rectangle
90 // The view text must be updated
92 if (pmsg->FindString("text", &bstr) == B_OK)
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DThreadListView.cpp148 BString text;
149 text << "Thread: \"" << thread->Name() << "\" (" << thread->ID()
154 text << "Running";
160 text << "Called debugger(): "
164 text << "Caused exception: "
173 text << "Stopped for debugging";
180 text << "Current State Unknown";
184 BTextToolTip* tip = new(std::nothrow) BTextToolTip(text);
/haiku/src/kits/interface/
H A DAboutWindow.cpp483 BString text("");
485 text << "\n\n";
487 text << copyright;
490 text.ReplaceAll("%years%", copyrightYears.String());
493 text.ReplaceAll("%holder%", copyrightHolder);
499 text << "\n" << B_UTF8_COPYRIGHT << " " << extraCopyrights[i];
505 text << "\n " << allRightsReserved;
507 fAboutView->InfoView()->Insert(text.String());
574 BString text("");
577 text << "\
[all...]
/haiku/src/apps/cortex/TipManager/
H A DTipView.cpp74 const char* text) {
76 _setText(text);
102 // Draw text
183 // center text
191 const char* text) {
193 ASSERT(text);
196 m_text = text;
73 setText( const char* text) argument
190 _setText( const char* text) argument
/haiku/src/kits/device/
H A DJoystickTweaker.cpp39 # define LOG_ERR(text...) LOG(text)
42 # define LOG(text...)
43 # define LOG_ERR(text...) fprintf(stderr, text)
/haiku/src/kits/shared/
H A DToolBar.cpp120 const char* toolTipText, const char* text, bool lockable)
122 AddAction(new BMessage(command), target, icon, toolTipText, text, lockable);
128 const BBitmap* icon, const char* toolTipText, const char* text,
140 if (text != NULL)
141 button->SetLabel(text);
119 AddAction(uint32 command, BHandler* target, const BBitmap* icon, const char* toolTipText, const char* text, bool lockable) argument
127 AddAction(BMessage* message, BHandler* target, const BBitmap* icon, const char* toolTipText, const char* text, bool lockable) argument
/haiku/src/tests/kits/interface/balert/alert_manual_test/
H A DAlertTestWindow.cpp68 void which_label(const char *text, BString &outString) argument
71 if (strcmp(text, k60X) == 0)
73 else if (strcmp(text, k40X) == 0)
75 else if (strcmp(text, k20X) == 0)
80 outString << '"' << text << '"'; local
/haiku/src/libs/print/libprint/
H A DBlockingWindow.cpp118 char *text = (char*)v->Text(); local
119 char *s = text;
122 int32 i = s - text;
127 // first text line
128 s = strchr(text, '\n');
132 v->SetFontAndColor(0, s-text+1, &font, B_FONT_SIZE);
/haiku/src/preferences/screen/
H A DMonitorView.cpp110 char text[64]; local
111 snprintf(text, sizeof(text), B_TRANSLATE("%ld dpi"), (long int)fDPI);
113 float width = StringWidth(text);
120 DrawString(text, BPoint(innerRect.left + (innerRect.Width() - width) / 2,

Completed in 164 milliseconds

1234567891011>>