Salome HOME
Issue #559: Control doesn't have variable if its text is empty
[modules/shaper.git] / src / ModuleBase / ModuleBase_IPropertyPanel.h
1 // Copyright (C) 2014-20xx CEA/DEN, EDF R&D
2
3 /*
4  * ModuleBase_IPropertyPanel.h
5  *
6  *  Created on: Oct 01, 2014
7  *      Author: vsv
8  */
9
10 #ifndef ModuleBase_PROPERTYPANEL_H_
11 #define ModuleBase_PROPERTYPANEL_H_
12
13 #include "ModuleBase.h"
14
15 #include <QDockWidget>
16 #include <QKeyEvent>
17
18 class ModuleBase_ModelWidget;
19
20 /**
21 * \ingroup GUI
22 * A class for Property panel object definition
23 */
24 class MODULEBASE_EXPORT ModuleBase_IPropertyPanel : public QDockWidget
25 {
26 Q_OBJECT
27 public:
28   /// Constructor
29   /// \param theParent is a parent of the property panel
30   ModuleBase_IPropertyPanel(QWidget* theParent) : QDockWidget(theParent), myIsEditing(false) {}
31
32   /// Returns currently active widget
33   virtual ModuleBase_ModelWidget* activeWidget() const = 0;
34
35   /// Returns all property panel's widget created by WidgetFactory
36   virtual const QList<ModuleBase_ModelWidget*>& modelWidgets() const = 0;
37
38   /// Removes all widgets in the widget area of the property panel
39   virtual void cleanContent() = 0;
40
41   /// Editing mode depends on mode of current operation. This value is defined by it.
42   /// \param isEditing state of editing mode flag
43   virtual void setEditingMode(bool isEditing) { myIsEditing = isEditing; }
44
45   /// \return State of editing mode flag
46   bool isEditingMode() const { return myIsEditing; }
47
48   /// Set Enable/Disable state of Cancel button
49   /// \param theEnabled Enable/Disable state of Cancel button
50   virtual void setCancelEnabled(bool theEnabled) = 0;
51
52   /// \return Enable/Disable state of Cancel button
53   virtual bool isCancelEnabled() const = 0;
54
55 signals:
56   /// The signal about key release on the control, that corresponds to the attribute
57   /// \param theEvent key release event
58   void keyReleased(QKeyEvent* theEvent);
59
60   /// The signal about the widget activation
61   /// \param theWidget the activated widget
62   void beforeWidgetActivated(ModuleBase_ModelWidget* theWidget);
63
64   /// The signal about the widget activation
65   /// \param theWidget the activated widget
66   void widgetActivated(ModuleBase_ModelWidget* theWidget);
67
68   /// Emited when there is no next widget
69   void noMoreWidgets();
70
71 public slots:
72   /// Activate the next widget in the property panel
73   /// \param theWidget a widget. The next widget should be activated
74   virtual void activateNextWidget(ModuleBase_ModelWidget* theWidget) = 0;
75
76   /// Activate the next from current widget in the property panel
77   virtual void activateNextWidget() = 0;
78
79   /**
80   * Makes the given widget active, highlights it and removes
81   * highlighting from the previous active widget
82   * emits widgetActivated(theWidget) signal
83   * \param theWidget which has to be activated
84   */
85   virtual void activateWidget(ModuleBase_ModelWidget* theWidget) = 0;
86
87 protected:
88
89   /// Flag which shows that current operation is in editing mode
90   bool myIsEditing;
91 };
92
93 #endif