1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254
|
/* This file is part of the KDE project
* Copyright (C) 2011 Gopalakrishna Bhat A <gopalakbhat@gmail.com>
*
* 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 library 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 library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "TableOfContentsStyleModel.h"
#include "KoStyleManager.h"
#include <KoStyleThumbnailer.h>
#include "KoParagraphStyle.h"
#include "ToCBibGeneratorInfo.h"
#include "KoTableOfContentsGeneratorInfo.h"
#include <QPair>
#include <KLocale>
TableOfContentsStyleModel::TableOfContentsStyleModel(const KoStyleManager *manager, KoTableOfContentsGeneratorInfo *info)
:QAbstractTableModel(),
m_styleManager(manager),
m_styleThumbnailer(new KoStyleThumbnailer()),
m_tocInfo(info)
{
Q_ASSERT(manager);
Q_ASSERT(info);
m_styleThumbnailer->setThumbnailSize(QSize(250, 48));
foreach(const KoParagraphStyle *style, m_styleManager->paragraphStyles()) {
m_styleList.append(style->styleId());
m_outlineLevel.append(getOutlineLevel(style->styleId()));
}
}
QModelIndex TableOfContentsStyleModel::index(int row, int column, const QModelIndex &parent) const
{
if (row < 0 || column < 0 || column > 1)
return QModelIndex();
if (! parent.isValid()) {
if (row >= m_styleList.count())
return QModelIndex();
QPair<int, int> *modelValue = new QPair<int, int>(m_styleList[row], m_outlineLevel[row]);
return createIndex(row, column, modelValue);
}
return QModelIndex();
}
int TableOfContentsStyleModel::rowCount(const QModelIndex &parent) const
{
if (!parent.isValid())
return m_styleList.count();
return 0;
}
int TableOfContentsStyleModel::columnCount(const QModelIndex &parent) const
{
if (!parent.isValid())
return 2;
return 0;
}
QVariant TableOfContentsStyleModel::data(const QModelIndex &index, int role) const
{
if (!index.isValid())
return QVariant();
int id = static_cast< QPair<int, int> *>(index.internalPointer())->first;
if (index.column() == 0) {
switch (role) {
case Qt::DisplayRole: {
return QVariant();
}
case Qt::DecorationRole: {
if (!m_styleThumbnailer) {
return QPixmap();
}
KoParagraphStyle *paragStyle = m_styleManager->paragraphStyle(id);
if (paragStyle) {
return m_styleThumbnailer->thumbnail(paragStyle);
}
break;
}
default: break;
}
} else {
KoParagraphStyle *paragStyle = m_styleManager->paragraphStyle(id);
switch (role) {
case Qt::DisplayRole: {
if (paragStyle) {
if(QVariant(static_cast< QPair<int, int> *>(index.internalPointer())->second).value<int>() == 0)
return QVariant(i18n("Disabled"));
else
return QVariant(static_cast< QPair<int, int> *>(index.internalPointer())->second);
}
}
case Qt::EditRole: {
if (paragStyle)
return QVariant(static_cast< QPair<int, int> *>(index.internalPointer())->second);
}
default: break;
}
}
return QVariant();
}
Qt::ItemFlags TableOfContentsStyleModel::flags(const QModelIndex &index) const
{
if (!index.isValid())
return 0;
if (index.column() == 0) {
return (Qt::ItemIsSelectable | Qt::ItemIsEnabled);
}
if (index.column() == 1) {
return (Qt::ItemIsSelectable | Qt::ItemIsEnabled | Qt::ItemIsEditable);
}
return 0;
}
bool TableOfContentsStyleModel::setData(const QModelIndex &index, const QVariant &value, int role)
{
if (!index.isValid())
return false;
static_cast< QPair<int, int> *>(index.internalPointer())->second = value.toInt();
QAbstractTableModel::setData(index, value, role);
m_outlineLevel[index.row()] = value.toInt();
return true;
}
void TableOfContentsStyleModel::saveData()
{
int row = 0;
foreach(const int styleId, m_styleList) {
KoParagraphStyle *paragStyle = m_styleManager->paragraphStyle(styleId);
if (paragStyle) {
setOutlineLevel(styleId, m_outlineLevel[row]);
}
row++;
}
}
int TableOfContentsStyleModel::getOutlineLevel(int styleId)
{
foreach (const IndexSourceStyles &indexSourceStyles, m_tocInfo->m_indexSourceStyles) {
foreach (const IndexSourceStyle &indexStyle, indexSourceStyles.styles) {
if (m_styleManager->paragraphStyle(indexStyle.styleId) && styleId == indexStyle.styleId) {
return indexSourceStyles.outlineLevel;
}
}
}
return 0;
}
void TableOfContentsStyleModel::setOutlineLevel(int styleId, int outLineLevel)
{
//ignore changes to paragraph styles with KoParagraphStyle::OutlineLevel property set.
//i.e. those considered by KoTableOfContentsGeneratorInfo::m_useOutlineLevel==true
if (m_styleManager->paragraphStyle(styleId)->hasProperty(KoParagraphStyle::OutlineLevel)) {
return;
}
//check if the outlineLevel has changed
if (getOutlineLevel(styleId) == outLineLevel) {
return;
}
//now insert the style at the correct place( remove from the old place first and then insert at the new level)
IndexSourceStyle indexStyleMoved;
bool styleFound = false;
int sourceStyleIndex = 0;
foreach (const IndexSourceStyles &indexSourceStyles, m_tocInfo->m_indexSourceStyles) {
int index=0;
foreach (const IndexSourceStyle &indexStyle, indexSourceStyles.styles) {
if (styleId == indexStyle.styleId) {
styleFound = true;
indexStyleMoved = m_tocInfo->m_indexSourceStyles[sourceStyleIndex].styles.takeAt(index);
break;
}
index++;
if (styleFound == true) {
break;
}
}
sourceStyleIndex++;
}
//this style is not in the IndexSourceStyles list so fill it
if (! styleFound) {
indexStyleMoved.styleId = styleId;
indexStyleMoved.styleName = m_styleManager->paragraphStyle(styleId)->name();
}
//check if IndexSourceStyles are there for this outlineLevel, if not create it
bool sourceStylePresent = false;
foreach (const IndexSourceStyles &indexSourceStyles, m_tocInfo->m_indexSourceStyles) {
if (outLineLevel == indexSourceStyles.outlineLevel) {
sourceStylePresent = true;
break;
}
}
if ( !sourceStylePresent) {
IndexSourceStyles indexStyles;
indexStyles.outlineLevel = outLineLevel;
m_tocInfo->m_indexSourceStyles.append(indexStyles);
}
sourceStyleIndex = 0;
foreach (const IndexSourceStyles &indexSourceStyles, m_tocInfo->m_indexSourceStyles) {
if (outLineLevel == indexSourceStyles.outlineLevel) {
m_tocInfo->m_indexSourceStyles[sourceStyleIndex].styles.append(indexStyleMoved);
break;
}
sourceStyleIndex++;
}
}
QVariant TableOfContentsStyleModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if (orientation == Qt::Horizontal && role == Qt::DisplayRole) {
if (section == 0) {
return i18n("Styles");
} else if (section == 1) {
return i18n("Level");
} else {
return QAbstractTableModel::headerData(section, orientation, role);
}
} else {
return QAbstractTableModel::headerData(section, orientation, role);
}
}
|