Salome HOME
Synchronize displayed objects if Viewer was opened after displaying
[modules/shaper.git] / src / PartSet / PartSet_MenuMgr.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 // File:        PartSet_MenuMgr.h
4 // Created:     03 April 2015
5 // Author:      Vitaly SMETANNIKOV
6
7 #ifndef PartSet_MenuMgr_H
8 #define PartSet_MenuMgr_H
9
10 #include <ModelAPI_Feature.h>
11
12 #include <QObject>
13 #include <QMap>
14 #include <QString>
15 #include <QList>
16 #include <QColor>
17
18 class PartSet_Module;
19 class QAction;
20 class QMenu;
21
22 /**
23 * \ingroup Modules
24 * A class for management of module specific menu
25 */
26 class PartSet_MenuMgr: public QObject
27 {
28   Q_OBJECT
29 public:
30   /// Constructor
31   /// \param theModule a parent module
32   PartSet_MenuMgr(PartSet_Module* theModule);
33
34
35   /// Returns action according to the given ID
36   /// \param theId an action identifier, it should be uniqued in the bounds of the module
37   QAction* action(const QString& theId) const;
38
39   /// Add menu atems for viewer into the given menu
40   /// \param theMenu a popup menu to be shown in the viewer
41   /// \param theStdActions a map of standard actions
42   /// \return true if items are added and there is no necessity to provide standard menu
43   bool addViewerMenu(QMenu* theMenu, const QMap<QString, QAction*>& theStdActions) const;
44
45   /// Update state of pop-up menu items in viewer
46   /// \param theStdActions - a map of standard actions
47   void updateViewerMenu(const QMap<QString, QAction*>& theStdActions); 
48
49   /// Activates a PartSet document
50   void activatePartSet() const;
51
52 public slots:
53   /// Processes the context menu action click
54   /// \param isChecked a state of toggle if the action is checkable
55   void onAction(bool isChecked);
56
57 private slots:
58
59   /// A slot which is called on selection of menu item coresponding to line with coincedence
60   /// \param theAction an action of the selected item
61   void onLineHighlighted(QAction* theAction);
62
63   /// A slot which is called on hiding Detach menu
64   void onDetachMenuHide();
65
66   /// A slot which is called on selection an Item in Detach menu
67   /// \param theAction an action of the selected item
68   void onLineDetach(QAction* theAction);
69
70   /// A slot called on Part activation command
71   void onActivatePart(bool);
72
73   /// A slot called on PartSet activation command
74   void onActivatePartSet(bool);
75
76   /// A slot called on edit of feature
77   void onEdit(bool);
78
79   void onSelectParentFeature();
80
81 private:
82   /// Returns true if the current operation is sketch entity create operation
83   /// \param theValue the current auxiliary value
84   /// \return the boolean result
85   bool canSetAuxiliary(bool& theValue) const;
86   
87   /// Changes the sketcher entity construction argument value
88   /// \param isChecked if true, the feature is a construction
89   void setAuxiliary(const bool isChecked);
90
91   /// Create all actions for context menus. It is called on creation of module
92   /// Put the created actions into an internal map
93   void createActions();
94
95   /// Add action to the internal map
96   /// \param theId - string ID of the item
97   /// \param theAction - action to add
98   void addAction(const QString& theId, QAction* theAction);
99
100   /// Set color on presentation of result listed in myCoinsideLines
101   /// \param theId object Id in myCoinsideLines list
102   /// \param theColor a color which has to be set
103   /// \param theUpdate update viewer flag
104   /// \return previously defined color on the object
105   QColor setLineColor(int theId, const QColor theColor, bool theUpdate);
106
107   /// Reference to a parent module
108   PartSet_Module* myModule;
109
110   /// the popup menu actions
111   QMap<QString, QAction*> myActions; 
112
113   /// List of lines coincided in a one point
114   mutable QList<FeaturePtr> myCoinsideLines;
115
116   /// A Coincedence feature selected by user for detaching
117   mutable FeaturePtr mySelectedFeature;
118
119   /// Id of menu item in Detach menu previously selected
120   int myPrevId;
121
122   /// Original color of highlighted line 
123   QColor myColor;
124 };
125
126 #endif