Salome HOME
NPAL17269: Performance pb. when creating a group with GUI.
[modules/geom.git] / src / MeasureGUI / MeasureGUI_PropertiesDlg.h
index d2402393dc95242f56e68ed73a8093af53088d55..0689c580654d99d9bb63be4416eb37f021cdf2c6 100644 (file)
@@ -17,7 +17,7 @@
 //  License along with this library; if not, write to the Free Software 
 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
 // 
-//  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
 //
 //
 //
 #ifndef DIALOGBOX_PROPERTIES_H
 #define DIALOGBOX_PROPERTIES_H
 
-#include "MeasureGUI_Skeleton.h"
-#include "MeasureGUI_1Sel3LineEdit_QTD.h"
+#include "GEOM_MeasureGUI.hxx"
 
-#include "MeasureGUI.h"
+#include "MeasureGUI_Skeleton.h"
+class MeasureGUI_1Sel3LineEdit_QTD;
 
 //=================================================================================
 // class    : MeasureGUI_PropertiesDlg
-// purpose  :
+// purpose  : Dialog for displaying length, area and volume
 //=================================================================================
-class MeasureGUI_PropertiesDlg : public MeasureGUI_Skeleton
+
+class GEOM_MEASUREGUI_EXPORT MeasureGUI_PropertiesDlg : public MeasureGUI_Skeleton
 { 
     Q_OBJECT
 
 public:
-    MeasureGUI_PropertiesDlg(QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0);
-    ~MeasureGUI_PropertiesDlg();
+                                        MeasureGUI_PropertiesDlg( GeometryGUI* GUI,
+                                                                 QWidget*     parent );
+                                        ~MeasureGUI_PropertiesDlg();
+
+protected:
+
+    // redefined from GEOMBase_Helper and MeasureGUI_Skeleton
+    virtual void                        processObject();
+    virtual void                        activateSelection();
+    virtual SALOME_Prs*                 buildPrs();
 
 private:
-    void Init();
-    void enterEvent(QEvent* e);
-    void CalculateAndDisplayProperties(const TopoDS_Shape& S);
 
-    MeasureGUI_1Sel3LineEdit_QTD* GroupC1;
+    void                                Init();
+    bool                                getParameters( double& theLength,
+                                                       double& theArea,
+                                                       double& theVolume );
 
-private slots:
-    void SetEditCurrentArgument();
-    void SelectionIntoArgument();
-    void LineEditReturnPressed();
-    void ActivateThisDialog();
+private:    
 
+    MeasureGUI_1Sel3LineEdit_QTD*       myGrp;
 };
 
 #endif // DIALOGBOX_PROPERTIES_H
+
+
+
+
+
+
+
+
+
+
+
+
+
+