Salome HOME
7b55b2c0f5713feefc9896af887ad6c0cb2c89d3
[modules/shaper.git] / src / XGUI / XGUI_PropertyPanel.h
1 /*
2  * XGUI_PropertyPanel.h
3  *
4  *  Created on: Apr 29, 2014
5  *      Author: sbh
6  */
7
8 #ifndef XGUI_PROPERTYPANEL_H_
9 #define XGUI_PROPERTYPANEL_H_
10
11 #include "XGUI.h"
12
13 #include <ModuleBase_ModelWidget.h>
14
15 #include <QDockWidget>
16 #include <QList>
17
18 class QKeyEvent;
19 class QVBoxLayout;
20
21 class XGUI_EXPORT XGUI_PropertyPanel: public QDockWidget
22 {
23   Q_OBJECT
24 public:
25   XGUI_PropertyPanel(QWidget* theParent);
26   virtual ~XGUI_PropertyPanel();
27
28   QWidget* contentWidget();
29   void setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets);
30   const QList<ModuleBase_ModelWidget*>& modelWidgets() const;
31
32   void cleanContent();
33
34 protected:
35   virtual bool eventFilter(QObject *theObject, QEvent *theEvent);
36
37 public slots:
38   void updateContentWidget(FeaturePtr theFeature);
39   /// slot to activate the next widget in the property panel
40   /// \param theWidget a widget. The next widget should be activated
41   void onActivateNextWidget(ModuleBase_ModelWidget* theWidget);
42   // Enables / disables "ok" ("accept") button
43   void setAcceptEnabled(bool);
44
45 signals:
46   /// The signal about key release on the control, that corresponds to the attribute
47   /// \param theAttributeName a name of the attribute
48   /// \param theEvent key release event
49   void keyReleased(const std::string& theAttributeName, QKeyEvent* theEvent);
50   /// The signal about the widget activation
51   /// \param theWidget the activated widget
52   void widgetActivated(ModuleBase_ModelWidget* theWidget);
53
54   /// Signal about the point 2d set to the feature
55   /// \param the feature
56   /// \param the attribute of the feature
57   void storedPoint2D(ObjectPtr theFeature, const std::string& theAttribute);
58
59 private:
60   QWidget* myCustomWidget;
61
62   QList<ModuleBase_ModelWidget*> myWidgets;
63
64   QVBoxLayout* myMainLayout;
65 };
66
67 #endif /* XGUI_PROPERTYPANEL_H_ */