Salome HOME
Change color of ellipse and elliptic arc when a sketch is fully constrained.
[modules/shaper.git] / src / ParametersPlugin / ParametersPlugin_WidgetParamsMgr.h
index 0e55044b32dfbfc5d6ea1957240dbd689943a06b..444cd0cfbb5317ebe83a09043f91e7b9cabd0586 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright (C) 2014-2017  CEA/DEN, EDF R&D
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
 //
 // This library is free software; you can redistribute it and/or
 // modify it under the terms of the GNU Lesser General Public
 //
 // You should have received a copy of the GNU Lesser General Public
 // License along with this library; if not, write to the Free Software
-// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 //
-// See http://www.salome-platform.org/ or
-// email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 
 #ifndef ParametersPlugin_WidgetParamsMgr_H_
@@ -71,6 +70,10 @@ public:
   /// \return a control list
   virtual QList<QWidget*> getControls() const;
 
+  /// Set general buttons from dialog
+  /// \param theButtons the dialog buttons
+  virtual void setDialogButtons(QDialogButtonBox* theButtons);
+
 protected:
   /// Saves the internal parameters to the given feature
   /// \return True in success
@@ -82,6 +85,10 @@ protected:
   /// The method called when widget is activated
   virtual void activateCustom();
 
+  virtual void showEvent(QShowEvent* theEvent);
+
+  virtual void hideEvent(QHideEvent* theEvent);
+
 private slots:
   /// Slot for reaction on double click in the table (start editing)
   /// \param theIndex the clicked index
@@ -113,6 +120,9 @@ private slots:
   /// Slot for reaction on selection in the table
   void onSelectionChanged();
 
+  // A slot for show preview button
+  void onShowPreview();
+
 private:
   /// Creates a new parameter feature
   FeaturePtr createParameter() const;
@@ -162,6 +172,8 @@ private:
   QPushButton* myRemoveBtn;
   QToolButton* myUpBtn;
   QToolButton* myDownBtn;
+
+  bool isUpplyBlocked;
 };