Salome HOME
Issue #720:Set cursor at the same position at editing of text in spin box
[modules/shaper.git] / src / ModuleBase / ModuleBase_IPropertyPanel.h
index 7f8d9d32d3c06e0a915adce51a348ed52db54e42..59c2f8435a90b9500e244080227644b642348edb 100644 (file)
@@ -1,3 +1,5 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
+
 /*
  * ModuleBase_IPropertyPanel.h
  *
 
 class ModuleBase_ModelWidget;
 
+/**
+* \ingroup GUI
+* A class for Property panel object definition
+*/
 class MODULEBASE_EXPORT ModuleBase_IPropertyPanel : public QDockWidget
 {
 Q_OBJECT
 public:
-  ModuleBase_IPropertyPanel(QWidget* theParent) : QDockWidget(theParent) {}
+  /// Constructor
+  /// \param theParent is a parent of the property panel
+  ModuleBase_IPropertyPanel(QWidget* theParent) : QDockWidget(theParent), myIsEditing(false) {}
 
   /// Returns currently active widget
   virtual ModuleBase_ModelWidget* activeWidget() const = 0;
@@ -27,14 +35,45 @@ public:
   /// Returns all property panel's widget created by WidgetFactory
   virtual const QList<ModuleBase_ModelWidget*>& modelWidgets() const = 0;
 
+  /// Removes all widgets in the widget area of the property panel
+  virtual void cleanContent() = 0;
+
+  /// Editing mode depends on mode of current operation. This value is defined by it.
+  /// \param isEditing state of editing mode flag
+  virtual void setEditingMode(bool isEditing) { myIsEditing = isEditing; }
+
+  /// \return State of editing mode flag
+  bool isEditingMode() const { return myIsEditing; }
+
+  /// Set Enable/Disable state of Cancel button
+  /// \param theEnabled Enable/Disable state of Cancel button
+  virtual void setCancelEnabled(bool theEnabled) = 0;
+
+  /// \return Enable/Disable state of Cancel button
+  virtual bool isCancelEnabled() const = 0;
+
+  /// Returns widget processed by preselection
+  virtual ModuleBase_ModelWidget* preselectionWidget() const = 0;
+
+  /// Sets widget processed by preselection
+  virtual void setPreselectionWidget(ModuleBase_ModelWidget* theWidget) = 0;
+
 signals:
   /// The signal about key release on the control, that corresponds to the attribute
   /// \param theEvent key release event
   void keyReleased(QKeyEvent* theEvent);
+
+  /// The signal about the widget activation
+  /// \param theWidget the activated widget
+  void beforeWidgetActivated(ModuleBase_ModelWidget* theWidget);
+
   /// The signal about the widget activation
   /// \param theWidget the activated widget
   void widgetActivated(ModuleBase_ModelWidget* theWidget);
 
+  /// Emited when there is no next widget
+  void noMoreWidgets();
+
 public slots:
   /// Activate the next widget in the property panel
   /// \param theWidget a widget. The next widget should be activated
@@ -42,6 +81,19 @@ public slots:
 
   /// Activate the next from current widget in the property panel
   virtual void activateNextWidget() = 0;
+
+  /**
+  * Makes the given widget active, highlights it and removes
+  * highlighting from the previous active widget
+  * emits widgetActivated(theWidget) signal
+  * \param theWidget which has to be activated
+  */
+  virtual void activateWidget(ModuleBase_ModelWidget* theWidget) = 0;
+
+protected:
+
+  /// Flag which shows that current operation is in editing mode
+  bool myIsEditing;
 };
 
 #endif
\ No newline at end of file