summaryrefslogtreecommitdiffstats
path: root/tdeio/bookmarks/kbookmarkdombuilder.cc
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 21:23:48 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-12-06 21:24:20 +0900
commit4f99f868f09bbffa2e15733b8b7c78eba07a199e (patch)
tree3fb0957e93160f69f55942fff50a2ad496bf4f4c /tdeio/bookmarks/kbookmarkdombuilder.cc
parent19f44e5ff3756172540e768fc0d08d761f0c374e (diff)
downloadtdelibs-4f99f868f09bbffa2e15733b8b7c78eba07a199e.tar.gz
tdelibs-4f99f868f09bbffa2e15733b8b7c78eba07a199e.zip
Renaming of files in preparation for code style tools.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeio/bookmarks/kbookmarkdombuilder.cc')
-rw-r--r--tdeio/bookmarks/kbookmarkdombuilder.cc81
1 files changed, 0 insertions, 81 deletions
diff --git a/tdeio/bookmarks/kbookmarkdombuilder.cc b/tdeio/bookmarks/kbookmarkdombuilder.cc
deleted file mode 100644
index 5c0882d05..000000000
--- a/tdeio/bookmarks/kbookmarkdombuilder.cc
+++ /dev/null
@@ -1,81 +0,0 @@
-/* This file is part of the KDE project
- Copyright (C) 2000 David Faure <faure@kde.org>
- Copyright (C) 2002-2003 Alexander Kellett <lypanov@kde.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License as published by the Free Software Foundation; either
- version 2 of the License, or (at your option) any later version.
-
- 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
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library 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 <kbookmarkmanager.h>
-#include <kdebug.h>
-
-#include "kbookmarkdombuilder.h"
-
-KBookmarkDomBuilder::KBookmarkDomBuilder(
- const KBookmarkGroup &bkGroup, KBookmarkManager *manager
-) {
- m_manager = manager;
- m_stack.push(bkGroup);
-}
-
-KBookmarkDomBuilder::~KBookmarkDomBuilder() {
- m_list.clear();
- m_stack.clear();
-}
-
-void KBookmarkDomBuilder::connectImporter(const TQObject *importer) {
- connect(importer, TQT_SIGNAL( newBookmark(const TQString &, const TQCString &, const TQString &) ),
- TQT_SLOT( newBookmark(const TQString &, const TQCString &, const TQString &) ));
- connect(importer, TQT_SIGNAL( newFolder(const TQString &, bool, const TQString &) ),
- TQT_SLOT( newFolder(const TQString &, bool, const TQString &) ));
- connect(importer, TQT_SIGNAL( newSeparator() ),
- TQT_SLOT( newSeparator() ) );
- connect(importer, TQT_SIGNAL( endFolder() ),
- TQT_SLOT( endFolder() ) );
-}
-
-void KBookmarkDomBuilder::newBookmark(
- const TQString &text, const TQCString &url, const TQString &additionalInfo
-) {
- KBookmark bk = m_stack.top().addBookmark(
- m_manager, text,
- KURL( TQString::fromUtf8(url), 106 /*utf8*/ ),
- TQString::null, false);
- // store additional info
- bk.internalElement().setAttribute("netscapeinfo", additionalInfo);
-}
-
-void KBookmarkDomBuilder::newFolder(
- const TQString & text, bool open, const TQString & additionalInfo
-) {
- // we use a qvaluelist so that we keep pointers to valid objects in the stack
- KBookmarkGroup gp = m_stack.top().createNewFolder(m_manager, text, false);
- m_list.append(gp);
- m_stack.push(m_list.last());
- // store additional info
- TQDomElement element = m_list.last().internalElement();
- element.setAttribute("netscapeinfo", additionalInfo);
- element.setAttribute("folded", (open?"no":"yes"));
-}
-
-void KBookmarkDomBuilder::newSeparator() {
- m_stack.top().createNewSeparator();
-}
-
-void KBookmarkDomBuilder::endFolder() {
- m_stack.pop();
-}
-
-#include "kbookmarkdombuilder.moc"