Salome HOME
SALOME PAL V1_4_1
[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 CORBA_SERVER_HEADER(SMESH_Hypothesis)
32
33 // QT Includes
34 #include <qstring.h>
35 #include <qwidget.h>
36
37 //=================================================================================
38 // class    : SMESHGUI_GenericHypothesisCreator
39 // purpose  :
40 //=================================================================================
41 class SMESHGUI_GenericHypothesisCreator
42 {
43   public:
44   virtual void CreateHypothesis (const bool isAlgo, QWidget* parent) = 0;
45   virtual void EditHypothesis (SMESH::SMESH_Hypothesis_ptr theHyp) = 0;
46 };
47
48 //=================================================================================
49 // class    : HypothesisData
50 // purpose  :
51 //=================================================================================
52 class HypothesisData
53 {
54  public:
55   HypothesisData (const QString& aPluginName,
56                   const QString& aServerLibName,
57                   const QString& aClientLibName,
58                   const QString& aLabel,
59                   const QString& anIconId) :
60  PluginName(aPluginName),
61  ServerLibName(aServerLibName),
62  ClientLibName(aClientLibName),
63  Label(aLabel),
64  IconId(anIconId)
65  {};
66
67  QString PluginName;
68  QString ServerLibName;
69  QString ClientLibName;
70  QString Label;
71  QString IconId;
72 };
73
74 #endif