Salome HOME
Update copyright information
[modules/smesh.git] / src / StdMeshersGUI / StdMeshersGUI_StdHypothesisCreator.h
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 // File   : StdMeshersGUI_StdHypothesisCreator.h
23 // Author : Alexander SOLOVYOV, Open CASCADE S.A.S.
24 //
25 #ifndef STDMESHERSGUI_STDHYPOTHESISCREATOR_H
26 #define STDMESHERSGUI_STDHYPOTHESISCREATOR_H
27
28 // SMESH includes
29 #include "SMESH_StdMeshersGUI.hxx"
30
31 #include <SMESHGUI_Hypotheses.h>
32
33 /*!
34  * \brief Class for creation of standard hypotheses
35 */
36 class STDMESHERSGUI_EXPORT StdMeshersGUI_StdHypothesisCreator : public SMESHGUI_GenericHypothesisCreator
37 {
38   Q_OBJECT
39
40 public:
41   StdMeshersGUI_StdHypothesisCreator( const QString& );
42   virtual ~StdMeshersGUI_StdHypothesisCreator();
43
44   virtual bool checkParams() const;
45
46 protected:
47   virtual QFrame*  buildFrame    ();
48   virtual void     retrieveParams() const;
49   virtual QString  storeParams   () const;
50   virtual bool     stdParams     ( ListOfStdParams& ) const;
51   virtual void     attuneStdWidget( QWidget*, const int ) const;
52   virtual QString  caption() const;
53   virtual QPixmap  icon() const;
54   virtual QString  type() const;
55   virtual QWidget* getCustomWidget( const StdParam&, QWidget*, const int ) const;
56   virtual bool     getParamFromCustomWidget( StdParam& , QWidget* ) const;
57
58   virtual QString  hypTypeName( const QString& ) const;
59   virtual QWidget* getWidgetForParam( int paramIndex ) const;
60   virtual ListOfWidgets* customWidgets() const;
61   virtual void     onReject();
62
63   template<class T>
64     T* widget(int i) const {
65     return dynamic_cast< T* >( getWidgetForParam( i ));
66   }
67
68   ListOfWidgets    myCustomWidgets;
69 };
70
71 #endif // STDMESHERSGUI_STDHYPOTHESISCREATOR_H