Salome HOME
Correction tab logic.
[modules/shaper.git] / src / XGUI / XGUI_PropertyPanel.cpp
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D -->
2
3 /*
4  * XGUI_PropertyPanel.cpp
5  *
6  *  Created on: Apr 29, 2014
7  *      Author: sbh
8  */
9
10 #include <XGUI_PropertyPanel.h>
11 #include <XGUI_ActionsMgr.h>
12 #include <XGUI_OperationMgr.h>
13 //#include <AppElements_Constants.h>
14 #include <ModuleBase_WidgetMultiSelector.h>
15 #include <ModuleBase_Tools.h>
16 #include <ModuleBase_PageBase.h>
17 #include <ModuleBase_PageWidget.h>
18
19 #include <ModelAPI_Session.h>
20 #include <ModelAPI_Validator.h>
21
22 #include <QEvent>
23 #include <QFrame>
24 #include <QIcon>
25 #include <QKeyEvent>
26 #include <QLayoutItem>
27 #include <QToolButton>
28 #include <QVBoxLayout>
29 #include <QGridLayout>
30 #include <QWidget>
31 #include <QToolButton>
32 #include <QAction>
33
34 #ifdef _DEBUG
35 #include <iostream>
36 #endif
37
38 XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent, XGUI_OperationMgr* theMgr)
39     : ModuleBase_IPropertyPanel(theParent), 
40     myActiveWidget(NULL),
41     myPreselectionWidget(NULL),
42     myPanelPage(NULL),
43     myOperationMgr(theMgr)
44 {
45   this->setWindowTitle(tr("Property Panel"));
46   QAction* aViewAct = this->toggleViewAction();
47   this->setObjectName(PROP_PANEL);
48   setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }");
49
50   QWidget* aContent = new QWidget(this);
51   QGridLayout* aMainLayout = new QGridLayout(aContent);
52   const int kPanelColumn = 0;
53   int aPanelRow = 0;
54   aMainLayout->setContentsMargins(3, 3, 3, 3);
55   this->setWidget(aContent);
56
57   QFrame* aFrm = new QFrame(aContent);
58   aFrm->setFrameStyle(QFrame::Raised);
59   aFrm->setFrameShape(QFrame::Panel);
60   QHBoxLayout* aBtnLay = new QHBoxLayout(aFrm);
61   ModuleBase_Tools::zeroMargins(aBtnLay);
62   aMainLayout->addWidget(aFrm, aPanelRow++, kPanelColumn);
63
64   myHeaderWidget = aFrm;
65
66   QStringList aBtnNames;
67   aBtnNames << QString(PROP_PANEL_HELP)
68             << QString(PROP_PANEL_OK)
69             << QString(PROP_PANEL_CANCEL);
70   foreach(QString eachBtnName, aBtnNames) {
71     QToolButton* aBtn = new QToolButton(aFrm);
72     aBtn->setObjectName(eachBtnName);
73     aBtn->setAutoRaise(true);
74     aBtnLay->addWidget(aBtn);
75   }
76   aBtnLay->insertStretch(1, 1);
77
78   myPanelPage = new ModuleBase_PageWidget(aContent);
79   myPanelPage->setSizePolicy(QSizePolicy::Preferred, QSizePolicy::MinimumExpanding);
80   aMainLayout->addWidget(myPanelPage, aPanelRow, kPanelColumn);
81 }
82
83 XGUI_PropertyPanel::~XGUI_PropertyPanel()
84 {
85 }
86
87 void XGUI_PropertyPanel::cleanContent()
88 {
89   if (myActiveWidget)
90     myActiveWidget->deactivate();
91
92   /// as the widgets are deleted later, it is important that the signals
93   /// of these widgets are not processed. An example of the error is issue 986.
94   /// In the given case, the property panel is firstly filled by new widgets
95   /// of restarted operation and after that the mouse release signal come from
96   /// the widget of the previous operation (Point2d widget about mouse is released
97   /// and focus is out of this widget)
98   QList<ModuleBase_ModelWidget*>::const_iterator anIt = myWidgets.begin(),
99                                                  aLast = myWidgets.end();
100   for (; anIt != aLast; anIt++) {
101     QWidget* aWidget = *anIt;
102     if (aWidget) {
103       aWidget->blockSignals(true);
104     }
105   }
106
107   myWidgets.clear();
108   myPanelPage->clearPage();
109   myActiveWidget = NULL;
110   setWindowTitle(tr("Property Panel"));
111 }
112
113 void XGUI_PropertyPanel::setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets)
114 {
115   myWidgets = theWidgets;
116   if (theWidgets.empty()) return;
117   foreach (ModuleBase_ModelWidget* aWidget, theWidgets) {
118     connect(aWidget, SIGNAL(focusInWidget(ModuleBase_ModelWidget*)),
119             this,    SLOT(activateWidget(ModuleBase_ModelWidget*)));
120     connect(aWidget, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)),
121             this,    SLOT(activateNextWidget(ModuleBase_ModelWidget*)));
122     connect(aWidget, SIGNAL(keyReleased(QKeyEvent*)),
123             this,    SIGNAL(keyReleased(QKeyEvent*)));
124     connect(aWidget, SIGNAL(enterClicked()),
125             this,    SIGNAL(enterClicked()));
126
127   }
128 }
129
130 const QList<ModuleBase_ModelWidget*>& XGUI_PropertyPanel::modelWidgets() const
131 {
132   return myWidgets;
133 }
134
135 ModuleBase_PageBase* XGUI_PropertyPanel::contentWidget()
136 {
137   return static_cast<ModuleBase_PageBase*>(myPanelPage);
138 }
139
140 void XGUI_PropertyPanel::updateContentWidget(FeaturePtr theFeature)
141 {
142   // Invalid feature case on abort of the operation
143   if (theFeature.get() == NULL)
144     return;
145   if (theFeature->isAction() || !theFeature->data())
146     return;
147   foreach(ModuleBase_ModelWidget* eachWidget, myWidgets) {
148     if (!eachWidget->feature().get())
149       eachWidget->setFeature(theFeature);
150     eachWidget->restoreValue();
151   }
152   // the repaint is used here to immediately react in GUI to the values change.
153   repaint();
154 }
155
156 void XGUI_PropertyPanel::activateNextWidget(ModuleBase_ModelWidget* theWidget)
157 {
158   // TO CHECK: Editing operation does not have automatical activation of widgets
159   if (isEditingMode()) {
160     activateWidget(NULL);
161     return;
162   }
163   ModelAPI_ValidatorsFactory* aValidators = ModelAPI_Session::get()->validators();
164
165   QList<ModuleBase_ModelWidget*>::const_iterator anIt = myWidgets.begin(), aLast = myWidgets.end();
166   bool isFoundWidget = false;
167   ModuleBase_Tools::activateWindow(this, "XGUI_PropertyPanel::activateNextWidget()");
168   for (; anIt != aLast; anIt++) {
169     ModuleBase_ModelWidget* aCurrentWidget = *anIt;
170     if (isFoundWidget || !theWidget) {
171
172       if (!aValidators->isCase(aCurrentWidget->feature(), aCurrentWidget->attributeID()))
173         continue; // this attribute is not participated in the current case
174       if (!aCurrentWidget->isObligatory())
175         continue; // not obligatory widgets are not activated automatically
176
177       if (aCurrentWidget->focusTo()) {
178         return;
179       }
180     }
181     isFoundWidget = isFoundWidget || (*anIt) == theWidget;
182   }
183   activateWidget(NULL);
184 }
185
186 #define DEBUG_TAB_WIDGETS
187
188 #define DEBUG_TAB
189 #ifdef DEBUG_TAB
190 void findDirectChildren(QWidget* theParent, QList<QWidget*>& theWidgets, const bool theDebug)
191 {
192   QList<QWidget*> aWidgets;
193
194   if (theParent) {
195     QLayout* aLayout = theParent->layout();
196     if (aLayout) {
197       for (int i = 0, aCount = aLayout->count(); i < aCount; i++) {
198         QLayoutItem* anItem = aLayout->itemAt(i);
199         QWidget* aWidget = anItem ? anItem->widget() : 0;
200         if (aWidget && aWidget->isVisible()) {
201           if (aWidget->focusPolicy() != Qt::NoFocus)
202             theWidgets.append(aWidget);
203           findDirectChildren(aWidget, theWidgets, false);
204         }
205       }
206     }
207   }
208 #ifdef DEBUG_TAB_WIDGETS
209   if (theDebug) {
210     QStringList aWidgetTypes;
211     QList<QWidget*>::const_iterator anIt =  theWidgets.begin(), aLast = theWidgets.end();
212     for (; anIt != aLast; anIt++) {
213       QWidget* aWidget = *anIt;
214       if (aWidget)
215         aWidgetTypes.append(aWidget->objectName());
216     }
217     QString anInfo = QString("theWidgets[%1]: %2").arg(theWidgets.count()).arg(aWidgetTypes.join(","));
218     qDebug(anInfo.toStdString().c_str());
219   }
220 #endif
221 }
222
223 bool XGUI_PropertyPanel::focusNextPrevChild(bool theIsNext)
224 {
225   //bool isChangedFocus = ModuleBase_IPropertyPanel::focusNextPrevChild(theIsNext);
226   //return true;//isChangedFocus;
227
228   // it wraps the Tabs clicking to follow in the chain:
229   // controls, last control, Apply, Cancel, first control, controls
230   bool isChangedFocus = false;
231
232 #ifdef DEBUG_TAB_WIDGETS
233   QWidget* aFocusWidget = focusWidget();
234   if (aFocusWidget) {
235     QString anInfo = QString("focus Widget: %1").arg(aFocusWidget->objectName());
236     qDebug(anInfo.toStdString().c_str());
237   }
238 #endif
239
240   QWidget* aNewFocusWidget = 0;
241   if (aFocusWidget) {
242     QList<QWidget*> aChildren;
243     findDirectChildren(this, aChildren, true);
244     int aChildrenCount = aChildren.count();
245     int aFocusWidgetIndex = aChildren.indexOf(aFocusWidget);
246     if (aFocusWidgetIndex >= 0) {
247       if (theIsNext) {
248         if (aFocusWidgetIndex == aChildrenCount-1) {
249           // after the last widget focus should be set to "Apply"
250           QToolButton* anOkBtn = findChild<QToolButton*>(PROP_PANEL_OK);
251           aNewFocusWidget = anOkBtn;
252         }
253         else {
254           aNewFocusWidget = aChildren[aFocusWidgetIndex+1];
255         }
256       }
257       else {
258         if (aFocusWidgetIndex == 0) {
259           // before the first widget, the last should accept focus
260           aNewFocusWidget = aChildren[aChildrenCount - 1];
261         }
262         else {
263           // before the "Apply" button, the last should accept focus for consistency with "Next"
264           QToolButton* anOkBtn = findChild<QToolButton*>(PROP_PANEL_OK);
265           if (aFocusWidget == anOkBtn) {
266             aNewFocusWidget = aChildren[aChildrenCount - 1];
267           }
268           else {
269             aNewFocusWidget = aChildren[aFocusWidgetIndex-1];
270           }
271         }
272       }
273     }
274   }
275   if (aNewFocusWidget) {
276     //ModuleBase_Tools::setFocus(aNewFocusWidget, "XGUI_PropertyPanel::focusNextPrevChild()");
277     aNewFocusWidget->setFocus(theIsNext ? Qt::TabFocusReason : Qt::BacktabFocusReason);
278     isChangedFocus = true;
279   }
280   return isChangedFocus;
281 }
282 #else
283 bool XGUI_PropertyPanel::focusNextPrevChild(bool theIsNext)
284 {
285   // it wraps the Tabs clicking to follow in the chain:
286   // controls, last control, Apply, Cancel, first control, controls
287   bool isChangedFocus = false;
288
289   if (theIsNext) { // forward by Tab
290     QToolButton* aCancelBtn = findChild<QToolButton*>(PROP_PANEL_CANCEL);
291     if (aCancelBtn->hasFocus()) {
292       // after cancel, the first control should be focused
293       QWidget* aFirstControl = 0;
294       for (int i = 0, aSize = myWidgets.size(); i < aSize && !aFirstControl; i++)
295         aFirstControl = myWidgets[i]->getControlAcceptingFocus(true);
296       if (aFirstControl)
297         ModuleBase_Tools::setFocus(aFirstControl, "XGUI_PropertyPanel::focusNextPrevChild()");
298         isChangedFocus = true;
299     }
300     else {
301       // after the last control, the Apply button should be focused
302       QWidget* aLastControl = 0;
303       for (int i = myWidgets.size()-1; i >= 0 && !aLastControl; i--)
304         aLastControl = myWidgets[i]->getControlAcceptingFocus(false);
305       if (aLastControl && aLastControl->hasFocus()) {
306         setFocusOnOkButton();
307         isChangedFocus = true;
308       }
309     }
310   }
311   else { // backward by SHIFT + Tab
312     QToolButton* anOkBtn = findChild<QToolButton*>(PROP_PANEL_OK);
313     if (anOkBtn->hasFocus()) {
314       // after Apply, the last control should be focused
315       QWidget* aLastControl = 0;
316       for (int i = myWidgets.size()-1; i >= 0 && !aLastControl; i--)
317         aLastControl = myWidgets[i]->getControlAcceptingFocus(false);
318       if (aLastControl)
319         ModuleBase_Tools::setFocus(aLastControl, "XGUI_PropertyPanel::focusNextPrevChild()");
320         isChangedFocus = true;
321     }
322     else {
323       // after the first control, the Cancel button should be focused
324       QWidget* aFirstControl = 0;
325       for (int i = 0, aSize = myWidgets.size(); i < aSize && !aFirstControl; i++)
326         aFirstControl = myWidgets[i]->getControlAcceptingFocus(true);
327       if (aFirstControl && aFirstControl->hasFocus()) {
328         QToolButton* aCancelBtn = findChild<QToolButton*>(PROP_PANEL_CANCEL);
329         ModuleBase_Tools::setFocus(aCancelBtn, "XGUI_PropertyPanel::focusNextPrevChild()");
330         isChangedFocus = true;
331       }
332     }
333   }
334
335   if (!isChangedFocus)
336     isChangedFocus = ModuleBase_IPropertyPanel::focusNextPrevChild(theIsNext);
337   return isChangedFocus;
338 }
339
340 #endif
341 void XGUI_PropertyPanel::activateNextWidget()
342 {
343   activateNextWidget(myActiveWidget);
344 }
345
346 void XGUI_PropertyPanel::activateWidget(ModuleBase_ModelWidget* theWidget)
347 {
348   std::string aPreviosAttributeID;
349   if(myActiveWidget)
350     aPreviosAttributeID = myActiveWidget->attributeID();
351
352   // Avoid activation of already actve widget. It could happen on focusIn event many times
353   if (setActiveWidget(theWidget)) {
354     emit widgetActivated(myActiveWidget);
355     if (!myActiveWidget && !isEditingMode()) {
356       emit noMoreWidgets(aPreviosAttributeID);
357     }
358   }
359 }
360
361 bool XGUI_PropertyPanel::setActiveWidget(ModuleBase_ModelWidget* theWidget)
362 {
363   // Avoid activation of already actve widget. It could happen on focusIn event many times
364   if (theWidget == myActiveWidget) {
365     return false;
366   }
367   std::string aPreviosAttributeID;
368   if(myActiveWidget) {
369     aPreviosAttributeID = myActiveWidget->attributeID();
370     myActiveWidget->deactivate();
371     myActiveWidget->setHighlighted(false);
372   }
373   if(theWidget) {
374     emit beforeWidgetActivated(theWidget);
375     theWidget->setHighlighted(true);
376     theWidget->activate();
377   }
378   myActiveWidget = theWidget;
379   return true;
380 }
381
382 void XGUI_PropertyPanel::setFocusOnOkButton()
383 {
384   QToolButton* anOkBtn = findChild<QToolButton*>(PROP_PANEL_OK);
385   ModuleBase_Tools::setFocus(anOkBtn, "XGUI_PropertyPanel::setFocusOnOkButton()");
386 }
387
388 void XGUI_PropertyPanel::setCancelEnabled(bool theEnabled)
389 {
390   QToolButton* anCancelBtn = findChild<QToolButton*>(PROP_PANEL_CANCEL);
391   anCancelBtn->setEnabled(theEnabled);
392 }
393
394 bool XGUI_PropertyPanel::isCancelEnabled() const
395 {
396   QToolButton* anCancelBtn = findChild<QToolButton*>(PROP_PANEL_CANCEL);
397   return anCancelBtn->isEnabled();
398 }
399
400 void XGUI_PropertyPanel::setEditingMode(bool isEditing)
401 {
402   ModuleBase_IPropertyPanel::setEditingMode(isEditing);
403   foreach(ModuleBase_ModelWidget* aWgt, myWidgets) {
404     aWgt->setEditingMode(isEditing);
405   }
406 }
407
408 void XGUI_PropertyPanel::setupActions(XGUI_ActionsMgr* theMgr)
409 {
410   QStringList aButtonNames;
411   aButtonNames << PROP_PANEL_OK << PROP_PANEL_CANCEL << PROP_PANEL_HELP;
412   QList<XGUI_ActionsMgr::OperationStateActionId> aActionIds;
413   aActionIds << XGUI_ActionsMgr::Accept << XGUI_ActionsMgr::Abort << XGUI_ActionsMgr::Help;
414   for (int i = 0; i < aButtonNames.size(); ++i) {
415     QToolButton* aBtn = findChild<QToolButton*>(aButtonNames.at(i));
416     QAction* anAct = theMgr->operationStateAction(aActionIds.at(i));
417     aBtn->setDefaultAction(anAct);
418   }
419 }
420
421 ModuleBase_ModelWidget* XGUI_PropertyPanel::preselectionWidget() const
422 {
423   return myPreselectionWidget;
424 }
425
426 void XGUI_PropertyPanel::setPreselectionWidget(ModuleBase_ModelWidget* theWidget)
427 {
428   myPreselectionWidget = theWidget;
429 }
430
431
432 void XGUI_PropertyPanel::closeEvent(QCloseEvent* theEvent)
433 {
434   ModuleBase_Operation* aOp = myOperationMgr->currentOperation();
435   if (aOp) {
436     if (myOperationMgr->abortAllOperations()) {
437       theEvent->accept();
438     } else 
439       theEvent->ignore();
440   } else
441     ModuleBase_IPropertyPanel::closeEvent(theEvent);
442 }