X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ModelWidget.cpp;h=dd17a65d83edddf770475a99311d68f2f03732a2;hb=f64cb187ce9ab2190d8eff7c9be7dcfffc4242a0;hp=f0be4ae9e58002dba8ddb0082c929506c0d2b1a0;hpb=1de75803e9baf3de59fa755f9eccb6ef60bb64e4;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ModelWidget.cpp b/src/ModuleBase/ModuleBase_ModelWidget.cpp index f0be4ae9e..dd17a65d8 100644 --- a/src/ModuleBase/ModuleBase_ModelWidget.cpp +++ b/src/ModuleBase/ModuleBase_ModelWidget.cpp @@ -1,10 +1,24 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: ModuleBase_ModelWidget.cpp -// Created: 25 Apr 2014 -// Author: Natalia ERMOLAEVA +// Copyright (C) 2014-2019 CEA/DEN, EDF R&D +// +// 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 "ModuleBase_ModelWidget.h" +#include "ModuleBase_IPropertyPanel.h" #include "ModuleBase_ViewerPrs.h" #include "ModuleBase_Tools.h" #include "ModuleBase_WidgetValidator.h" @@ -34,6 +48,7 @@ //#define DEBUG_WIDGET_INSTANCE //#define DEBUG_ENABLE_SKETCH_INPUT_FIELDS +//************************************************************** ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData) : QWidget(theParent), @@ -70,6 +85,7 @@ ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, connect(this, SIGNAL(valuesModified()), this, SLOT(onWidgetValuesModified())); } +//************************************************************** ModuleBase_ModelWidget::~ModuleBase_ModelWidget() { #ifdef DEBUG_WIDGET_INSTANCE @@ -77,6 +93,7 @@ ModuleBase_ModelWidget::~ModuleBase_ModelWidget() #endif } +//************************************************************** bool ModuleBase_ModelWidget::reset() { bool aResult = resetCustom(); @@ -86,11 +103,29 @@ bool ModuleBase_ModelWidget::reset() return aResult; } +//************************************************************** bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const { return theObject->data()->attribute(attributeID())->isInitialized(); } +//************************************************************** +void ModuleBase_ModelWidget::selectionModes(int& theModuleSelectionModes, QIntList& theModes) +{ + theModuleSelectionModes = -1; + if (myWidgetValidator) + myWidgetValidator->selectionModes(theModuleSelectionModes, theModes); +} + +//************************************************************** +void ModuleBase_ModelWidget::selectionFilters(QIntList& theModuleSelectionFilters, + SelectMgr_ListOfFilter& theSelectionFilters) +{ + if (myWidgetValidator) + myWidgetValidator->selectionFilters(theModuleSelectionFilters, theSelectionFilters); +} + +//************************************************************** bool ModuleBase_ModelWidget::isValueEnabled() const { bool anEnabled = true; @@ -109,12 +144,14 @@ bool ModuleBase_ModelWidget::isValueEnabled() const return anEnabled; } +//************************************************************** void ModuleBase_ModelWidget::processValueState() { if (myState == ModifiedInPP || myState == ModifiedInViewer) storeValue(); } +//************************************************************** Events_InfoMessage ModuleBase_ModelWidget::getValueStateError() const { Events_InfoMessage aMessage; @@ -142,6 +179,7 @@ Events_InfoMessage ModuleBase_ModelWidget::getValueStateError() const return aMessage; } +//************************************************************** QString ModuleBase_ModelWidget::getError(const bool theValueStateChecked) const { QString anError; @@ -179,6 +217,7 @@ QString ModuleBase_ModelWidget::getError(const bool theValueStateChecked) const return anError; } +//************************************************************** void ModuleBase_ModelWidget::enableFocusProcessing() { QList aMyControls = getControls(); @@ -188,6 +227,7 @@ void ModuleBase_ModelWidget::enableFocusProcessing() } } +//************************************************************** void ModuleBase_ModelWidget::setHighlighted(bool isHighlighted) { QList aWidgetList = getControls(); @@ -202,6 +242,7 @@ void ModuleBase_ModelWidget::setHighlighted(bool isHighlighted) } } +//************************************************************** void ModuleBase_ModelWidget::setFeature(const FeaturePtr& theFeature, const bool theToStoreValue, const bool isUpdateFlushed) { @@ -219,6 +260,7 @@ void ModuleBase_ModelWidget::setFeature(const FeaturePtr& theFeature, const bool myFlushUpdateBlocked = false; } +//************************************************************** bool ModuleBase_ModelWidget::focusTo() { #ifdef DEBUG_WIDGET_INSTANCE @@ -237,6 +279,7 @@ bool ModuleBase_ModelWidget::focusTo() return isFocusAccepted; } +//************************************************************** void ModuleBase_ModelWidget::activate() { #ifdef DEBUG_WIDGET_INSTANCE @@ -250,13 +293,10 @@ void ModuleBase_ModelWidget::activate() if (anAttribute.get() != NULL && !anAttribute->isInitialized()) initializeValueByActivate(); } - - if (myWidgetValidator) - myWidgetValidator->activateFilters(true); - activateCustom(); } +//************************************************************** void ModuleBase_ModelWidget::deactivate() { #ifdef DEBUG_WIDGET_INSTANCE @@ -265,9 +305,10 @@ void ModuleBase_ModelWidget::deactivate() myIsValueStateBlocked = false; myState = Stored; if (myWidgetValidator) - myWidgetValidator->activateFilters(false); + myWidgetValidator->clearValidatedCash(); } +//************************************************************** void ModuleBase_ModelWidget::initializeValueByActivate() { if (isComputedDefault()) { @@ -280,6 +321,7 @@ void ModuleBase_ModelWidget::initializeValueByActivate() } } +//************************************************************** QWidget* ModuleBase_ModelWidget::getControlAcceptingFocus(const bool isFirst) { QWidget* aControl = 0; @@ -302,11 +344,13 @@ QWidget* ModuleBase_ModelWidget::getControlAcceptingFocus(const bool isFirst) return aControl; } +//************************************************************** void ModuleBase_ModelWidget::setDefaultValue(const std::string& theValue) { myDefaultValue = theValue; } +//************************************************************** bool ModuleBase_ModelWidget::storeValue() { setValueState(Stored); @@ -333,6 +377,8 @@ bool ModuleBase_ModelWidget::storeValue() return isDone; } #ifdef DEBUG_VALUE_STATE + +//************************************************************** std::string getDebugInfo(const ModuleBase_ModelWidget::ValueState& theState) { std::string anInfo; @@ -345,8 +391,9 @@ std::string getDebugInfo(const ModuleBase_ModelWidget::ValueState& theState) } return anInfo; } - #endif + +//************************************************************** ModuleBase_ModelWidget::ValueState ModuleBase_ModelWidget::setValueState (const ModuleBase_ModelWidget::ValueState& theState) { @@ -364,6 +411,7 @@ ModuleBase_ModelWidget::ValueState ModuleBase_ModelWidget::setValueState return aState; } +//************************************************************** bool ModuleBase_ModelWidget::blockValueState(const bool theBlocked) { bool isBlocked = myIsValueStateBlocked; @@ -371,6 +419,7 @@ bool ModuleBase_ModelWidget::blockValueState(const bool theBlocked) return isBlocked; } +//************************************************************** bool ModuleBase_ModelWidget::restoreValue() { emit beforeValuesRestored(); @@ -380,6 +429,7 @@ bool ModuleBase_ModelWidget::restoreValue() return isDone; } +//************************************************************** void ModuleBase_ModelWidget::updateObject(ObjectPtr theObject) { if (!myFlushUpdateBlocked) { @@ -391,25 +441,56 @@ void ModuleBase_ModelWidget::updateObject(ObjectPtr theObject) } } -void ModuleBase_ModelWidget::moveObject(ObjectPtr theObj) +//************************************************************** +bool ModuleBase_ModelWidget::canProcessAction(ModuleBase_ActionType theActionType, + bool& isActionEnabled) { - //blockUpdateViewer(true); -#ifdef DEBUG_WIDGET_INSTANCE - qDebug("ModuleBase_ModelWidget::moveObject"); -#endif - - static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED); - ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); - Events_Loop::loop()->flush(anEvent); + isActionEnabled = false; + switch (theActionType) { + case ActionEnter: return false; + case ActionEscape: return false; + case ActionDelete: return true; + case ActionSelection: return true; + case ActionUndo: + case ActionRedo: + default: + return false; + } +} - //blockUpdateViewer(false); +//************************************************************** +bool ModuleBase_ModelWidget::processAction(ModuleBase_ActionType theActionType, + const ActionParamPtr& theParam) +{ + switch (theActionType) { + case ActionEnter: + return processEnter(); + case ActionEscape: + return processEscape(); + case ActionDelete: + return processDelete(); + case ActionSelection: + processSelection(); + case ActionUndo: + case ActionRedo: + default: + return false; + } } +//************************************************************** bool ModuleBase_ModelWidget::processEnter() { return false; } +//************************************************************** +bool ModuleBase_ModelWidget::processEscape() +{ + return false; +} + +//************************************************************** bool ModuleBase_ModelWidget::processDelete() { // we consider that model objects eats delete key in order to @@ -417,17 +498,26 @@ bool ModuleBase_ModelWidget::processDelete() return true; } +//************************************************************** +bool ModuleBase_ModelWidget::processSelection() +{ + return false; +} + +//************************************************************** bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) { QWidget* aWidget = qobject_cast(theObject); if (theEvent->type() == QEvent::FocusIn) { - #ifdef _DEBUG - // The following two lines are for debugging purpose only QFocusEvent* aFocusEvent = dynamic_cast(theEvent); - bool isWinFocus = aFocusEvent->reason() == Qt::ActiveWindowFocusReason; - #endif - if (getControls().contains(aWidget)) { - emit focusInWidget(this); + 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)) { + //if (getControls().contains(aWidget)) { + emitFocusInWidget(); } } else if (theEvent->type() == QEvent::FocusOut) { @@ -461,7 +551,26 @@ void ModuleBase_ModelWidget::onWidgetValuesModified() setValueState(ModifiedInPP); } +//************************************************************** QString ModuleBase_ModelWidget::translate(const std::string& theStr) const { return ModuleBase_Tools::translate(context(), theStr); } + +//************************************************************** +ModuleBase_ModelWidget* ModuleBase_ModelWidget::findModelWidget(ModuleBase_IPropertyPanel* theProp, + QWidget* theWidget) +{ + ModuleBase_ModelWidget* aModelWidget = 0; + if (!theWidget) + return aModelWidget; + + QObject* aParent = theWidget->parent(); + while (aParent) { + aModelWidget = qobject_cast(aParent); + if (aModelWidget) + break; + aParent = aParent->parent(); + } + return aModelWidget; +}