Salome HOME
Example "PythonFeatures" plugin removed
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.cpp
index 11d5f15fc8f4fba2d437622e1307ae110888dd25..79b00dfe2071fb892d6c3d3799377ad17f3ac438 100644 (file)
@@ -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,14 +9,20 @@
 #include <ModelAPI_Data.h>
 #include <ModelAPI_Attribute.h>
 #include <ModelAPI_Events.h>
+#include <ModelAPI_Session.h>
 
-#include "Config_WidgetAPI.h"
+#include <Config_Keywords.h>
+#include <Config_WidgetAPI.h>
 
 #include <Events_Loop.h>
 
+#include <QEvent>
 #include <QWidget>
+#include <QGraphicsDropShadowEffect>
+#include <QColor>
+#include <QLabel>
 
-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)
@@ -28,10 +36,38 @@ bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const
   return theObject->data()->attribute(attributeID())->isInitialized();
 }
 
-void ModuleBase_ModelWidget::setAttributeComputedState(ObjectPtr theObject) const
+void ModuleBase_ModelWidget::enableFocusProcessing()
+{
+  QList<QWidget*> aMyControls = getControls();
+  foreach(QWidget*  eachControl, aMyControls) {
+    eachControl->setFocusPolicy(Qt::StrongFocus);
+    eachControl->installEventFilter(this);
+  }
+}
+
+void ModuleBase_ModelWidget::setHighlighted(bool isHighlighted)
 {
-  if(myIsComputedDefault)
-    theObject->data()->attribute(attributeID())->setComputedDefault();
+  QList<QWidget*> aWidgetList = getControls();
+  foreach(QWidget* aWidget, aWidgetList) {
+    QLabel* aLabel = qobject_cast<QLabel*>(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()
@@ -54,3 +90,23 @@ void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const
   static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY);
   ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent);
 }
+
+void ModuleBase_ModelWidget::moveObject(ObjectPtr theObj) const
+{
+  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 = qobject_cast<QWidget*>(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);
+}