]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/ModuleBase/ModuleBase_IPropertyPanel.h
Salome HOME
Add tools
[modules/shaper.git] / src / ModuleBase / ModuleBase_IPropertyPanel.h
index 12c96548e6a11cd27ed5b1be4152303d9a3b63dd..c8c0f17215af55092aa3e6c2247a1677ac39490d 100644 (file)
@@ -29,6 +29,9 @@ public:
   /// \param theParent is a parent of the property panel
   ModuleBase_IPropertyPanel(QWidget* theParent);
 
+  /// Returns header widget
+  virtual QWidget* headerWidget() const = 0;
+
   /// Returns currently active widget
   virtual ModuleBase_ModelWidget* activeWidget() const = 0;
 
@@ -45,6 +48,9 @@ public:
   /// \return State of editing mode flag
   bool isEditingMode() const { return myIsEditing; }
 
+  /// Set focus on the Ok button
+  virtual void setFocusOnOkButton() = 0;
+
   /// Set Enable/Disable state of Cancel button
   /// \param theEnabled Enable/Disable state of Cancel button
   virtual void setCancelEnabled(bool theEnabled) = 0;