Salome HOME
Merge branch 'Dev_GroupsRevision'
[modules/shaper.git] / src / XGUI / XGUI_PropertyPanelSelector.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef XGUI_PropertyPanelSelector_H
22 #define XGUI_PropertyPanelSelector_H
23
24 #include "XGUI.h"
25
26 #include <XGUI_ActiveControlSelector.h>
27
28 class ModuleBase_ModelWidget;
29 class XGUI_PropertyPanel;
30
31 /**
32 * Processing selection by the property panel.
33 */
34 class XGUI_PropertyPanelSelector : public XGUI_ActiveControlSelector
35 {
36   Q_OBJECT
37
38 public:
39   /// Constructor
40   /// \param thePanel the workshop property panel
41   XGUI_EXPORT XGUI_PropertyPanelSelector(XGUI_PropertyPanel* thePanel);
42   /// Destructor
43   XGUI_EXPORT virtual ~XGUI_PropertyPanelSelector() {};
44
45   /// Returns name of the selector
46   XGUI_EXPORT static QString Type() { return "XGUI_PropertyPanelSelector"; }
47
48   /// Returns name of the selector
49   XGUI_EXPORT virtual QString getType() { return Type(); }
50
51   /// Clear need to be activated widget if it exists
52   XGUI_EXPORT virtual void reset();
53
54   /// Sets control active. It should activates/deactivates selection and selection filters.
55   /// \param isActive if true, the control becomes active
56   XGUI_EXPORT virtual void setActive(const bool& isActive);
57
58   /// Returns whether the selector should be activated as soon as possible (by deactivatate other)
59   /// \return boolean result
60   XGUI_EXPORT virtual bool needToBeActiated() const;
61
62   /// Processes current selection of workshop. Reaction to selection change in workshop.
63   XGUI_EXPORT virtual void processSelection();
64
65 protected:
66   XGUI_PropertyPanel* myPanel; ///< processed panel
67   ModuleBase_ModelWidget* myWidgetToBeActivated; ///< used as need to be activated back
68
69 };
70
71 #endif