Salome HOME
Merge branch 'master' of newgeom:newgeom
[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_WidgetPoint2D.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
21 #ifdef _DEBUG
22 #include <iostream>
23 #endif
24
25 XGUI_PropertyPanel::XGUI_PropertyPanel(QWidget* theParent) :
26 QDockWidget(theParent)
27 {
28   this->setWindowTitle(tr("Property Panel"));
29   QAction* aViewAct = this->toggleViewAction();
30   this->setObjectName(XGUI::PROP_PANEL);
31   setStyleSheet("::title { position: relative; padding-left: 5px; text-align: left center }");
32
33   QWidget* aContent = new QWidget(this);
34   myMainLayout = new QVBoxLayout(aContent);
35   myMainLayout->setContentsMargins(3, 3, 3, 3);
36   this->setWidget(aContent);
37
38   QFrame* aFrm = new QFrame(aContent);
39   aFrm->setFrameStyle(QFrame::Sunken);
40   aFrm->setFrameShape(QFrame::Panel);
41   QHBoxLayout* aBtnLay = new QHBoxLayout(aFrm);
42   aBtnLay->setContentsMargins(0, 0, 0, 0);
43   myMainLayout->addWidget(aFrm);
44
45   QPushButton* aBtn = new QPushButton(QIcon(":pictures/button_help.png"), "", aFrm);
46   aBtn->setFlat(true);
47   aBtnLay->addWidget(aBtn);
48   aBtnLay->addStretch(1);
49   aBtn = new QPushButton(QIcon(":pictures/button_ok.png"), "", aFrm);
50   aBtn->setObjectName(XGUI::PROP_PANEL_OK);
51   aBtn->setToolTip(tr("Ok"));
52   aBtn->setFlat(true);
53   aBtnLay->addWidget(aBtn);
54   aBtn->installEventFilter(this);
55
56   aBtn = new QPushButton(QIcon(":pictures/button_cancel.png"), "", aFrm);
57   aBtn->setToolTip(tr("Cancel"));
58   aBtn->setObjectName(XGUI::PROP_PANEL_CANCEL);
59   aBtn->setFlat(true);
60   aBtnLay->addWidget(aBtn);
61
62   myCustomWidget = new QWidget(aContent);
63   myMainLayout->addWidget(myCustomWidget);
64   myMainLayout->addStretch(1);
65
66   aBtn->installEventFilter(this);
67 }
68
69 XGUI_PropertyPanel::~XGUI_PropertyPanel()
70 {
71 }
72
73 void XGUI_PropertyPanel::cleanContent()
74 {
75   myWidgets.clear();
76   
77   QLayoutItem* aItem = myMainLayout->takeAt(myMainLayout->count() - 1);
78   delete aItem;
79
80   myMainLayout->removeWidget(myCustomWidget);
81   delete myCustomWidget;
82
83   myCustomWidget = new QWidget(widget());
84   myMainLayout->addWidget(myCustomWidget);
85   myMainLayout->addStretch(1);
86 }
87
88 void XGUI_PropertyPanel::setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets)
89 {
90   myWidgets = theWidgets;
91
92   if (!theWidgets.empty()) {
93     QList<ModuleBase_ModelWidget*>::const_iterator anIt = theWidgets.begin(), aLast = theWidgets.end();
94     for (; anIt != aLast; anIt++) {
95       connect(*anIt, SIGNAL(keyReleased(const std::string&, QKeyEvent*)),
96               this, SIGNAL(keyReleased(const std::string&, QKeyEvent*)));
97
98       connect(*anIt, SIGNAL(focusOutWidget(ModuleBase_ModelWidget*)),
99               this, SLOT(onActivateNextWidget(ModuleBase_ModelWidget*)));
100
101       //connect(*anIt, SIGNAL(activated(ModuleBase_ModelWidget*)),
102       //        this, SIGNAL(widgetActivated(ModuleBase_ModelWidget*)));
103
104       ModuleBase_WidgetPoint2D* aPointWidget = dynamic_cast<ModuleBase_WidgetPoint2D*>(*anIt);
105       if (aPointWidget)
106         connect(aPointWidget, SIGNAL(storedPoint2D(FeaturePtr, const std::string&)),
107                 this, SIGNAL(storedPoint2D(FeaturePtr, const std::string&)));
108     }
109     ModuleBase_ModelWidget* aLastWidget = theWidgets.last();
110     if (aLastWidget) {
111       QList<QWidget*> aControls = aLastWidget->getControls();
112       if (!aControls.empty()) {
113         QWidget* aLastControl = aControls.last();
114
115         QPushButton* anOkBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
116         QPushButton* aCancelBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_CANCEL);
117
118         setTabOrder(aLastControl, anOkBtn);
119         setTabOrder(anOkBtn, aCancelBtn);
120       }
121     }
122     onActivateNextWidget(0);
123   }
124 }
125
126 const QList<ModuleBase_ModelWidget*>& XGUI_PropertyPanel::modelWidgets() const
127 {
128   return myWidgets;
129 }
130
131 bool XGUI_PropertyPanel::eventFilter(QObject *theObject, QEvent *theEvent)
132 {
133   QPushButton* anOkBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_OK);
134   QPushButton* aCancelBtn = findChild<QPushButton*>(XGUI::PROP_PANEL_CANCEL);
135   if (theObject == anOkBtn || theObject == aCancelBtn) {
136     if (theEvent->type() == QEvent::KeyRelease) {
137       QKeyEvent* aKeyEvent = (QKeyEvent*)theEvent;
138       if (aKeyEvent && aKeyEvent->key() == Qt::Key_Return) {
139         // TODO: this is enter button processing when the focus is on "Apply" or "Cancel" buttons
140         emit keyReleased("", (QKeyEvent*) theEvent);
141         return true;
142       }
143     }
144   }
145   return QDockWidget::eventFilter(theObject, theEvent);
146 }
147
148 QWidget* XGUI_PropertyPanel::contentWidget()
149 {
150   return myCustomWidget;
151 }
152
153 void XGUI_PropertyPanel::updateContentWidget(FeaturePtr theFeature)
154 {
155   foreach(ModuleBase_ModelWidget* eachWidget, myWidgets) {
156     eachWidget->restoreValue(theFeature);
157   }
158   // the repaint is used here to immediatelly react in GUI to the values change.
159   repaint();
160 }
161
162 void XGUI_PropertyPanel::onActivateNextWidget(ModuleBase_ModelWidget* theWidget)
163 {
164   ModuleBase_ModelWidget* aNextWidget = 0;
165   QList<ModuleBase_ModelWidget*>::const_iterator anIt = myWidgets.begin(),
166                                                  aLast = myWidgets.end();
167   bool isFoundWidget = false;
168   for (;anIt != aLast && !aNextWidget; anIt++)
169   {
170     if (isFoundWidget || !theWidget) {
171       if ((*anIt)->focusTo()) {
172         aNextWidget = *anIt;
173       }
174     }
175     isFoundWidget = (*anIt) == theWidget;
176   }
177   emit widgetActivated(aNextWidget);
178 }