mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
76f5efc051
svn path=/trunk/KDE/kdebase/apps/; revision=1050546
89 lines
2.8 KiB
C++
89 lines
2.8 KiB
C++
// -*- indent-tabs-mode:nil -*-
|
|
// vim: set ts=4 sts=4 sw=4 et:
|
|
/* This file is part of the KDE project
|
|
Copyright (C) 2003 Alexander Kellett <lypanov@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.
|
|
|
|
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 "exporters.h"
|
|
|
|
#include <kdebug.h>
|
|
#include <klocale.h>
|
|
|
|
#include <QtCore/QFile>
|
|
#include <QtCore/QTextStream>
|
|
|
|
HTMLExporter::HTMLExporter()
|
|
: m_out(&m_string, QIODevice::WriteOnly) {
|
|
}
|
|
|
|
void HTMLExporter::write(const KBookmarkGroup &grp, const QString &filename, bool showAddress) {
|
|
QFile file(filename);
|
|
if (!file.open(QIODevice::WriteOnly)) {
|
|
kError(7043) << "Can't write to file " << filename << endl;
|
|
return;
|
|
}
|
|
QTextStream tstream(&file);
|
|
tstream.setCodec("UTF-8");
|
|
tstream << toString(grp, showAddress);
|
|
}
|
|
|
|
QString HTMLExporter::toString(const KBookmarkGroup &grp, bool showAddress)
|
|
{
|
|
m_showAddress = showAddress;
|
|
traverse(grp);
|
|
return "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
|
|
"<html><head><title>"+i18n("My Bookmarks")+"</title>\n"
|
|
"<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">"
|
|
"</head>\n"
|
|
"<body>\n"
|
|
"<div>"
|
|
+ m_string +
|
|
"</div>\n"
|
|
"</body>\n</html>\n";
|
|
}
|
|
|
|
void HTMLExporter::visit(const KBookmark &bk) {
|
|
// kDebug() << "visit(" << bk.text() << ")";
|
|
if(bk.isSeparator())
|
|
{
|
|
m_out << bk.fullText() << "<br>"<<endl;
|
|
}
|
|
else
|
|
{
|
|
if(m_showAddress)
|
|
{
|
|
m_out << bk.fullText() <<"<br>"<< endl;
|
|
m_out << "<i><div style =\"margin-left: 1em\">" << bk.url().url().toUtf8() << "</div></i>";
|
|
}
|
|
else
|
|
{
|
|
m_out << "<a href=\"" << bk.url().url().toUtf8() << "\">";
|
|
m_out << bk.fullText() << "</a><br>" << endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
void HTMLExporter::visitEnter(const KBookmarkGroup &grp) {
|
|
// kDebug() << "visitEnter(" << grp.text() << ")";
|
|
m_out << "<b>" << grp.fullText() << "</b><br>" << endl;
|
|
m_out << "<div style=\"margin-left: 2em\">"<< endl;
|
|
}
|
|
|
|
void HTMLExporter::visitLeave(const KBookmarkGroup &) {
|
|
// kDebug() << "visitLeave()";
|
|
m_out << "</div>" << endl;
|
|
}
|
|
|