Salome HOME
Issue #273: Add copyright string
[modules/shaper.git] / src / ModuleBase / ModuleBase_ModelWidget.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        ModuleBase_ModelWidget.h
4 // Created:     25 Apr 2014
5 // Author:      Natalia ERMOLAEVA
6
7 #include "ModuleBase_ModelWidget.h"
8
9 #include <ModelAPI_Data.h>
10 #include <ModelAPI_Attribute.h>
11 #include <ModelAPI_Events.h>
12 #include <ModelAPI_Session.h>
13
14 #include <Config_Keywords.h>
15 #include <Config_WidgetAPI.h>
16
17 #include <Events_Loop.h>
18
19 #include <QEvent>
20 #include <QWidget>
21 #include <QGraphicsDropShadowEffect>
22 #include <QColor>
23 #include <QLabel>
24
25 ModuleBase_ModelWidget::ModuleBase_ModelWidget(QWidget* theParent, const Config_WidgetAPI* theData,
26                                                const std::string& theParentId)
27     : QObject(theParent),
28       myParentId(theParentId)
29 {
30   myIsComputedDefault = false;
31   myAttributeID = theData ? theData->widgetId() : "";
32 }
33
34 bool ModuleBase_ModelWidget::isInitialized(ObjectPtr theObject) const
35 {
36   return theObject->data()->attribute(attributeID())->isInitialized();
37 }
38
39 void ModuleBase_ModelWidget::enableFocusProcessing()
40 {
41   QList<QWidget*> aMyControls = getControls();
42   foreach(QWidget*  eachControl, aMyControls) {
43     eachControl->setFocusPolicy(Qt::StrongFocus);
44     eachControl->installEventFilter(this);
45   }
46 }
47
48 void ModuleBase_ModelWidget::setHighlighted(bool isHighlighted)
49 {
50   QList<QWidget*> aWidgetList = getControls();
51   foreach(QWidget* aWidget, aWidgetList) {
52     QLabel* aLabel = qobject_cast<QLabel*>(aWidget);
53     // We won't set the effect to QLabels - it looks ugly
54     if(aLabel) continue;
55     if(isHighlighted) {
56       // If effect is the installed on a different widget, setGraphicsEffect() will
57       // remove the effect from the widget and install it on this widget.
58       // That's why we create a new effect for each widget
59       QGraphicsDropShadowEffect* aGlowEffect = new QGraphicsDropShadowEffect();
60       aGlowEffect->setOffset(.0);
61       aGlowEffect->setBlurRadius(10.0);
62       aGlowEffect->setColor(QColor(0, 170, 255)); // Light-blue color, #00AAFF
63       aWidget->setGraphicsEffect(aGlowEffect);
64     } else {
65       QGraphicsEffect* anEffect = aWidget->graphicsEffect();
66       if(anEffect)
67         anEffect->deleteLater();
68       aWidget->setGraphicsEffect(NULL);
69     }
70   }
71 }
72
73 bool ModuleBase_ModelWidget::focusTo()
74 {
75   QList<QWidget*> aControls = getControls();
76   QList<QWidget*>::const_iterator anIt = aControls.begin(), aLast = aControls.end();
77   for (; anIt != aLast; anIt++) {
78     QWidget* aWidget = *anIt;
79     if (aWidget && aWidget->focusPolicy() != Qt::NoFocus) {
80       aWidget->setFocus();
81       break;
82     }
83   }
84   return true;
85 }
86
87
88 void ModuleBase_ModelWidget::updateObject(ObjectPtr theObj) const
89 {
90   Events_Loop::loop()->flush(Events_Loop::eventByName(EVENT_OBJECT_UPDATED));
91   static Events_ID anEvent = Events_Loop::eventByName(EVENT_OBJECT_TO_REDISPLAY);
92   ModelAPI_EventCreator::get()->sendUpdated(theObj, anEvent);
93 }
94
95 bool ModuleBase_ModelWidget::eventFilter(QObject* theObject, QEvent *theEvent)
96 {
97   QWidget* aWidget = qobject_cast<QWidget*>(theObject);
98   if (theEvent->type() == QEvent::FocusIn) {
99     if (getControls().contains(aWidget)) {
100       emit focusInWidget(this);
101     }
102   } 
103   // pass the event on to the parent class
104
105   return QObject::eventFilter(theObject, theEvent);
106 }