Salome HOME
7f1f61d6bdceac81586c770472d5e99964b3a291
[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     void keyPressEvent(QKeyEvent* e);
70
71     /*! initialize "Name" field with a string "thePrefix_X" (Vertex_3)
72      */
73     void initName( const char* thePrefix = 0 );
74
75     /*! returns contents of "Name" field
76      */
77     virtual const char* getNewObjectName() const;
78
79     /*! returns id of a selected "constructor" radio button or '-1' in case of error
80      */
81     int getConstructorId() const;
82
83     void setHelpFileName( const QString& );
84
85     QLineEdit* myEditCurrentArgument; //!< Current LineEdit
86     GeometryGUI* myGeomGUI;           //!< reference GEOM GUI
87     QString myHelpFileName;
88
89 protected slots:
90     void ClickOnCancel();
91     void LineEditReturnPressed();
92     void DeactivateActiveDialog();
93     void ActivateThisDialog();
94     void ClickOnHelp();
95 };
96
97 #endif // GEOMBASE_SKELETON_H