Salome HOME
Update mail address
[modules/geom.git] / src / GEOMBase / GEOMBase_Skeleton.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  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 //
23 //
24 //  File   : GEOMBase_Skeleton.h
25 //  Author : Damine COQUERET
26 //  Module : GEOM
27
28 #ifndef GEOMBASE_SKELETON_H
29 #define GEOMBASE_SKELETON_H
30
31 #include "DlgRef_Skeleton_QTD.h"
32
33 #include "GEOMBase.h"
34 #include "GEOMBase_Helper.h"
35 #include "GeometryGUI.h"
36
37 #include <qwidget.h>
38 #include <qgroupbox.h>
39 #include <qlineedit.h>
40 #include <qlayout.h>
41 #include <qpushbutton.h>
42 #include <qradiobutton.h>
43 #include <qbuttongroup.h>
44 //#if defined WNT
45 //#include <SALOME_WNT.hxx>
46 //#else
47 //#define SALOME_WNT_EXPORT
48 //#endif
49 #if defined WNT && defined WIN32 && defined SALOME_WNT_EXPORTS
50 #define GEOMBASE_WNT_EXPORT __declspec( dllexport )
51 #else
52 #define GEOMBASE_WNT_EXPORT
53 #endif
54
55 class GEOMBASE_WNT_EXPORT GEOMBase_Skeleton : public DlgRef_Skeleton_QTD, public GEOMBase_Helper
56 {
57     Q_OBJECT
58
59 public:
60     GEOMBase_Skeleton(GeometryGUI* theGeometryGUI, QWidget* parent = 0,
61                       const char* name = 0, bool modal = FALSE, WFlags fl = 0);
62     ~GEOMBase_Skeleton();
63
64 private:
65     void Init();
66
67 protected:
68     void closeEvent(QCloseEvent* e);
69
70     /*! initialize "Name" field with a string "thePrefix_X" (Vertex_3)
71      */
72     void initName( const char* thePrefix = 0 );
73
74     /*! returns contents of "Name" field
75      */
76     virtual const char* getNewObjectName() const;
77
78     /*! returns id of a selected "constructor" radio button or '-1' in case of error
79      */
80     int getConstructorId() const;
81
82     void setHelpFileName( const QString& );
83
84     QLineEdit* myEditCurrentArgument; //!< Current LineEdit
85     GeometryGUI* myGeomGUI;           //!< reference GEOM GUI
86     QString myHelpFileName;
87
88 protected slots:
89     void ClickOnCancel();
90     void LineEditReturnPressed();
91     void DeactivateActiveDialog();
92     void ActivateThisDialog();
93     void ClickOnHelp();
94 };
95
96 #endif // GEOMBASE_SKELETON_H