X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_PagedContainer.cpp;h=b659b82c285a66bed2455987ca2ebe63ec396b82;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=87ef65afa4d3c8949c8a93e74008133fd9c4ed49;hpb=41695176c748943485f8844fea6e89cef9a0b6f5;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_PagedContainer.cpp b/src/ModuleBase/ModuleBase_PagedContainer.cpp index 87ef65afa..b659b82c2 100644 --- a/src/ModuleBase/ModuleBase_PagedContainer.cpp +++ b/src/ModuleBase/ModuleBase_PagedContainer.cpp @@ -1,9 +1,21 @@ -/* - * ModuleBase_PagedContainer.cpp - * - * Created on: Mar 13, 2015 - * Author: sbh - */ +// Copyright (C) 2014-2024 CEA, EDF +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 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 +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com +// #include #include @@ -17,11 +29,18 @@ #include -ModuleBase_PagedContainer::ModuleBase_PagedContainer(QWidget* theParent, const Config_WidgetAPI* theData, - const std::string& theParentId) -: ModuleBase_ModelWidget(theParent, theData, theParentId), - myIsFocusOnCurrentPage(false) +static QMap defaultValues; + +ModuleBase_PagedContainer::ModuleBase_PagedContainer(QWidget* theParent, + const Config_WidgetAPI* theData) +: ModuleBase_ModelWidget(theParent, theData), + myRemeberChoice(true), myIsFocusOnCurrentPage(false) { + // it is not obligatory to be ignored when property panel tries to activate next active widget + // but if focus is moved to this control, it can accept it. + myIsObligatory = false; + if (defaultValues.contains(myFeatureId + attributeID())) + myDefValue = defaultValues[myFeatureId + attributeID()]; } ModuleBase_PagedContainer::~ModuleBase_PagedContainer() @@ -29,8 +48,10 @@ ModuleBase_PagedContainer::~ModuleBase_PagedContainer() } int ModuleBase_PagedContainer::addPage(ModuleBase_PageBase* thePage, - const QString& theName, const QString& theCaseId, - const QIcon& theIcon ) + const QString& /*theName*/, + const QString& theCaseId, + const QPixmap& /*theIcon*/, + const QString& /*theTooltip*/) { if (!myPages.count()) { setDefaultValue(theCaseId.toStdString()); @@ -75,13 +96,29 @@ bool ModuleBase_PagedContainer::restoreValueCustom() // A rare case when plugin was not loaded. if(!myFeature) return false; + + std::string aDefVal = myRemeberChoice? myDefValue : ""; + DataPtr aData = myFeature->data(); AttributeStringPtr aStringAttr = aData->string(attributeID()); - QString aCaseId = QString::fromStdString(aStringAttr->value()); - int idx = myCaseIds.indexOf(aCaseId); - if (idx == -1) - return false; - setCurrentPageIndex(idx); + QString aCaseId; + if (aStringAttr->isInitialized()) { + aCaseId = QString::fromStdString(aStringAttr->value()); + int idx = myCaseIds.indexOf(aCaseId); + if (idx == -1) + idx = currentPageIndex(); + setCurrentPageIndex(idx); + if (aStringAttr->value() != aCaseId.toStdString()) + storeValueCustom(); + } + else { + // It is added because if user edits the feature created from Python + // and switches his choice + // it will not be stored in the attribute while apply not pressed. + // But this button will be disabled because of not initialized attribute + aStringAttr->setValue(myCaseIds.at(0).toStdString()); + setCurrentPageIndex(0); + } return true; } @@ -91,15 +128,23 @@ void ModuleBase_PagedContainer::activateCustom() focusTo(); } -bool ModuleBase_PagedContainer::storeValueCustom() const +bool ModuleBase_PagedContainer::storeValueCustom() { // A rare case when plugin was not loaded. if(!myFeature) return false; DataPtr aData = myFeature->data(); + AttributeStringPtr aStringAttr = aData->string(attributeID()); - QString aWidgetValue = myCaseIds.at(currentPageIndex()); - aStringAttr->setValue(aWidgetValue.toStdString()); + std::string aWidgetValue; + if (!aStringAttr->isInitialized()) + aWidgetValue = myDefValue.empty()? + myCaseIds.at(currentPageIndex()).toStdString() : myDefValue; + else + aWidgetValue = myCaseIds.at(currentPageIndex()).toStdString(); + myDefValue = aWidgetValue; + aStringAttr->setValue(aWidgetValue); + updateObject(myFeature); // for preview return true; } @@ -107,8 +152,18 @@ bool ModuleBase_PagedContainer::storeValueCustom() const void ModuleBase_PagedContainer::onPageChanged() { - storeValue(); - if (myIsFocusOnCurrentPage) focusTo(); + if (!storeValue()) + return; + // focus might be changed only if the value is correcly stored + // if it is not stored, reentrant manager will handle by this widget + // after it will restart operation, the widget might be removed + if (myIsFocusOnCurrentPage) + focusTo(); } +void ModuleBase_PagedContainer::onFeatureAccepted() +{ + if (myRemeberChoice) + defaultValues[myFeatureId + attributeID()] = myDefValue; +}