Salome HOME
PAL6938
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_Hypotheses.h
1 //  SMESH SMESHGUI : GUI for SMESH component
2 //
3 //  Copyright (C) 2003  CEA
4 // 
5 //  This library is free software; you can redistribute it and/or 
6 //  modify it under the terms of the GNU Lesser General Public 
7 //  License as published by the Free Software Foundation; either 
8 //  version 2.1 of the License. 
9 // 
10 //  This library is distributed in the hope that it will be useful, 
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of 
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
13 //  Lesser General Public License for more details. 
14 // 
15 //  You should have received a copy of the GNU Lesser General Public 
16 //  License along with this library; if not, write to the Free Software 
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA 
18 // 
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : SMESHGUI_Hypotheses.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : SMESH
26 //  $Header$
27
28 #ifndef SMESHGUI_Hypotheses_HeaderFile
29 #define SMESHGUI_Hypotheses_HeaderFile
30
31 #include <SALOMEconfig.h>
32 #include CORBA_SERVER_HEADER(SMESH_Hypothesis)
33
34 // QT Includes
35 #include <qstring.h>
36 #include <qwidget.h>
37
38 //=================================================================================
39 // class    : SMESHGUI_GenericHypothesisCreator
40 // purpose  :
41 //=================================================================================
42 class SMESHGUI_GenericHypothesisCreator
43 {
44   public:
45   virtual void CreateHypothesis (const bool isAlgo, QWidget* parent) = 0;
46   virtual void EditHypothesis (SMESH::SMESH_Hypothesis_ptr theHyp) = 0;
47 };
48
49 //=================================================================================
50 // class    : HypothesisData
51 // purpose  :
52 //=================================================================================
53 class HypothesisData
54 {
55  public:
56   HypothesisData (const QString& aPluginName,
57                   const QString& aServerLibName,
58                   const QString& aClientLibName,
59                   const QString& aLabel,
60                   const QString& anIconId) :
61  PluginName(aPluginName),
62  ServerLibName(aServerLibName),
63  ClientLibName(aClientLibName),
64  Label(aLabel),
65  IconId(anIconId)
66  {};
67
68  QString PluginName;
69  QString ServerLibName;
70  QString ClientLibName;
71  QString Label;
72  QString IconId;
73 };
74
75 #endif