mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-24 10:52:52 +00:00
83 lines
2.9 KiB
C++
83 lines
2.9 KiB
C++
/* Copyright 2010 David Faure <faure@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License or (at your option) version 3 or any later version
|
|
accepted by the membership of KDE e.V. (or its successor approved
|
|
by the membership of KDE e.V.), which shall act as a proxy
|
|
defined in Section 14 of version 3 of the license.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <QFile>
|
|
#include "viewer/viewer.h"
|
|
#include "header/headerstyle.h"
|
|
#include "header/headerstrategy.h"
|
|
|
|
#include <kdebug.h>
|
|
#include <kcmdlineargs.h>
|
|
#include <kapplication.h>
|
|
|
|
using namespace MessageViewer;
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
KCmdLineArgs::init(argc, argv, "viewertest_gui", 0, ki18n("Viewertest_Gui"),
|
|
"1.0", ki18n("Test for MessageViewer"));
|
|
|
|
KCmdLineOptions options;
|
|
options.add("+[file]", ki18n("File containing an email"));
|
|
options.add("headerstrategy <strategy>", ki18n("Header Strategy: [all|rich|standard|brief|custom]"));
|
|
options.add("headerstyle <style>", ki18n("Header Style: [brief|plain|enterprise|mobile|fancy]"));
|
|
|
|
KCmdLineArgs::addCmdLineOptions( options );
|
|
KCmdLineArgs::addStdCmdLineOptions();
|
|
|
|
KApplication app;
|
|
KCmdLineArgs *args = KCmdLineArgs::parsedArgs();
|
|
|
|
KMime::Message *msg = new KMime::Message;
|
|
if (args->count() == 0) {
|
|
QByteArray mail = "From: dfaure@example.com\n"
|
|
"To: kde@example.com\n"
|
|
"Sender: dfaure@example.com\n"
|
|
"MIME-Version: 1.0\n"
|
|
"Date: 02 Jul 2010 23:58:21 -0000\n"
|
|
"Subject: Akademy\n"
|
|
"Content-Type: text/plain\n"
|
|
"X-Length: 0\n"
|
|
"X-UID: 6161\n"
|
|
"\n"
|
|
"Hello this is a test mail\n";
|
|
msg->setContent( mail );
|
|
} else {
|
|
const QString fileName = args->arg(0);
|
|
QFile file(fileName);
|
|
if (file.open(QIODevice::ReadOnly)) {
|
|
msg->setContent(file.readAll());
|
|
} else {
|
|
kWarning() << "Couldn't read" << fileName;
|
|
}
|
|
}
|
|
msg->parse();
|
|
|
|
Viewer* viewer = new Viewer(0);
|
|
viewer->setMessage(KMime::Message::Ptr(msg));
|
|
|
|
const QString headerStrategy = args->getOption("headerstrategy");
|
|
const QString headerStyle = args->getOption("headerstyle");
|
|
viewer->setHeaderStyleAndStrategy(HeaderStyle::create(headerStyle),
|
|
HeaderStrategy::create(headerStrategy));
|
|
|
|
viewer->show();
|
|
|
|
return app.exec();
|
|
}
|