X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ModelWidget.cpp;h=f0d33055320a9a9d21ef2fd36029e063aa75a5e1;hb=d481e13e400f2ea0e35c25884e73ccddaffd0f70;hp=80aabe71f1af66e6b9cbf413b3a1eef2b7707528;hpb=87066603a46a2c9833e0a553bf9a4aa63dd1241b;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ModelWidget.cpp b/src/ModuleBase/ModuleBase_ModelWidget.cpp index 80aabe71f..f0d330553 100644 --- a/src/ModuleBase/ModuleBase_ModelWidget.cpp +++ b/src/ModuleBase/ModuleBase_ModelWidget.cpp @@ -27,7 +27,9 @@ ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, const std::string& theParentId) : QWidget(theParent), myParentId(theParentId), - myIsEditing(false) + myIsEditing(false), + myState(Stored), + myIsValueStateBlocked(false) { myDefaultValue = theData->getProperty(ATTR_DEFAULT); myUseReset = theData->getBooleanAttribute(ATTR_USE_RESET, true); @@ -36,6 +38,16 @@ ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, myIsObligatory = theData->getBooleanAttribute(ATTR_OBLIGATORY, true); connect(this, SIGNAL(valuesChanged()), this, SLOT(onWidgetValuesChanged())); + connect(this, SIGNAL(valuesModified()), this, SLOT(onWidgetValuesModified())); +} + +bool ModuleBase_ModelWidget::reset() +{ + bool aResult = resetCustom(); + if (aResult) + setValueState(Reset); + + return aResult; } bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const @@ -111,20 +123,54 @@ void ModuleBase_ModelWidget::activate() // It should happens in the creation mode only because all fields are filled in the edition mode if (!isEditingMode()) { AttributePtr anAttribute = myFeature->data()->attribute(myAttributeID); - if (anAttribute.get() != NULL && !anAttribute->isInitialized()) { - if (isComputedDefault()) { - if (myFeature->compute(myAttributeID)) { - restoreValue(); - } - } - else { - storeValue(); - } - } + if (anAttribute.get() != NULL && !anAttribute->isInitialized()) + initializeValueByActivate(); } activateCustom(); } +void ModuleBase_ModelWidget::deactivate() +{ + myIsValueStateBlocked = false; + if (myState == ModifiedInPP) + storeValue(); + myState = Stored; +} + +void ModuleBase_ModelWidget::initializeValueByActivate() +{ + if (isComputedDefault()) { + if (myFeature->compute(myAttributeID)) { + restoreValue(); + } + } + else { + storeValue(); + } +} + +QWidget* ModuleBase_ModelWidget::getControlAcceptingFocus(const bool isFirst) +{ + QWidget* aControl = 0; + + QList aControls = getControls(); + int aSize = aControls.size(); + + if (isFirst) { + for (int i = 0; i < aSize && !aControl; i++) { + if (aControls[i]->focusPolicy() != Qt::NoFocus) + aControl = aControls[i]; + } + } + else { + for (int i = aSize - 1; i >= 0 && !aControl; i--) { + if (aControls[i]->focusPolicy() != Qt::NoFocus) + aControl = aControls[i]; + } + } + return aControl; +} + void ModuleBase_ModelWidget::setDefaultValue(const std::string& theValue) { myDefaultValue = theValue; @@ -132,6 +178,8 @@ void ModuleBase_ModelWidget::setDefaultValue(const std::string& theValue) bool ModuleBase_ModelWidget::storeValue() { + setValueState(Stored); + emit beforeValuesChanged(); bool isDone = storeValueCustom(); emit afterValuesChanged(); @@ -139,6 +187,23 @@ bool ModuleBase_ModelWidget::storeValue() return isDone; } +ModuleBase_ModelWidget::ValueState ModuleBase_ModelWidget::setValueState(const ModuleBase_ModelWidget::ValueState& theState) +{ + ValueState aState = myState; + if (myState != theState && !myIsValueStateBlocked) { + myState = theState; + emit valueStateChanged(aState); + } + return aState; +} + +bool ModuleBase_ModelWidget::blockValueState(const bool theBlocked) +{ + bool isBlocked = myIsValueStateBlocked; + myIsValueStateBlocked = theBlocked; + return isBlocked; +} + bool ModuleBase_ModelWidget::restoreValue() { emit beforeValuesRestored(); @@ -159,13 +224,18 @@ void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) void ModuleBase_ModelWidget::moveObject(ObjectPtr theObj) { - blockUpdateViewer(true); + //blockUpdateViewer(true); static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED); ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); Events_Loop::loop()->flush(anEvent); - blockUpdateViewer(false); + //blockUpdateViewer(false); +} + +bool ModuleBase_ModelWidget::processEnter() +{ + return false; } bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) @@ -181,6 +251,17 @@ bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) emit focusInWidget(this); } } + else if (theEvent->type() == QEvent::FocusOut) { + QFocusEvent* aFocusEvent = dynamic_cast(theEvent); + + Qt::FocusReason aReason = aFocusEvent->reason(); + bool aMouseOrKey = aReason == Qt::MouseFocusReason || + aReason == Qt::TabFocusReason || + aReason == Qt::BacktabFocusReason || + aReason == Qt::OtherFocusReason; // to process widget->setFocus() + if (aMouseOrKey && getControls().contains(aWidget) && getValueState() == ModifiedInPP) + storeValue(); + } // pass the event on to the parent class return QObject::eventFilter(theObject, theEvent); @@ -192,6 +273,12 @@ void ModuleBase_ModelWidget::onWidgetValuesChanged() storeValue(); } +//************************************************************** +void ModuleBase_ModelWidget::onWidgetValuesModified() +{ + setValueState(ModifiedInPP); +} + //************************************************************** void ModuleBase_ModelWidget::blockUpdateViewer(const bool theValue) {