Salome HOME
Merge from V6_main (04/10/2012)
[plugins/hexoticplugin.git] / src / GUI / HexoticPluginGUI_HypothesisCreator.h
1 // Copyright (C) 2007-2012  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // ---
21 // File   : HexoticPluginGUI_HypothesisCreator.h
22 // Author : Lioka RAZAFINDRAZAKA (CEA)
23 // ---
24 //
25 #ifndef HexoticPLUGINGUI_HypothesisCreator_H
26 #define HexoticPLUGINGUI_HypothesisCreator_H
27
28 #include "HexoticPluginGUI.h"
29
30 #include <SMESHGUI_Hypotheses.h>
31
32 class QtxIntSpinBox;
33 class QCheckBox;
34 class QLineEdit;
35
36 class HexoticPluginGUI_StdWidget;
37
38 typedef struct
39 {
40   QString  myName;
41   int      myHexesMinLevel, myHexesMaxLevel;
42   double   myMinSize, myMaxSize;
43   bool     myHexoticInvalidElements;
44   bool     myHexoticIgnoreRidges;
45   double   myHexoticSharpAngleThreshold;
46   int      myHexoticNbProc;
47   QString  myHexoticWorkingDir;
48   int      myHexoticVerbosity;
49   int      myHexoticSdMode;
50 } HexoticHypothesisData;
51
52 /*!
53  * \brief Class for creation of Hexotic hypotheses
54 */
55 class HEXOTICPLUGIN_GUI_EXPORT HexoticPluginGUI_HypothesisCreator : public SMESHGUI_GenericHypothesisCreator
56 {
57   Q_OBJECT
58
59 public:
60   HexoticPluginGUI_HypothesisCreator( const QString& );
61   virtual ~HexoticPluginGUI_HypothesisCreator();
62
63   virtual bool checkParams(QString&) const;
64   virtual QString  helpPage() const;
65
66 protected:
67   virtual QFrame*  buildFrame    ();
68   virtual void     retrieveParams() const;
69   virtual QString  storeParams   () const;
70   
71   virtual QString  caption() const;
72   virtual QPixmap  icon() const;
73   virtual QString  type() const;
74   
75 private:
76   bool readParamsFromHypo( HexoticHypothesisData& ) const;
77   bool readParamsFromWidgets( HexoticHypothesisData& ) const;
78   bool storeParamsToHypo( const HexoticHypothesisData& ) const;
79   void resizeEvent(QResizeEvent *event);
80   void printData(HexoticHypothesisData&) const;
81
82 private:
83
84 //  QWidget*            myStdGroup;
85   QLineEdit*    myName;
86   HexoticPluginGUI_StdWidget*   myStdWidget;
87
88  bool             myIs3D;
89 };
90
91 #endif