Salome HOME
Provide local selection for operations outside of sketcher
[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   /// Set the given wrapped value to the current widget
59   /// This value should be processed in the widget according to the needs
60   /// \param theValue the wrapped widget value
61   virtual bool setValue(ModuleBase_WidgetValue* theValue);
62
63 public slots:
64
65   /// Activate or deactivate selection
66   void activateSelection(bool toActivate);
67
68 private slots:
69   void onSelectionChanged();
70
71 protected:
72   bool eventFilter(QObject* theObj, QEvent* theEvent);
73
74 private:
75   void updateSelectionName();
76   void raisePanel() const;
77   bool isAccepted(const ObjectPtr theObject) const;
78
79   // Set the given object as a value of the widget
80   void setObject(ObjectPtr theObj);
81
82   static TopAbs_ShapeEnum shapeType(const QString& theType);
83
84   QWidget* myContainer;
85   QLabel* myLabel;
86   QLineEdit* myTextLine;
87   //QToolButton* myActivateBtn;
88
89   ModuleBase_IWorkshop* myWorkshop;
90
91   ObjectPtr mySelectedObject;
92   QStringList myShapeTypes;
93
94   /// If true then local selector has to be activated in context
95   bool myUseSubShapes;
96
97   QPalette myBasePalet;
98   QPalette myInactivePalet;
99
100   bool myIsActive;
101 };
102
103 #endif