Salome HOME
Merge branch 'master' of newgeom:newgeom.git
[modules/shaper.git] / src / ModuleBase / ModuleBase_WidgetSelector.h
1 // File:        ModuleBase_WidgetSelector.h
2 // Created:     2 June 2014
3 // Author:      Vitaly Smetannikov
4
5 #ifndef ModuleBase_WidgetSelector_H
6 #define ModuleBase_WidgetSelector_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_WidgetSelector : public ModuleBase_ModelWidget
26 {
27 Q_OBJECT
28  public:
29   ModuleBase_WidgetSelector(QWidget* theParent, ModuleBase_IWorkshop* theWorkshop,
30                             const Config_WidgetAPI* theData, const std::string& theParentId);
31
32   virtual ~ModuleBase_WidgetSelector();
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  private:
67   void enableOthersControls(bool toEnable) const;
68   void updateSelectionName();
69   void raisePanel() const;
70   bool isAccepted(const ObjectPtr theObject) const;
71
72   static TopAbs_ShapeEnum shapeType(const QString& theType);
73
74   QWidget* myContainer;
75   QLabel* myLabel;
76   QLineEdit* myTextLine;
77   QToolButton* myActivateBtn;
78
79   ModuleBase_IWorkshop* myWorkshop;
80
81   ObjectPtr mySelectedObject;
82   QStringList myShapeTypes;
83
84   QPalette myBasePalet;
85   QPalette myInactivePalet;
86 };
87
88 #endif