Salome HOME
Merge branch 'master' of newgeom:newgeom
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetShapeSelector.h
1 // File:        ModuleBase_WidgetShapeSelector.h
2 // Created:     2 June 2014
3 // Author:      Vitaly Smetannikov
4
5 #ifndef ModuleBase_WidgetShapeSelector_H
6 #define ModuleBase_WidgetShapeSelector_H
7
8 #include "ModuleBase.h"
9 #include "ModuleBase_ModelWidget.h"
10
11 #include <ModelAPI_Object.h>
12
13 #include <TopAbs_ShapeEnum.hxx>
14
15 #include <QStringList>
16 #include <QPalette>
17
18 class Config_WidgetAPI;
19 class QWidget;
20 class QLabel;
21 class QLineEdit;
22 class QToolButton;
23 class ModuleBase_IWorkshop;
24
25 class MODULEBASE_EXPORT ModuleBase_WidgetShapeSelector : public ModuleBase_ModelWidget
26 {
27 Q_OBJECT
28  public:
29   ModuleBase_WidgetShapeSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
30                             const Config_WidgetAPI* theData, const std::string& theParentId);
31
32   virtual ~ModuleBase_WidgetShapeSelector();
33
34   /// Saves the internal parameters to the given feature
35   /// \param theObject a model feature to be changed
36   virtual bool storeValue() const;
37
38   virtual bool restoreValue();
39
40   virtual bool focusTo();
41
42   /// Returns the internal parent wiget control, that can be shown anywhere
43   /// \returns the widget
44   QWidget* getControl() const
45   {
46     return myContainer;
47   }
48
49   /// Returns list of widget controls
50   /// \return a control list
51   virtual QList<QWidget*> getControls() const;
52
53   ObjectPtr selectedFeature() const
54   {
55     return mySelectedObject;
56   }
57
58  public slots:
59
60   /// Activate or deactivate selection
61   void activateSelection(bool toActivate);
62
63 private slots:
64   void onSelectionChanged();
65
66 protected:
67   bool eventFilter(QObject* theObj, QEvent* theEvent);
68
69 private:
70   void updateSelectionName();
71   void raisePanel() const;
72   bool isAccepted(const ObjectPtr theObject) const;
73
74   static TopAbs_ShapeEnum shapeType(const QString& theType);
75
76   QWidget* myContainer;
77   QLabel* myLabel;
78   QLineEdit* myTextLine;
79   //QToolButton* myActivateBtn;
80
81   ModuleBase_IWorkshop* myWorkshop;
82
83   ObjectPtr mySelectedObject;
84   QStringList myShapeTypes;
85
86   QPalette myBasePalet;
87   QPalette myInactivePalet;
88
89   bool myIsActive;
90 };
91
92 #endif