Home
last modified time | relevance | path

Searched refs:BTextMailComponent (Results 1 – 11 of 11) sorted by relevance

/haiku/docs/user/mail/
H A DTextMailComponent.dox16 \class BTextMailComponent
30 \fn BTextMailComponent::BTextMailComponent(const char *text = NULL,
42 \fn BTextMailComponent::~BTextMailComponent()
48 \fn void BTextMailComponent::SetEncoding(mail_encoding encoding,
61 \fn void BTextMailComponent::SetText(const char *text)
69 \fn void BTextMailComponent::AppendText(const char *text)
78 \fn const char* BTextMailComponent::Text()
86 \fn BString* BTextMailComponent::BStringText()
97 \fn void BTextMailComponent::Quote(const char *message = NULL,
112 \fn virtual status_t BTextMailComponent::GetDecodedData(BPositionIO *data)
[all …]
H A DMailComponent.dox18 \brief Provides the BMailComponent and BTextMailComponent classes.
243 decoded data, and BTextMailComponent returns UTF8 text. \c BMailComponent
/haiku/src/kits/mail/
H A DMailComponent.cpp15 class _EXPORT BTextMailComponent; variable
90 return new BTextMailComponent (NULL, _charSetForTextDecoding); in WhatIsThis()
426 BTextMailComponent::BTextMailComponent(const char* text, uint32 defaultCharSet) in BTextMailComponent() function in BTextMailComponent
439 BTextMailComponent::~BTextMailComponent() in ~BTextMailComponent()
445 BTextMailComponent::SetEncoding(mail_encoding encoding, int32 charset) in SetEncoding()
453 BTextMailComponent::SetText(const char* text) in SetText()
462 BTextMailComponent::AppendText(const char* text) in AppendText()
471 BTextMailComponent::Text() in Text()
480 BTextMailComponent::BStringText() in BStringText()
489 BTextMailComponent::Quote(const char* message, const char* quote_style) in Quote()
[all …]
H A Db_mail_message.cpp42 BTextMailComponent *comp = new BTextMailComponent; in AddContent()
57 BTextMailComponent *comp = new BTextMailComponent(); in AddContent()
H A DMailMessage.cpp587 fTextBody = new BTextMailComponent; in SetBodyTextTo()
595 BTextMailComponent*
616 BEmailMessage::SetBody(BTextMailComponent* body) in SetBody()
631 BTextMailComponent*
634 BTextMailComponent* body = dynamic_cast<BTextMailComponent*>(component); in _RetrieveTextBody()
649 body = dynamic_cast<BTextMailComponent*>( in _RetrieveTextBody()
/haiku/headers/os/mail/
H A DMailMessage.h108 status_t SetBody(BTextMailComponent* body);
109 BTextMailComponent* Body();
122 BTextMailComponent* _RetrieveTextBody(BMailComponent* component);
137 BTextMailComponent* fTextBody;
H A DMailComponent.h96 class BTextMailComponent : public BMailComponent {
98 BTextMailComponent(const char *text = NULL, uint32 defaultCharSet = B_MAIL_NULL_CONVERSION);
99 virtual ~BTextMailComponent();
/haiku/src/add-ons/mail_daemon/outbound_filters/fortune/
H A DFortuneFilter.cpp87 BTextMailComponent* body = mailMessage.Body(); in MessageReadyToSend()
/haiku/src/apps/mail/
H A DContent.h254 BTextMailComponent* ignore);
H A DContent.cpp2034 BTextMailComponent *body = mail->Body(); in AddAsContent()
2036 if (mail->SetBody(body = new BTextMailComponent()) < B_OK) in AddAsContent()
2229 BTextMailComponent *ignore) in ParseMail()
2512 BTextMailComponent *body = NULL; in Run()
/haiku/src/bin/mail_utils/
H A Dspamdbm.cpp5018 if (NULL != dynamic_cast<BTextMailComponent *>(ComponentPntr)) in RecursivelyTokenizeMailComponent()