Salome HOME
1a1978a41b61d36d35a54a0938ccb9e0d8acd47f
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Hypotheses.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 // SMESH SMESHGUI : GUI for SMESH component
23 // File   : SMESHGUI_Hypotheses.h
24 // Author : Julia DOROVSKIKH, Open CASCADE S.A.S.
25 //
26 #ifndef SMESHGUI_HYPOTHESES_H
27 #define SMESHGUI_HYPOTHESES_H
28
29 // SMESH includes
30 #include "SMESH_SMESHGUI.hxx"
31
32 // Qt includes
33 #include <QtxDialog.h>
34 #include <QVariant>
35
36 // IDL includes
37 #include <SALOMEconfig.h>
38 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
39
40 class QEventLoop;
41
42 /*!
43  * \brief Auxiliary class for creation of hypotheses
44 */
45 class SMESHGUI_EXPORT SMESHGUI_GenericHypothesisCreator : public QObject
46 {
47   Q_OBJECT
48
49 public:
50   SMESHGUI_GenericHypothesisCreator( const QString& );
51   virtual ~SMESHGUI_GenericHypothesisCreator();
52
53   void                         create( SMESH::SMESH_Hypothesis_ptr,
54                                        const QString&, QWidget* );
55   void                         create( bool, const QString&, QWidget* );
56   void                         edit( SMESH::SMESH_Hypothesis_ptr,
57                                      const QString&, QWidget* );
58   void                         setInitParamsHypothesis(SMESH::SMESH_Hypothesis_ptr);
59
60   virtual bool                 checkParams() const = 0;
61   virtual void                 onReject();
62   virtual QString              helpPage() const;
63
64   QString                      hypType() const;
65   QString                      hypName() const;
66   bool                         isCreation() const;
67
68 protected:
69   typedef struct
70   {
71     QString   myName;
72     QVariant  myValue;
73
74   } StdParam;
75
76   typedef QList<StdParam>      ListOfStdParams;
77   typedef QList<QWidget*>      ListOfWidgets;
78
79   SMESH::SMESH_Hypothesis_var  hypothesis() const;
80   SMESH::SMESH_Hypothesis_var  initParamsHypothesis(const bool strict=false) const;
81   bool                         hasInitParamsHypothesis() const;
82   const ListOfWidgets&         widgets() const;
83   ListOfWidgets&               changeWidgets();
84   QtxDialog*                   dlg() const;
85
86   virtual QFrame*              buildFrame() = 0;
87           QFrame*              buildStdFrame();
88   virtual void                 retrieveParams() const = 0;
89   virtual QString              storeParams() const = 0;
90   virtual bool                 stdParams( ListOfStdParams& ) const;
91   bool                         getStdParamFromDlg( ListOfStdParams& ) const;
92   static  QString              stdParamValues( const ListOfStdParams& );
93   virtual void                 attuneStdWidget( QWidget*, const int ) const;
94   virtual QWidget*             getCustomWidget( const StdParam&, 
95                                                 QWidget*, const int ) const;
96   virtual bool                 getParamFromCustomWidget( StdParam&, QWidget* ) const;
97   virtual void                 valueChanged( QWidget* );
98   virtual QString              caption() const;
99   virtual QPixmap              icon() const;
100   virtual QString              type() const;
101
102 protected slots:
103   virtual void                 onValueChanged();
104
105 private slots:
106   virtual void                 onDialogFinished( int );
107
108 private:
109   bool                         editHypothesis( SMESH::SMESH_Hypothesis_ptr,
110                                                const QString&, QWidget* );
111
112 private:
113   SMESH::SMESH_Hypothesis_var  myHypo, myInitParamsHypo;
114   QString                      myHypName;
115   QString                      myHypType;
116   ListOfWidgets                myParamWidgets;
117   bool                         myIsCreate;
118   QtxDialog*                   myDlg;
119   QEventLoop*                  myEventLoop;
120 };
121
122 class SMESHGUI_HypothesisDlg : public QtxDialog
123 {
124   Q_OBJECT
125
126 public:
127   SMESHGUI_HypothesisDlg( SMESHGUI_GenericHypothesisCreator*, QWidget* );
128   virtual ~SMESHGUI_HypothesisDlg();
129
130   void                                 setHIcon( const QPixmap& );
131   void                                 setCustomFrame( QFrame* );
132   void                                 setType( const QString& );
133
134 protected slots:
135   virtual void                         accept();
136   virtual void                         reject();
137   void                                 onHelp(); 
138
139 private:
140   SMESHGUI_GenericHypothesisCreator*   myCreator;
141   QLabel*                              myIconLabel;
142   QLabel*                              myTypeLabel;
143   QString                              myHelpFileName;
144 };
145
146 /*!
147  * \brief Class containing information about hypothesis
148 */
149 class HypothesisData
150 {
151 public:
152   HypothesisData( const QString&, const QString&, const QString&,
153                   const QString&, const QString&, const QString&,
154                   const QList<int>&, const bool,
155                   const QStringList&, const QStringList&,
156                   const QStringList&, const QStringList&,
157                   const bool=true, const bool supportSub=false );
158
159   QString TypeName;        //!< hypothesis type name
160   QString PluginName;      //!< plugin name
161   QString ServerLibName;   //!< server library name
162   QString ClientLibName;   //!< client library name
163   QString Label;           //!< label
164   QString IconId;          //!< icon identifier
165   QList<int> Dim;          //!< list of supported dimensions (see SMESH::Dimension enumeration)
166   bool IsAux;              //!< TRUE if given hypothesis is auxiliary one, FALSE otherwise
167   bool IsNeedGeometry;     //!< TRUE if the algorithm works with shapes only, FALSE otherwise
168   bool IsSupportSubmeshes; //!< TRUE if the algo building all-dim elems supports submeshes
169
170   // for algorithm only: dependencies algo <-> algo and algo -> hypos
171   QStringList NeededHypos;  //!< list of obligatory hypotheses
172   QStringList OptionalHypos;//!< list of optional hypotheses
173   QStringList InputTypes;   //!< list of element types required as a prerequisite
174   QStringList OutputTypes;  //!< list of types of generated elements
175 };
176
177 /*!
178  * \brief Class containing set of hypotheses
179  *
180  * Actually it contains list of hypo types
181  */
182 class HypothesesSet
183 {
184 public:
185   HypothesesSet( const QString& );
186   HypothesesSet( const QString&, const QStringList&, const QStringList& );
187
188   QString     HypoSetName;
189   QStringList HypoList, AlgoList;
190 };
191
192 #endif // SMESHGUI_HYPOTHESES_H