Salome HOME
Merge from V6_main 01/04/2013
[modules/homard.git] / src / HOMARDGUI / MonEditFile.h
1 // Copyright (C) 2011-2013  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 #ifndef MON_EDITFILE_H
21 #define MON_EDITFILE_H
22
23
24 #include <SALOMEconfig.h>
25 #include "SALOME_Selection.h"
26 #include <SalomeApp_Module.h>
27
28 #include CORBA_CLIENT_HEADER(SALOMEDS_Attributes)
29 #include CORBA_CLIENT_HEADER(HOMARD_Gen)
30 #include CORBA_CLIENT_HEADER(HOMARD_Cas)
31
32 #include "EditFile.h"
33 #include <QWidget>
34
35 class QListBox;
36 class QDialog;
37
38 class MonEditFile : public QWidget, public Ui_EditFile
39 {
40     Q_OBJECT
41
42 public:
43     MonEditFile( QWidget* parent,  bool modal,
44                  HOMARD::HOMARD_Gen_var myHomardGen,
45                  QString FileName );
46     ~MonEditFile();
47     int _codret ;
48
49 protected :
50
51     HOMARD::HOMARD_Gen_var _myHomardGen;
52     QString _aFileName ;
53
54     virtual void InitConnect();
55     virtual void EditText();
56
57 public slots:
58     virtual void PushOnPrint();
59
60 };
61
62 #endif // MON_EDITFILE_H