// -*- 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 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation. 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; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "exporters.h" #include #include #include #include HTMLExporter::HTMLExporter() : m_out(&m_string, IO_WriteOnly) { } void HTMLExporter::write(const KBookmarkGroup &grp, const TQString &filename, bool showAddress) { TQFile file(filename); if (!file.open(IO_WriteOnly)) { kdError(7043) << "Can't write to file " << filename << endl; return; } TQTextStream tstream(&file); tstream.setEncoding(TQTextStream::UnicodeUTF8); tstream << toString(grp, showAddress); } TQString HTMLExporter::toString(const KBookmarkGroup &grp, bool showAddress) { m_showAddress = showAddress; traverse(grp); return "\n" ""+i18n("My Bookmarks")+"\n" "" "\n" "\n" "
" + m_string + "
\n" "\n\n"; } void HTMLExporter::visit(const KBookmark &bk) { // kdDebug() << "visit(" << bk.text() << ")" << endl; if(bk.isSeparator()) { m_out << bk.fullText() << "
"<"<< endl; m_out << "
" << bk.url().url().utf8() << "
"; } else { m_out << ""; m_out << bk.fullText() << "
" << endl; } } } void HTMLExporter::visitEnter(const KBookmarkGroup &grp) { // kdDebug() << "visitEnter(" << grp.text() << ")" << endl; m_out << "" << grp.fullText() << "
" << endl; m_out << "
"<< endl; } void HTMLExporter::visitLeave(const KBookmarkGroup &) { // kdDebug() << "visitLeave()" << endl; m_out << "
" << endl; }