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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
|
/* This file is part of the KDE project
Copyright 2007 Stefan Nikolaus <stefan.nikolaus@kdemail.net>
Copyright (C) 2008 Thomas Zander <zander@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 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 "Binding.h"
#include "BindingModel.h"
#include <QRect>
#include "SheetsDebug.h"
#include "CellStorage.h"
#include "Map.h"
#include "Sheet.h"
#include "Value.h"
using namespace Calligra::Sheets;
class Q_DECL_HIDDEN Binding::Private : public QSharedData
{
public:
BindingModel* model;
Private(Binding *q) : model(new BindingModel(q)) {}
~Private() { delete model; }
};
Binding::Binding()
: d(new Private(this))
{
}
Binding::Binding(const Region& region)
: d(new Private(this))
{
Q_ASSERT(region.isValid());
d->model->setRegion(region);
}
Binding::Binding(const Binding& other)
: d(other.d)
{
}
Binding::~Binding()
{
}
bool Binding::isEmpty() const
{
return d->model->region().isEmpty();
}
QAbstractItemModel* Binding::model() const
{
return d->model;
}
const Calligra::Sheets::Region& Binding::region() const
{
return d->model->region();
}
void Binding::setRegion(const Region& region)
{
d->model->setRegion(region);
}
void Binding::update(const Region& region)
{
QRect rect;
Region changedRegion;
const QPoint offset = d->model->region().firstRange().topLeft();
const QRect range = d->model->region().firstRange();
const Sheet* sheet = d->model->region().firstSheet();
Region::ConstIterator end(region.constEnd());
for (Region::ConstIterator it = region.constBegin(); it != end; ++it) {
if (sheet != (*it)->sheet())
continue;
rect = range & (*it)->rect();
rect.translate(-offset.x(), -offset.y());
if (rect.isValid()) {
d->model->emitDataChanged(rect);
changedRegion.add(rect, (*it)->sheet());
}
}
d->model->emitChanged(changedRegion);
}
void Binding::operator=(const Binding & other)
{
d = other.d;
}
bool Binding::operator==(const Binding& other) const
{
return d == other.d;
}
bool Binding::operator<(const Binding& other) const
{
return d < other.d;
}
QHash<QString, QVector<QRect> > BindingModel::cellRegion() const
{
QHash<QString, QVector<QRect> > answer;
Region::ConstIterator end = m_region.constEnd();
for (Region::ConstIterator it = m_region.constBegin(); it != end; ++it) {
if (!(*it)->isValid()) {
continue;
}
answer[(*it)->name()].append((*it)->rect());
}
return answer;
}
bool BindingModel::setCellRegion(const QString& regionName)
{
Q_ASSERT(m_region.isValid());
Q_ASSERT(m_region.firstSheet());
const Map* const map = m_region.firstSheet()->map();
const Region region = Region(regionName, map);
if (!region.isValid()) {
debugSheets << qPrintable(regionName) << "is not a valid region.";
return false;
}
// Clear the old binding.
Region::ConstIterator end = m_region.constEnd();
for (Region::ConstIterator it = m_region.constBegin(); it != end; ++it) {
if (!(*it)->isValid()) {
continue;
}
// FIXME Stefan: This may also clear other bindings!
(*it)->sheet()->cellStorage()->setBinding(Region((*it)->rect(), (*it)->sheet()), Binding());
}
// Set the new region
m_region = region;
end = m_region.constEnd();
for (Region::ConstIterator it = m_region.constBegin(); it != end; ++it) {
if (!(*it)->isValid()) {
continue;
}
(*it)->sheet()->cellStorage()->setBinding(Region((*it)->rect(), (*it)->sheet()), *m_binding);
}
return true;
}
/////// BindingModel
BindingModel::BindingModel(Binding* binding, QObject *parent)
: QAbstractTableModel(parent)
, m_binding(binding)
{
}
bool BindingModel::isCellRegionValid(const QString& regionName) const
{
Q_CHECK_PTR(m_region.firstSheet());
Q_CHECK_PTR(m_region.firstSheet()->map());
return Region(regionName, m_region.firstSheet()->map()).isValid();
}
void BindingModel::emitChanged(const Region& region)
{
emit changed(region);
}
void BindingModel::emitDataChanged(const QRect& rect)
{
const QPoint tl = rect.topLeft();
const QPoint br = rect.bottomRight();
//debugSheetsUI << "emit QAbstractItemModel::dataChanged" << QString("%1:%2").arg(tl).arg(br);
emit dataChanged(index(tl.y(), tl.x()), index(br.y(), br.x()));
}
QVariant BindingModel::data(const QModelIndex& index, int role) const
{
if ((m_region.isEmpty()) || (role != Qt::EditRole && role != Qt::DisplayRole))
return QVariant();
const QPoint offset = m_region.firstRange().topLeft();
const Sheet* sheet = m_region.firstSheet();
int row = offset.y() + index.row();
int column = offset.x() + index.column();
Value value = sheet->cellStorage()->value(column, row);
switch (role) {
case Qt::DisplayRole: {
// return the in the cell displayed test
Cell c(sheet, column, row);
bool showFormula = false;
return c.displayText(Style(), &value, &showFormula);
}
case Qt::EditRole: {
// return the actual cell value
// KoChart::Value is either:
// - a double (interpreted as a value)
// - a QString (interpreted as a label)
// - a QDateTime (interpreted as a date/time value)
// - Invalid (interpreted as empty)
QVariant variant;
switch (value.type()) {
case Value::Float:
case Value::Integer:
if (value.format() == Value::fmt_DateTime ||
value.format() == Value::fmt_Date ||
value.format() == Value::fmt_Time) {
variant.setValue<QDateTime>(value.asDateTime(sheet->map()->calculationSettings()));
break;
} // fall through
case Value::Boolean:
case Value::Complex:
case Value::Array:
variant.setValue<double>(numToDouble(value.asFloat()));
break;
case Value::String:
case Value::Error:
variant.setValue<QString>(value.asString());
break;
case Value::Empty:
case Value::CellRange:
default:
break;
}
return variant;
}
}
//debugSheets << index.column() <<"," << index.row() <<"," << variant;
return QVariant();
}
const Calligra::Sheets::Region& BindingModel::region() const
{
return m_region;
}
QVariant BindingModel::headerData(int section, Qt::Orientation orientation, int role) const
{
if ((m_region.isEmpty()) || (role != Qt::EditRole && role != Qt::DisplayRole))
return QVariant();
const QPoint offset = m_region.firstRange().topLeft();
const int col = (orientation == Qt::Vertical) ? offset.x() : offset.x() + section;
const int row = (orientation == Qt::Vertical) ? offset.y() + section : offset.y();
const Sheet* sheet = m_region.firstSheet();
const Value value = sheet->cellStorage()->value(col, row);
return value.asVariant();
}
int BindingModel::rowCount(const QModelIndex& parent) const
{
Q_UNUSED(parent);
return m_region.isEmpty() ? 0 : m_region.firstRange().height();
}
int BindingModel::columnCount(const QModelIndex& parent) const
{
Q_UNUSED(parent);
return m_region.isEmpty() ? 0 : m_region.firstRange().width();
}
void BindingModel::setRegion(const Region& region)
{
m_region = region;
}
|