X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModuleBase%2FModuleBase_ModelWidget.cpp;h=5a6ba6e1eb5b8032feef6a283c3cc5e09b16c8c1;hb=cdd9efd8fbc75f120188ae16eed7471dc6492ac3;hp=089b1e637a89e989d1df8849aa76c5768d74b87e;hpb=6a20927e015a5c9ac96e44f7ceef403cd5b12a26;p=modules%2Fshaper.git diff --git a/src/ModuleBase/ModuleBase_ModelWidget.cpp b/src/ModuleBase/ModuleBase_ModelWidget.cpp index 089b1e637..5a6ba6e1e 100644 --- a/src/ModuleBase/ModuleBase_ModelWidget.cpp +++ b/src/ModuleBase/ModuleBase_ModelWidget.cpp @@ -4,22 +4,71 @@ #include "ModuleBase_ModelWidget.h" -#include "Config_WidgetAPI.h" +#include +#include +#include +#include +#include +#include + +#include + +#include #include +#include +#include +#include -ModuleBase_ModelWidget::ModuleBase_ModelWidget(QObject* theParent, const Config_WidgetAPI* theData) - : QObject(theParent) +ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData, + const std::string& theParentId) + : QObject(theParent), + myParentId(theParentId) { + myIsComputedDefault = false; myAttributeID = theData ? theData->widgetId() : ""; } -bool ModuleBase_ModelWidget::canFocusTo(const std::string& theAttributeName) const +bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const { - return theAttributeName == attributeID(); + return theObject->data()->attribute(attributeID())->isInitialized(); } -void ModuleBase_ModelWidget::focusTo() +void ModuleBase_ModelWidget::enableFocusProcessing() +{ + QList aMyControls = getControls(); + foreach(QWidget* eachControl, aMyControls) { + 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); + } + } +} + +bool ModuleBase_ModelWidget::focusTo() { QList aControls = getControls(); QList::const_iterator anIt = aControls.begin(), aLast = aControls.end(); @@ -30,9 +79,26 @@ void ModuleBase_ModelWidget::focusTo() break; } } + return true; +} + + +void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const +{ + Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED)); + static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY); + ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent); } -std::string ModuleBase_ModelWidget::attributeID() const +bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent) { - return myAttributeID; + 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); }