OSDN Git Service

dcd194d19f5992281373a5ab3c4d366092359412
[qt-creator-jp/qt-creator-jp.git] / src / plugins / help / openpagesmodel.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "openpagesmodel.h"
35 #include "helpviewer.h"
36
37 #include <QtCore/QUrl>
38
39 using namespace Help::Internal;
40
41 OpenPagesModel::OpenPagesModel(QObject *parent)
42     : QAbstractTableModel(parent)
43 {
44 }
45
46 int OpenPagesModel::rowCount(const QModelIndex &parent) const
47 {
48     return  parent.isValid() ? 0 : m_pages.count();
49 }
50
51 int OpenPagesModel::columnCount(const QModelIndex &/*parent*/) const
52 {
53     return 2;
54 }
55
56 QVariant OpenPagesModel::data(const QModelIndex &index, int role) const
57 {
58     if (!index.isValid() || index.row() >= rowCount()
59         || index.column() >= columnCount() - 1)
60         return QVariant();
61
62     switch (role) {
63         case Qt::ToolTipRole:
64             return m_pages.at(index.row())->source().toString();
65         case Qt::DisplayRole: {
66             QString title = m_pages.at(index.row())->title();
67             title.replace(QLatin1Char('&'), QLatin1String("&&"));
68             return title.isEmpty() ? tr("(Untitled)") : title;
69         }
70         default:
71             break;
72     }
73     return QVariant();
74 }
75
76 void OpenPagesModel::addPage(const QUrl &url, qreal zoom)
77 {
78     beginInsertRows(QModelIndex(), rowCount(), rowCount());
79     HelpViewer *page = new HelpViewer(zoom);
80     connect(page, SIGNAL(titleChanged()), this, SLOT(handleTitleChanged()));
81     m_pages << page;
82     endInsertRows();
83     page->setSource(url);
84 }
85
86 void OpenPagesModel::removePage(int index)
87 {
88     Q_ASSERT(index >= 0 && index < rowCount());
89     beginRemoveRows(QModelIndex(), index, index);
90     HelpViewer *page = m_pages.at(index);
91     m_pages.removeAt(index);
92     endRemoveRows();
93     page->deleteLater();
94 }
95
96 HelpViewer *OpenPagesModel::pageAt(int index) const
97 {
98     Q_ASSERT(index >= 0 && index < rowCount());
99     return m_pages.at(index);
100 }
101
102 void OpenPagesModel::handleTitleChanged()
103 {
104     HelpViewer *page = static_cast<HelpViewer *>(sender());
105     const int row = m_pages.indexOf(page);
106     Q_ASSERT(row != -1 );
107     const QModelIndex &item = index(row, 0);
108     emit dataChanged(item, item);
109 }