Salome HOME
Merge branch 'master' of newgeom:newgeom
[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 #include <ModuleBase_IPropertyPanel.h>
15
16 #include <QList>
17
18 class QKeyEvent;
19 class QVBoxLayout;
20
21 class XGUI_EXPORT XGUI_PropertyPanel : public ModuleBase_IPropertyPanel
22 {
23 Q_OBJECT
24  public:
25   XGUI_PropertyPanel(QWidget* theParent);
26   virtual ~XGUI_PropertyPanel();
27
28   /// Returns main widget of the property panel, which children will be created
29   /// by WidgetFactory using the XML definition
30   QWidget* contentWidget();
31   /// Brings back all widget created by widget factory for signal/slot
32   /// connections and further processing
33   void setModelWidgets(const QList<ModuleBase_ModelWidget*>& theWidgets);
34   /// Returns all property panel's widget created by WidgetFactory
35   const QList<ModuleBase_ModelWidget*>& modelWidgets() const;
36   /// Removes all widgets in the widget area of the property panel
37   void cleanContent();
38
39   /// Returns currently active widget
40   virtual ModuleBase_ModelWidget* activeWidget() const { return myActiveWidget; }
41
42   /// Activate the next widget in the property panel
43   /// \param theWidget a widget. The next widget should be activated
44   virtual void activateNextWidget(ModuleBase_ModelWidget* theWidget);
45
46   /// Activate the next from current widget in the property panel
47   virtual void activateNextWidget();
48
49  public slots:
50   void updateContentWidget(FeaturePtr theFeature);
51   // Enables / disables "ok" ("accept") button
52   void setAcceptEnabled(bool);
53
54  protected slots:
55   // Makes the given widget active, highlights it and removes
56   // highlighting from the previous active widget
57   // emits widgetActivated(theWidget) signal
58   void activateWidget(ModuleBase_ModelWidget* theWidget);
59
60  signals:
61   /// Signal about the point 2d set to the feature
62   /// \param the feature
63   /// \param the attribute of the feature
64   void storedPoint2D(ObjectPtr theFeature, const std::string& theAttribute);
65
66
67  private:
68   QWidget* myCustomWidget;
69   QList<ModuleBase_ModelWidget*> myWidgets;
70   QVBoxLayout* myMainLayout;
71   ModuleBase_ModelWidget* myActiveWidget;
72 };
73
74 #endif /* XGUI_PROPERTYPANEL_H_ */