X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ModelWidget.cpp;h=6a5421549ff74845da9a60dca29fd6257a54761d;hb=a2982d2108f929cf9e7f996cfd590c4ce59dc21c;hp=f3da462d45ad1bd06f9fc6915ce6c0c7a5c6383e;hpb=b669a9a22a6cde038878f727af42e3f27e52e0d6;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ModelWidget.cpp b/src/ModuleBase/ModuleBase_ModelWidget.cpp index f3da462d4..6a5421549 100644 --- a/src/ModuleBase/ModuleBase_ModelWidget.cpp +++ b/src/ModuleBase/ModuleBase_ModelWidget.cpp @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: ModuleBase_ModelWidget.h // Created: 25 Apr 2014 // Author: Natalia ERMOLAEVA @@ -7,6 +9,7 @@ #include #include #include +#include #include #include @@ -15,14 +18,17 @@ #include #include +#include +#include +#include -ModuleBase_ModelWidget::ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData, +ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData, const std::string& theParentId) : QObject(theParent), myParentId(theParentId) { + myIsValueDefault = !theData->getProperty(ATTR_DEFAULT).empty(); myIsComputedDefault = false; - myIsObligatory = theData ? theData->getBooleanAttribute(FEATURE_OBLIGATORY, true) : true; myAttributeID = theData ? theData->widgetId() : ""; } @@ -35,8 +41,32 @@ void ModuleBase_ModelWidget::enableFocusProcessing() { QList aMyControls = getControls(); foreach(QWidget* eachControl, aMyControls) { - if(!myFocusInWidgets.contains(eachControl)) { - enableFocusProcessing(eachControl); + eachControl->setFocusPolicy(Qt::StrongFocus); + eachControl->installEventFilter(this); + } +} + +void ModuleBase_ModelWidget::setHighlighted(bool isHighlighted) +{ + QList aWidgetList = getControls(); + foreach(QWidget* aWidget, aWidgetList) { + QLabel* aLabel = qobject_cast(aWidget); + // We won't set the effect to QLabels - it looks ugly + if(aLabel) continue; + if(isHighlighted) { + // If effect is the installed on a different widget, setGraphicsEffect() will + // remove the effect from the widget and install it on this widget. + // That's why we create a new effect for each widget + QGraphicsDropShadowEffect* aGlowEffect = new QGraphicsDropShadowEffect(); + aGlowEffect->setOffset(.0); + aGlowEffect->setBlurRadius(10.0); + aGlowEffect->setColor(QColor(0, 170, 255)); // Light-blue color, #00AAFF + aWidget->setGraphicsEffect(aGlowEffect); + } else { + QGraphicsEffect* anEffect = aWidget->graphicsEffect(); + if(anEffect) + anEffect->deleteLater(); + aWidget->setGraphicsEffect(NULL); } } } @@ -55,7 +85,6 @@ bool ModuleBase_ModelWidget::focusTo() return true; } - void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const { Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED)); @@ -63,20 +92,22 @@ void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); } -void ModuleBase_ModelWidget::enableFocusProcessing(QWidget* theWidget) +void ModuleBase_ModelWidget::moveObject(ObjectPtr theObj) const { - theWidget->setFocusPolicy(Qt::StrongFocus); - theWidget->installEventFilter(this); - myFocusInWidgets.append(theWidget); + static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_MOVED); + ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); + Events_Loop::loop()->flush(anEvent); } bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) { - QWidget* aWidget = dynamic_cast(theObject); - if (theEvent->type() == QEvent::MouseButtonRelease && - myFocusInWidgets.contains(aWidget)) { - emit focusInWidget(this); + QWidget* aWidget = qobject_cast(theObject); + if (theEvent->type() == QEvent::FocusIn) { + if (getControls().contains(aWidget)) { + emit focusInWidget(this); + } } // pass the event on to the parent class + return QObject::eventFilter(theObject, theEvent); }