/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the Qt Assistant of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "bookmarkitem.h" #include #include QT_BEGIN_NAMESPACE BookmarkItem::BookmarkItem(const DataVector &data, BookmarkItem *parent) : m_data(data) , m_parent(parent) { } BookmarkItem::~BookmarkItem() { qDeleteAll(m_children); } BookmarkItem* BookmarkItem::parent() const { return m_parent; } void BookmarkItem::setParent(BookmarkItem *parent) { m_parent = parent; } void BookmarkItem::addChild(BookmarkItem *child) { child->setParent(this); m_children.append(child); } BookmarkItem* BookmarkItem::child(int number) const { if (number >= 0 && number < m_children.count()) return m_children[number]; return 0; } int BookmarkItem::childCount() const { return m_children.count(); } int BookmarkItem::childNumber() const { if (m_parent) return m_parent->m_children.indexOf(const_cast(this)); return 0; } QVariant BookmarkItem::data(int column) const { if (column == 0) return m_data[0]; if (column == 1 || column == UserRoleUrl) return m_data[1]; if (column == UserRoleFolder) return m_data[1].toString() == QLatin1String("Folder"); if (column == UserRoleExpanded) return m_data[2]; return QVariant(); } void BookmarkItem::setData(const DataVector &data) { m_data = data; } bool BookmarkItem::setData(int column, const QVariant &newValue) { int index = -1; if (column == 0 || column == 1) index = column; if (column == UserRoleUrl || column == UserRoleFolder) index = 1; if (column == UserRoleExpanded) index = 2; if (index < 0) return false; m_data[index] = newValue; return true; } bool BookmarkItem::insertChildren(bool isFolder, int position, int count) { if (position < 0 || position > m_children.size()) return false; for (int row = 0; row < count; ++row) { m_children.insert(position, new BookmarkItem(DataVector() << (isFolder ? QCoreApplication::translate("BookmarkItem", "New Folder") : QCoreApplication::translate("BookmarkItem", "Untitled")) << (isFolder ? "Folder" : "about:blank") << false, this)); } return true; } bool BookmarkItem::removeChildren(int position, int count) { if (position < 0 || position > m_children.size()) return false; for (int row = 0; row < count; ++row) delete m_children.takeAt(position); return true; } void BookmarkItem::dumpTree(int indent) const { const QString tree(indent, ' '); qDebug() << tree + (data(UserRoleFolder).toBool() ? "Folder" : "Bookmark") << "Label:" << data(0).toString() << "parent:" << m_parent << "this:" << this; foreach (BookmarkItem *item, m_children) item->dumpTree(indent + 4); } QT_END_NAMESPACE