X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FXGUI%2FXGUI_DocumentDataModel.cpp;h=6082e445bb56df332252a752caa11c14477e13dd;hb=4224f4dbe7ceaefe74b5d6b79a5840a9f5df2d7a;hp=a13cca5357a171edde2b465434c8cc73421f0d28;hpb=62aff3aeed20f6d8e4001a2473bee227f92d9f66;p=modules%2Fshaper.git diff --git a/src/XGUI/XGUI_DocumentDataModel.cpp b/src/XGUI/XGUI_DocumentDataModel.cpp index a13cca535..6082e445b 100644 --- a/src/XGUI/XGUI_DocumentDataModel.cpp +++ b/src/XGUI/XGUI_DocumentDataModel.cpp @@ -1,34 +1,40 @@ #include "XGUI_DocumentDataModel.h" #include "XGUI_PartDataModel.h" +#include "XGUI_Workshop.h" +#include "XGUI_Tools.h" #include -#include #include #include #include -#include +#include +#include +#include -#include +#include +#include #include #include +#include +#include + +#define ACTIVE_COLOR QColor(0,72,140) +#define PASSIVE_COLOR Qt::black XGUI_DocumentDataModel::XGUI_DocumentDataModel(QObject* theParent) - : QAbstractItemModel(theParent) + : QAbstractItemModel(theParent), myActivePart(0) { - // Find Document object - std::shared_ptr aMgr = ModelAPI_PluginManager::get(); - myDocument = aMgr->currentDocument(); - // Register in event loop - Event_Loop::loop()->registerListener(this, Event_Loop::eventByName(EVENT_FEATURE_CREATED)); - Event_Loop::loop()->registerListener(this, Event_Loop::eventByName(EVENT_FEATURE_UPDATED)); - Event_Loop::loop()->registerListener(this, Event_Loop::eventByName(EVENT_FEATURE_DELETED)); + Events_Loop::loop()->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_CREATED)); + Events_Loop::loop()->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_UPDATED)); + Events_Loop::loop()->registerListener(this, Events_Loop::eventByName(EVENT_OBJECT_DELETED)); // Create a top part of data tree model - myModel = new XGUI_TopDataModel(myDocument, this); + myModel = new XGUI_TopDataModel(this); + myModel->setItemsColor(ACTIVE_COLOR); } @@ -38,82 +44,191 @@ XGUI_DocumentDataModel::~XGUI_DocumentDataModel() } -void XGUI_DocumentDataModel::processEvent(const Event_Message* theMessage) +void XGUI_DocumentDataModel::processEvent(const Events_Message* theMessage) { + DocumentPtr aRootDoc = ModelAPI_PluginManager::get()->rootDocument(); + // Created object event ******************* - if (QString(theMessage->eventID().eventText()) == EVENT_FEATURE_CREATED) { - const ModelAPI_FeatureUpdatedMessage* aUpdMsg = dynamic_cast(theMessage); - std::shared_ptr aDoc = aUpdMsg->document(); - std::shared_ptr aFeature = aUpdMsg->feature(); - - if (aDoc == myDocument) { // If root objects - if (aFeature->getGroup().compare(PARTS_GROUP) == 0) { // Updsate only Parts group - // Add a new part - int aStart = myModel->rowCount(QModelIndex()) + myPartModels.size(); - XGUI_PartDataModel* aModel = new XGUI_PartDataModel(myDocument, this); - aModel->setPartId(myPartModels.count()); - myPartModels.append(aModel); - insertRows(QModelIndex(), aStart, aStart); - } else { // Update top groups (other except parts - QModelIndex aIndex = myModel->findParent(aFeature); - int aStart = myModel->rowCount(aIndex); - aIndex = createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)); - insertRows(aIndex, aStart-1, aStart); - } - } else { // if sub-objects of first level nodes - XGUI_PartModel* aPartModel = 0; - QList::const_iterator aIt; - for (aIt = myPartModels.constBegin(); aIt != myPartModels.constEnd(); ++aIt) { - if ((*aIt)->hasDocument(aDoc)) { - aPartModel = (*aIt); - break; + if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_CREATED)) { + const ModelAPI_ObjectUpdatedMessage* aUpdMsg = dynamic_cast(theMessage); + std::set aObjects = aUpdMsg->objects(); + + std::set::const_iterator aIt; + for (aIt = aObjects.begin(); aIt != aObjects.end(); ++aIt) { + ObjectPtr aObject = (*aIt); + FeaturePtr aFeature = boost::dynamic_pointer_cast(aObject); + if (aFeature && (!aFeature->isInHistory())) + continue; + + DocumentPtr aDoc = aObject->document(); + if (aDoc == aRootDoc) { // If root objects + if (aObject->groupName() == ModelAPI_ResultPart::group()) { // Update only Parts group + // Add a new part + int aStart = myPartModels.size(); + XGUI_PartDataModel* aModel = new XGUI_PartDataModel(this); + aModel->setPartId(myPartModels.count()); + myPartModels.append(aModel); + insertRow(aStart, partFolderNode()); + } else { // Update top groups (other except parts + QModelIndex aIndex = myModel->findParent(aObject); + int aStart = myModel->rowCount(aIndex) - 1; + if (aStart < 0) aStart = 0; + aIndex = createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)); + insertRow(aStart, aIndex); + } + } else { // if sub-objects of first level nodes + XGUI_PartModel* aPartModel = 0; + QList::const_iterator aIt; + for (aIt = myPartModels.constBegin(); aIt != myPartModels.constEnd(); ++aIt) { + if ((*aIt)->hasDocument(aDoc)) { + aPartModel = (*aIt); + break; + } + } + if (aPartModel) { + QModelIndex aIndex = aPartModel->findParent(aObject); + int aStart = aPartModel->rowCount(aIndex); // check this index + aIndex = createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)); + insertRow(aStart, aIndex); } } - if (aPartModel) { - QModelIndex aIndex = aPartModel->findParent(aFeature); - int aStart = aPartModel->rowCount(aIndex); - aIndex = createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)); - insertRows(aIndex, aStart-1, aStart); + } + // Deleted object event *********************** + } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_DELETED)) { + const ModelAPI_ObjectDeletedMessage* aUpdMsg = dynamic_cast(theMessage); + DocumentPtr aDoc = aUpdMsg->document(); + std::set aGroups = aUpdMsg->groups(); + + std::set::const_iterator aIt; + for (aIt = aGroups.begin(); aIt != aGroups.end(); ++aIt) { + std::string aGroup = (*aIt); + if (aDoc == aRootDoc) { // If root objects + if (aGroup == ModelAPI_ResultPart::group()) { // Update only Parts group + int aStart = myPartModels.size() - 1; + removeSubModel(aStart); + removeRow(aStart, partFolderNode()); + if (myActivePart && (!isPartSubModel(myActivePart))) { + myActivePart = 0; + myActivePartIndex = QModelIndex(); + myModel->setItemsColor(ACTIVE_COLOR); + } + } else { // Update top groups (other except parts + QModelIndex aIndex = myModel->findGroup(aGroup); + int aStart = myModel->rowCount(aIndex); + aIndex = createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)); + removeRow(aStart, aIndex); + } + } else { + XGUI_PartModel* aPartModel = 0; + QList::const_iterator aIt; + for (aIt = myPartModels.constBegin(); aIt != myPartModels.constEnd(); ++aIt) { + if ((*aIt)->hasDocument(aDoc)) { + aPartModel = (*aIt); + break; + } + } + if (aPartModel) { + QModelIndex aIndex = aPartModel->findGroup(aGroup); + int aStart = aPartModel->rowCount(aIndex); + aIndex = createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)); + removeRow(aStart, aIndex); + } } } + // Deleted object event *********************** + } else if (theMessage->eventID() == Events_Loop::loop()->eventByName(EVENT_OBJECT_UPDATED)) { + //const ModelAPI_ObjectUpdatedMessage* aUpdMsg = dynamic_cast(theMessage); + //ObjectPtr aFeature = aUpdMsg->feature(); + //DocumentPtr aDoc = aFeature->document(); + + // TODO: Identify the necessary index by the modified feature + QModelIndex aIndex; + emit dataChanged(aIndex, aIndex); + + // Reset whole tree ************************** + } else { + rebuildDataTree(); + } +} - // Deteted object event *********************** - } if (QString(theMessage->eventID().eventText()) == EVENT_FEATURE_DELETED) { - const ModelAPI_FeatureDeletedMessage* aUpdMsg = dynamic_cast(theMessage); - std::shared_ptr aDoc = aUpdMsg->document(); +void XGUI_DocumentDataModel::rebuildDataTree() +{ + DocumentPtr aRootDoc = ModelAPI_PluginManager::get()->rootDocument(); - if (aDoc == myDocument) { // If root objects - int aStart = myPartModels.count() - 1; + beginResetModel(); + clearModelIndexes(); + + int aNbParts = aRootDoc->size(ModelAPI_ResultPart::group()); + if (myPartModels.size() != aNbParts) { // resize internal models + while (myPartModels.size() > aNbParts) { delete myPartModels.last(); myPartModels.removeLast(); - beginRemoveRows(QModelIndex(), aStart, aStart); - endRemoveRows(); } - // Reset whole tree ************************** - } else { - beginResetModel(); - int aNbParts = myDocument->featuresIterator(PARTS_GROUP)->numIterationsLeft(); - if (myPartModels.size() != aNbParts) { // resize internal models - while (myPartModels.size() > aNbParts) { - delete myPartModels.last(); - myPartModels.removeLast(); - } - while (myPartModels.size() < aNbParts) { - myPartModels.append(new XGUI_PartDataModel(myDocument, this)); - } - for (int i = 0; i < myPartModels.size(); i++) - myPartModels.at(i)->setPartId(i); + while (myPartModels.size() < aNbParts) { + myPartModels.append(new XGUI_PartDataModel(this)); } - clearModelIndexes(); - endResetModel(); + for (int i = 0; i < myPartModels.size(); i++) + myPartModels.at(i)->setPartId(i); } + endResetModel(); } QVariant XGUI_DocumentDataModel::data(const QModelIndex& theIndex, int theRole) const { if (!theIndex.isValid()) return QVariant(); - return toSourceModelIndex(theIndex).data(theRole); + switch (theIndex.internalId()) { + case PartsFolder: + switch (theRole) { + case Qt::DisplayRole: + return tr("Parts") + QString(" (%1)").arg(rowCount(theIndex)); + case Qt::DecorationRole: + return QIcon(":pictures/constr_folder.png"); + case Qt::ToolTipRole: + return tr("Parts folder"); + case Qt::ForegroundRole: + if (myActivePart) + return QBrush(PASSIVE_COLOR); + else + return QBrush(ACTIVE_COLOR); + default: + return QVariant(); + } + break; + case HistoryNode: + { + int aOffset = historyOffset(); + DocumentPtr aRootDoc = ModelAPI_PluginManager::get()->rootDocument(); + ObjectPtr aObj = aRootDoc->object(ModelAPI_Feature::group(), theIndex.row() - aOffset); + FeaturePtr aFeature = boost::dynamic_pointer_cast(aObj); + if (!aFeature) + return QVariant(); + switch (theRole) { + case Qt::DisplayRole: + if (aFeature) + return aFeature->data()->name().c_str(); + else + return QVariant(); + case Qt::DecorationRole: + return QIcon(XGUI_Workshop::featureIcon(aFeature->getKind())); + case Qt::ToolTipRole: + return tr("Feature object"); + case Qt::ForegroundRole: + if (myActivePart) + return QBrush(PASSIVE_COLOR); + else + return QBrush(ACTIVE_COLOR); + default: + return QVariant(); + } + } + break; + } + QModelIndex aParent = theIndex.parent(); + if (aParent.isValid() && (aParent.internalId() == PartsFolder)) { + return myPartModels.at(theIndex.row())->data(QModelIndex(), theRole); + } + return toSourceModelIndex(theIndex)->data(theRole); } @@ -124,11 +239,31 @@ QVariant XGUI_DocumentDataModel::headerData(int theSection, Qt::Orientation theO int XGUI_DocumentDataModel::rowCount(const QModelIndex& theParent) const { - if (!theParent.isValid()) - return myModel->rowCount(theParent) + myPartModels.size(); - - QModelIndex aParent = toSourceModelIndex(theParent); - return aParent.model()->rowCount(aParent); + if (!theParent.isValid()) { + DocumentPtr aRootDoc = ModelAPI_PluginManager::get()->rootDocument(); + // Size of external models + int aVal = historyOffset(); + // Plus history size + aVal += aRootDoc->size(ModelAPI_Feature::group()); + return aVal; + } + if (theParent.internalId() == PartsFolder) { + int aSize = myPartModels.size(); + return myPartModels.size(); + } + if (theParent.internalId() == HistoryNode) { + return 0; + } + QModelIndex* aParent = toSourceModelIndex(theParent); + const QAbstractItemModel* aModel = aParent->model(); + if (!isSubModel(aModel)) + return 0; + + /*if (isPartSubModel(aModel)) { + if (aModel != myActivePart) + return 0; + }*/ + return aModel->rowCount(*aParent); } int XGUI_DocumentDataModel::columnCount(const QModelIndex& theParent) const @@ -141,16 +276,22 @@ QModelIndex XGUI_DocumentDataModel::index(int theRow, int theColumn, const QMode QModelIndex aIndex; if (!theParent.isValid()) { int aOffs = myModel->rowCount(); - if (theRow < aOffs) + if (theRow < aOffs) { aIndex = myModel->index(theRow, theColumn, theParent); - else - aIndex = myPartModels.at(theRow - aOffs)->index(theRow - aOffs, theColumn, theParent); - - aIndex = createIndex(theRow, theColumn, (void*)getModelIndex(aIndex)); + aIndex = createIndex(theRow, theColumn, (void*)getModelIndex(aIndex)); + } else { + if (theRow == aOffs) // Create Parts node + aIndex = partFolderNode(); + else // create history node + aIndex = createIndex(theRow, theColumn, HistoryNode); + } } else { - QModelIndex* aParent = (QModelIndex*)theParent.internalPointer(); - aIndex = aParent->model()->index(theRow, theColumn, (*aParent)); - + if (theParent.internalId() == PartsFolder) { + aIndex = myPartModels.at(theRow)->index(0, theColumn, QModelIndex()); + } else { + QModelIndex* aParent = (QModelIndex*)theParent.internalPointer(); + aIndex = aParent->model()->index(theRow, theColumn, (*aParent)); + } aIndex = createIndex(theRow, theColumn, (void*)getModelIndex(aIndex)); } return aIndex; @@ -159,11 +300,24 @@ QModelIndex XGUI_DocumentDataModel::index(int theRow, int theColumn, const QMode QModelIndex XGUI_DocumentDataModel::parent(const QModelIndex& theIndex) const { - QModelIndex aParent = toSourceModelIndex(theIndex); - aParent = aParent.model()->parent(aParent); - if (aParent.isValid()) - return createIndex(aParent.row(), aParent.column(), (void*)getModelIndex(aParent)); - return aParent; + if ((theIndex.internalId() == PartsFolder) || (theIndex.internalId() == HistoryNode)) + return QModelIndex(); + + QModelIndex* aIndex = toSourceModelIndex(theIndex); + const QAbstractItemModel* aModel = aIndex->model(); + if (!isSubModel(aModel)) + return QModelIndex(); + + if (isPartSubModel(aModel)) { + if (!aModel->parent(*aIndex).isValid()) { + return partFolderNode(); + } + } + + QModelIndex aIndex1 = aModel->parent(*aIndex); + if (aIndex1.isValid()) + return createIndex(aIndex1.row(), aIndex1.column(), (void*)getModelIndex(aIndex1)); + return aIndex1; } @@ -175,10 +329,10 @@ bool XGUI_DocumentDataModel::hasChildren(const QModelIndex& theParent) const } -QModelIndex XGUI_DocumentDataModel::toSourceModelIndex(const QModelIndex& theProxy) const +QModelIndex* XGUI_DocumentDataModel::toSourceModelIndex(const QModelIndex& theProxy) const { QModelIndex* aIndexPtr = static_cast(theProxy.internalPointer()); - return (*aIndexPtr); + return aIndexPtr; } @@ -212,17 +366,202 @@ void XGUI_DocumentDataModel::clearModelIndexes() myIndexes.clear(); } -FeaturePtr XGUI_DocumentDataModel::feature(const QModelIndex& theIndex) const +ObjectPtr XGUI_DocumentDataModel::object(const QModelIndex& theIndex) const { - QModelIndex aIndex = toSourceModelIndex(theIndex); - const XGUI_FeaturesModel* aModel = dynamic_cast(aIndex.model()); - return aModel->feature(aIndex); + if (theIndex.internalId() == PartsFolder) + return ObjectPtr(); + if (theIndex.internalId() == HistoryNode) { + DocumentPtr aRootDoc = ModelAPI_PluginManager::get()->rootDocument(); + int aOffset = historyOffset(); + return aRootDoc->object(ModelAPI_Feature::group(), theIndex.row() - aOffset); + } + QModelIndex* aIndex = toSourceModelIndex(theIndex); + if (!isSubModel(aIndex->model())) + return ObjectPtr(); + + const XGUI_FeaturesModel* aModel = dynamic_cast(aIndex->model()); + return aModel->object(*aIndex); } -void XGUI_DocumentDataModel::insertRows(const QModelIndex& theParent, int theStart, int theEnd) +bool XGUI_DocumentDataModel::insertRows(int theRow, int theCount, const QModelIndex& theParent) { - beginInsertRows(theParent, theStart, theEnd); + beginInsertRows(theParent, theRow, theRow + theCount - 1); + //endInsertRows(); + + // Update history + QModelIndex aRoot; + int aRow = rowCount(aRoot); + beginInsertRows(aRoot, aRow, aRow); endInsertRows(); - if (theStart == 1) // Update parent if this is a first child in order to update node decoration - emit dataChanged(theParent, theParent); -} \ No newline at end of file + + return true; +} + +bool XGUI_DocumentDataModel::removeRows(int theRow, int theCount, const QModelIndex& theParent) +{ + beginRemoveRows(theParent, theRow, theRow + theCount - 1); + endRemoveRows(); + return true; +} + + +void XGUI_DocumentDataModel::removeSubModel(int theModelId) +{ + XGUI_PartModel* aModel = myPartModels.at(theModelId); + QIntList aToRemove; + for (int i = 0; i < myIndexes.size(); i++) { + if (myIndexes.at(i)->model() == aModel) + aToRemove.append(i); + } + int aId; + while(aToRemove.size() > 0) { + aId = aToRemove.last(); + delete myIndexes.at(aId); + myIndexes.removeAt(aId); + aToRemove.removeLast(); + } + delete aModel; + myPartModels.removeAt(theModelId); +} + +bool XGUI_DocumentDataModel::isSubModel(const QAbstractItemModel* theModel) const +{ + if (theModel == myModel) + return true; + return isPartSubModel(theModel); +} + +bool XGUI_DocumentDataModel::isPartSubModel(const QAbstractItemModel* theModel) const +{ + return myPartModels.contains((XGUI_PartModel*)theModel); +} + +QModelIndex XGUI_DocumentDataModel::partFolderNode() const +{ + int aPos = myModel->rowCount(QModelIndex()); + return createIndex(aPos, columnCount() - 1, PartsFolder); +} + +int XGUI_DocumentDataModel::historyOffset() const +{ + // Nb of rows of top model + Parts folder + return myModel->rowCount(QModelIndex()) + 1; +} + +bool XGUI_DocumentDataModel::activatedIndex(const QModelIndex& theIndex) +{ + if ((theIndex.internalId() == PartsFolder) || (theIndex.internalId() == HistoryNode)) + return false; + + QModelIndex* aIndex = toSourceModelIndex(theIndex); + if (!aIndex) + return false; + + const QAbstractItemModel* aModel = aIndex->model(); + + if (isPartSubModel(aModel)) { + // if this is root node (Part item index) + if (!aIndex->parent().isValid()) { + if (myActivePart) myActivePart->setItemsColor(PASSIVE_COLOR); + + if (myActivePart == aModel) { + myActivePart = 0; + myActivePartIndex = QModelIndex(); + } else { + myActivePart = (XGUI_PartModel*)aModel; + myActivePartIndex = theIndex; + } + + if (myActivePart) { + myActivePart->setItemsColor(ACTIVE_COLOR); + myModel->setItemsColor(PASSIVE_COLOR); + } else + myModel->setItemsColor(ACTIVE_COLOR); + return true; + } + } + return false; +} + +ResultPartPtr XGUI_DocumentDataModel::activePart() const +{ + if (myActivePart) + return myActivePart->part(); + return ResultPartPtr(); +} + +void XGUI_DocumentDataModel::deactivatePart() +{ + if (myActivePart) + myActivePart->setItemsColor(PASSIVE_COLOR); + myActivePart = 0; + myActivePartIndex = QModelIndex(); + myModel->setItemsColor(ACTIVE_COLOR); +} + +Qt::ItemFlags XGUI_DocumentDataModel::flags(const QModelIndex& theIndex) const +{ + Qt::ItemFlags aFlags = QAbstractItemModel::flags(theIndex); + if (object(theIndex)) { + aFlags |= Qt::ItemIsEditable; + } + return aFlags; +} + +QModelIndex XGUI_DocumentDataModel::partIndex(const ResultPartPtr& theObject) const +{ + int aRow = -1; + XGUI_PartModel* aModel = 0; + foreach (XGUI_PartModel* aPartModel, myPartModels) { + aRow++; + if (aPartModel->part() == theObject) { + aModel = aPartModel; + break; + } + } + if (aModel) { + return createIndex(aRow, 0, (void*)getModelIndex(aModel->index(0, 0, QModelIndex()))); + } + return QModelIndex(); +} + +QModelIndex XGUI_DocumentDataModel::objectIndex(const ObjectPtr theObject) const +{ + // Check that this feature belongs to root document + DocumentPtr aRootDoc = ModelAPI_PluginManager::get()->rootDocument(); + DocumentPtr aDoc = theObject->document(); + if (aDoc == aRootDoc) { + // This feature belongs to histrory or top model + FeaturePtr aFeature = boost::dynamic_pointer_cast(theObject); + if (aFeature) { + int aId; + int aNb = aRootDoc->size(ModelAPI_Feature::group()); + for (aId = 0; aId < aNb; aId++) { + if (theObject == aRootDoc->object(ModelAPI_Feature::group(), aId)) + break; + } + if (aId < aNb) + return index(aId + historyOffset(), 0, QModelIndex()); + } else { + QModelIndex aIndex = myModel->objectIndex(theObject); + return aIndex.isValid()? + createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)) : + QModelIndex(); + } + } else { + XGUI_PartModel* aPartModel = 0; + foreach(XGUI_PartModel* aModel, myPartModels) { + if (aModel->hasDocument(aDoc)) { + aPartModel = aModel; + break; + } + } + if (aPartModel) { + QModelIndex aIndex = aPartModel->objectIndex(theObject); + return aIndex.isValid()? + createIndex(aIndex.row(), aIndex.column(), (void*)getModelIndex(aIndex)) : + QModelIndex(); + } + } + return QModelIndex(); +}