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
|
/* This file is part of the KDE project
Copyright 2009 Johannes Simon <johannes.simon@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.
*/
// Ours
#include "SheetAccessModel.h"
#include "calligra_sheets_limits.h"
#include "Map.h"
#include "Binding.h"
#include "BindingManager.h"
#include "Damages.h"
#include "Region.h"
// Qt
#include <QList>
#include <QMap>
#include <QStandardItem>
#include <QAbstractItemModel>
#include <QVariant>
// Calligra
//#include <KoStore.h>
//#include <KoXmlWriter.h>
//#include <KoShapeSavingContext.h>
Q_DECLARE_METATYPE(QPointer<QAbstractItemModel>)
namespace Calligra
{
namespace Sheets
{
class SheetAccessModel::Private
{
public:
Map *map;
/// Stores in what column each Sheet is. We need this because
/// a Sheet is removed from its Map before the sheetRemoved() signal
/// is emitted, thus we can't ask the Map what index it had.
QMap<Sheet*, int> cols;
};
SheetAccessModel::SheetAccessModel(Map *map)
: d(new Private)
{
d->map = map;
connect(map, SIGNAL(sheetAdded(Sheet*)),
this, SLOT(slotSheetAdded(Sheet*)));
// FIXME: Check if we can simply connect sheetRevived() to slotSheetAdded()
connect(map, SIGNAL(sheetRevived(Sheet*)),
this, SLOT(slotSheetAdded(Sheet*)));
connect(map, SIGNAL(sheetRemoved(Sheet*)),
this, SLOT(slotSheetRemoved(Sheet*)));
connect(map, SIGNAL(damagesFlushed(QList<Damage*>)),
this, SLOT(handleDamages(QList<Damage*>)));
setRowCount(1);
setColumnCount(0);
}
SheetAccessModel::~SheetAccessModel()
{
delete d;
}
void SheetAccessModel::slotSheetAdded(Sheet *sheet)
{
Q_ASSERT(!d->cols.contains(sheet));
QStandardItem *item = new QStandardItem;
QList<QStandardItem*> col;
col.append(item);
// This region contains the entire sheet
const Region region(1, 1, KS_colMax, KS_rowMax, sheet);
const QPointer<QAbstractItemModel> model = const_cast<QAbstractItemModel*>( d->map->bindingManager()->createModel( region.name() ) );
item->setData( QVariant::fromValue( model ), Qt::DisplayRole );
const int sheetIndex = d->map->indexOf( sheet );
d->cols.insert(sheet, sheetIndex);
insertColumn( sheetIndex, col );
setHeaderData( sheetIndex, Qt::Horizontal, sheet->sheetName() );
}
void SheetAccessModel::slotSheetRemoved(Sheet *sheet)
{
Q_ASSERT(d->cols.contains(sheet));
removeColumn(d->cols[sheet]);
d->cols.remove(sheet);
}
void SheetAccessModel::handleDamages(const QList<Damage*>& damages)
{
QList<Damage*>::ConstIterator end(damages.end());
for (QList<Damage*>::ConstIterator it = damages.begin(); it != end; ++it) {
Damage* damage = *it;
if (!damage) {
continue;
}
if (damage->type() == Damage::Sheet) {
SheetDamage* sheetDamage = static_cast<SheetDamage*>(damage);
debugSheetsDamage << "Processing\t" << *sheetDamage;
if (sheetDamage->changes() & SheetDamage::Name) {
Sheet *sheet = sheetDamage->sheet();
// We should never receive signals from sheets that are not in our model
Q_ASSERT(d->cols.contains(sheet));
const int sheetIndex = d->cols[sheet];
setHeaderData(sheetIndex, Qt::Horizontal, sheet->sheetName());
}
continue;
}
}
}
} // namespace Sheets
} // namespace Calligra
|