7 #include <Wt/WApplication> 10 #include <Wt/WPushButton> 11 #include <Wt/WContainerWidget> 12 #include <Wt/WStringUtil> 22 : WContainerWidget(parent)
26 std::vector<Contact> addressBook;
27 addressBook.push_back(
Contact(L
"Koen Deforche",
28 L
"koen.deforche@gmail.com"));
29 addressBook.push_back(
Contact(L
"Koen alias1",
30 L
"koen.alias1@yahoo.com"));
31 addressBook.push_back(
Contact(L
"Koen alias2",
32 L
"koen.alias2@yahoo.com"));
33 addressBook.push_back(
Contact(L
"Koen alias3",
34 L
"koen.alias3@yahoo.com"));
35 addressBook.push_back(
Contact(L
"Bartje",
36 L
"jafar@hotmail.com"));
39 std::vector<Contact> contacts;
40 contacts.push_back(
Contact(L
"Koen Deforche", L
"koen.deforche@gmail.com"));
48 details_ =
new WContainerWidget(
this);
50 new WText(tr(
"example.info"),
details_);
55 WContainerWidget *feedback =
new WContainerWidget(
this);
56 feedback->setStyleClass(L
"feedback");
58 WContainerWidget *horiz =
new WContainerWidget(feedback);
59 new WText(L
"<p>We could have, but did not send the following email:</p>",
63 if (!contacts.empty())
64 horiz =
new WContainerWidget(feedback);
65 for (
unsigned i = 0; i < contacts.size(); ++i) {
66 new WText(L
"To: \"" + contacts[i].name + L
"\" <" 67 + contacts[i].email + L
">", PlainText, horiz);
72 if (!contacts.empty())
73 horiz =
new WContainerWidget(feedback);
74 for (
unsigned i = 0; i < contacts.size(); ++i) {
75 new WText(L
"Cc: \"" + contacts[i].name + L
"\" <" 76 + contacts[i].email + L
">", PlainText, horiz);
81 if (!contacts.empty())
82 horiz =
new WContainerWidget(feedback);
83 for (
unsigned i = 0; i < contacts.size(); ++i) {
84 new WText(L
"Bcc: \"" + contacts[i].name + L
"\" <" 85 + contacts[i].email + L
">", PlainText, horiz);
89 horiz =
new WContainerWidget(feedback);
93 if (!attachments.empty())
94 horiz =
new WContainerWidget(feedback);
95 for (
unsigned i = 0; i < attachments.size(); ++i) {
96 new WText(L
"Attachment: \"" 97 + attachments[i].fileName
98 + L
"\" (" + attachments[i].contentDescription
99 + L
")", PlainText, horiz);
101 unlink(attachments[i].spoolFileName.c_str());
103 new WText(
", was in spool file: " 104 + attachments[i].spoolFileName, horiz);
110 horiz =
new WContainerWidget(feedback);
111 new WText(
"Message body: ", horiz);
114 if (!message.empty()) {
115 new WText(message, PlainText, horiz);
117 new WText(
"<i>(empty)</i>", horiz);
127 WContainerWidget *feedback =
new WContainerWidget(
this);
128 feedback->setStyleClass(
"feedback");
130 WContainerWidget *horiz =
new WContainerWidget(feedback);
131 new WText(
"<p>Wise decision! Everyone's mailbox is already full anyway.</p>",
142 WApplication *app =
new WApplication(env);
146 app->messageResourceBundle().use(WApplication::appRoot() +
"composer");
150 app->useStyleSheet(
"composer.css");
152 app->setTitle(
"Composer example");
159 int main(
int argc,
char **argv)
const WString & subject() const
Get the subject.
std::vector< Contact > cc() const
Get the Cc: contacts.
std::vector< Attachment > attachments() const
Get the list of attachments.
const WString & message() const
Get the message.
An E-mail composer widget.
Wt::Signal< void > send
The message is ready to be sent...
ComposeExample(WContainerWidget *parent=0)
create a new Composer example.
Wt::Signal< void > discard
The message must be discarded.
void setSubject(const WString &subject)
Set subject.
WContainerWidget * details_
void setAddressBook(const std::vector< Contact > &addressBook)
Set the address book, for autocomplete suggestions.
WApplication * createApplication(const WEnvironment &env)
std::vector< Contact > bcc() const
Get the Bc: contacts.
std::vector< Contact > to() const
Get the To: contacts.
void setTo(const std::vector< Contact > &to)
Set message To: contacts.
int main(int argc, char **argv)