Salome HOME
Values of constraint (length, distance, radius) now initialized on reference definition
[modules/shaper.git] / src / XGUI / XGUI_PropertyPanel.cpp
1 /*
2  * XGUI_PropertyPanel.cpp
3  *
4  *  Created on: Apr 29, 2014
5  *      Author: sbh
6  */
7
8 #include <XGUI_PropertyPanel.h>
9 #include <XGUI_Constants.h>
10 #include <ModuleBase_WidgetMultiSelector.h>
11
12 #include <QWidget>
13 #include <QVBoxLayout>
14 #include <QFrame>
15 #include <QPushButton>
16 #include <QIcon>
17 #include <QVBoxLayout>
18 #include <QEvent>
19 #include <QKeyEvent>
20 #include <QLayoutItem>
21
22 #ifdef _DEBUG
23 #include <iostream>
24 #endif
25
26 XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent)
27     : ModuleBase_IPropertyPanel(theParent), 
28     myActiveWidget(NULL)
29 {
30   this->setWindowTitle(tr("Property Panel"));
31   QAction* aViewAct = this->toggleViewAction();
32   this->setObjectName(XGUI::PROP_PANEL);
33   setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }");
34
35   QWidget* aContent = new QWidget(this);
36   myMainLayout = new QVBoxLayout(aContent);
37   myMainLayout->setContentsMargins(3, 3, 3, 3);
38   this->setWidget(aContent);
39
40   QFrame* aFrm = new QFrame(aContent);
41   aFrm->setFrameStyle(QFrame::Sunken);
42   aFrm->setFrameShape(QFrame::Panel);
43   QHBoxLayout* aBtnLay = new QHBoxLayout(aFrm);
44   aBtnLay->setContentsMargins(0, 0, 0, 0);
45   myMainLayout->addWidget(aFrm);
46
47   QPushButton* aBtn = new QPushButton(QIcon(":pictures/button_help.png"), "", aFrm);
48   aBtn->setFlat(true);
49   aBtnLay->addWidget(aBtn);
50   aBtnLay->addStretch(1);
51   aBtn = new QPushButton(QIcon(":pictures/button_ok.png"), "", aFrm);
52   aBtn->setObjectName(XGUI::PROP_PANEL_OK);
53   aBtn->setToolTip(tr("Ok"));
54   aBtn->setFlat(true);
55   aBtnLay->addWidget(aBtn);
56
57   aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm);
58   aBtn->setToolTip(tr("Cancel"));
59   aBtn->setObjectName(XGUI::PROP_PANEL_CANCEL);
60   aBtn->setFlat(true);
61   aBtn->setShortcut(QKeySequence(Qt::Key_Escape));
62   aBtnLay->addWidget(aBtn);
63
64   myCustomWidget = new QWidget(aContent);
65   myMainLayout->addWidget(myCustomWidget);
66   setStretchEnabled(true);
67 }
68
69 XGUI_PropertyPanel::~XGUI_PropertyPanel()
70 {
71 }
72
73 void XGUI_PropertyPanel::cleanContent()
74 {
75   if (myActiveWidget)
76     myActiveWidget->deactivate();
77   myWidgets.clear();
78   qDeleteAll(myCustomWidget->children());
79   myActiveWidget = NULL;
80 }
81
82 void XGUI_PropertyPanel::setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets)
83 {
84   myWidgets = theWidgets;
85   if (theWidgets.empty()) return;
86   bool isEnableStretch = true;
87   QList<ModuleBase_ModelWidget*>::const_iterator anIt = theWidgets.begin(), aLast =
88       theWidgets.end();
89   for (; anIt != aLast; anIt++) {
90     connect(*anIt, SIGNAL(keyReleased(QKeyEvent*)), this, SIGNAL(keyReleased(QKeyEvent*)));
91     connect(*anIt, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)),
92             this,  SLOT(activateNextWidget(ModuleBase_ModelWidget*)));
93     connect(*anIt, SIGNAL(focusInWidget(ModuleBase_ModelWidget*)),
94             this,  SLOT(activateWidget(ModuleBase_ModelWidget*)));
95
96     //ModuleBase_WidgetPoint2D* aPointWidget = dynamic_cast<ModuleBase_WidgetPoint2D*>(*anIt);
97     //if (aPointWidget)
98     //  connect(aPointWidget, SIGNAL(storedPoint2D(ObjectPtr, const std::string&)), this,
99     //          SIGNAL(storedPoint2D(ObjectPtr, const std::string&)))
100     //}
101
102     if (!isEnableStretch) continue;
103     foreach(QWidget* eachWidget, (*anIt)->getControls()) {
104       QSizePolicy::Policy aVPolicy = eachWidget->sizePolicy().verticalPolicy();
105       if(aVPolicy == QSizePolicy::Expanding ||
106          aVPolicy == QSizePolicy::MinimumExpanding) {
107         isEnableStretch = false;
108       }
109     }
110   }
111   setStretchEnabled(isEnableStretch);
112   ModuleBase_ModelWidget* aLastWidget = theWidgets.last();
113   if (aLastWidget) {
114     QList<QWidget*> aControls = aLastWidget->getControls();
115     if (!aControls.empty()) {
116       QWidget* aLastControl = aControls.last();
117
118       QPushButton* anOkBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
119       QPushButton* aCancelBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_CANCEL);
120
121       setTabOrder(aLastControl, anOkBtn);
122       setTabOrder(anOkBtn, aCancelBtn);
123     }
124   }
125 }
126
127 const QList<ModuleBase_ModelWidget*>& XGUI_PropertyPanel::modelWidgets() const
128 {
129   return myWidgets;
130 }
131
132 QWidget* XGUI_PropertyPanel::contentWidget()
133 {
134   return myCustomWidget;
135 }
136
137 void XGUI_PropertyPanel::updateContentWidget(FeaturePtr theFeature)
138 {
139   // Invalid feature case on abort of the operation
140   if(!theFeature->data())
141     return;
142   foreach(ModuleBase_ModelWidget* eachWidget, myWidgets)
143   {
144     eachWidget->setFeature(theFeature);
145     eachWidget->restoreValue();
146   }
147   // the repaint is used here to immediately react in GUI to the values change.
148   repaint();
149 }
150
151 void XGUI_PropertyPanel::activateNextWidget(ModuleBase_ModelWidget* theWidget)
152 {
153   ModuleBase_ModelWidget* aNextWidget = 0;
154   QList<ModuleBase_ModelWidget*>::const_iterator anIt = myWidgets.begin(), aLast = myWidgets.end();
155   bool isFoundWidget = false;
156   for (; anIt != aLast && !aNextWidget; anIt++) {
157     if (isFoundWidget || !theWidget) {
158       if ((*anIt)->focusTo()) {
159         aNextWidget = *anIt;
160       }
161     }
162     isFoundWidget = (*anIt) == theWidget;
163   }
164   // Normaly focusTo is enough to activate widget
165   // here is a special case on mouse click in the viewer
166   //if(aNextWidget == NULL) {
167     activateWidget(aNextWidget);
168   //}
169 }
170
171 void XGUI_PropertyPanel::setStretchEnabled(bool isEnabled)
172 {
173   if (myMainLayout->count() == 0)
174     return;
175   int aStretchIdx = myMainLayout->count() - 1;
176   bool hasStretch = myMainLayout->itemAt(aStretchIdx)->spacerItem() != NULL;
177   QLayoutItem* aChild;
178   if (isEnabled) {
179     if (!hasStretch) myMainLayout->addStretch(1);
180   } else if (hasStretch) {
181     aChild = myMainLayout->takeAt(aStretchIdx);
182     delete aChild;
183   }
184 }
185
186 void XGUI_PropertyPanel::activateNextWidget()
187 {
188   activateNextWidget(myActiveWidget);
189 }
190
191 void XGUI_PropertyPanel::setAcceptEnabled(bool isEnabled)
192 {
193   QPushButton* anOkBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
194   anOkBtn->setEnabled(isEnabled);
195 }
196
197 void XGUI_PropertyPanel::activateWidget(ModuleBase_ModelWidget* theWidget)
198 {
199   // Avoid activation of already actve widget. It could happen on focusIn event many times
200   if (theWidget == myActiveWidget)
201     return;
202   if(myActiveWidget) {
203     myActiveWidget->deactivate();
204     myActiveWidget->setHighlighted(false);
205   }
206   if(theWidget) {
207     theWidget->activate();
208     theWidget->setHighlighted(true);
209   }
210   myActiveWidget = theWidget;
211   if (myActiveWidget)
212     emit widgetActivated(theWidget);
213   else
214     emit noMoreWidgets();
215 }