Salome HOME
*** empty log message ***
[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 // File   : GEOMBase_Skeleton.h
23 // Author : Damine COQUERET, Open CASCADE S.A.S.
24 //
25
26 #ifndef GEOMBASE_SKELETON_H
27 #define GEOMBASE_SKELETON_H
28
29 #include "GEOM_GEOMBase.hxx"
30 #include "GEOMBase_Helper.h"
31
32 #include <QDialog>
33
34 class GeometryGUI;
35 class DlgRef_Skeleton;
36 class QDoubleSpinBox;
37 class QLineEdit;
38 class QButtonGroup;
39 class QPushButton;
40
41 class GEOMBASE_EXPORT GEOMBase_Skeleton : public QDialog, public GEOMBase_Helper
42 {
43   Q_OBJECT
44
45 public:
46     GEOMBase_Skeleton( GeometryGUI*, QWidget* = 0, const char* = 0, bool = false, Qt::WindowFlags = 0 );
47     ~GEOMBase_Skeleton();
48
49 private:
50     void Init();
51
52 protected:
53     void                initSpinBox( QDoubleSpinBox*, double, double, double = 0.1, int = 3 );
54     
55     void                closeEvent( QCloseEvent* );
56     void                keyPressEvent( QKeyEvent* );
57
58     /*! initialize "Name" field with a string "thePrefix_X" (Vertex_3)
59      */
60     void                initName( const QString& = QString() );
61
62     /*! returns contents of "Name" field
63      */
64     virtual const char* getNewObjectName() const;
65
66     /*! returns id of a selected "constructor" radio button or '-1' in case of error
67      */
68     int                 getConstructorId() const;
69
70     void                setHelpFileName( const QString& );
71
72     DlgRef_Skeleton*    mainFrame();
73     QWidget*            centralWidget();
74     QPushButton*        buttonCancel() const;
75     QPushButton*        buttonOk() const;
76     QPushButton*        buttonApply() const;
77     QPushButton*        buttonHelp() const;
78
79 protected:
80     QLineEdit*          myEditCurrentArgument; //!< Current LineEdit
81     GeometryGUI*        myGeomGUI;             //!< reference GEOM GUI
82     QString             myHelpFileName;        //!< Associated HTML help file name
83     
84     QButtonGroup*       myRBGroup;             //!< radio button group
85     DlgRef_Skeleton*    myMainFrame;           //!< dialog box's mainframe widgetx
86
87 protected slots:
88     virtual void        ClickOnCancel();
89     void                LineEditReturnPressed();
90     void                DeactivateActiveDialog();
91     void                ActivateThisDialog();
92     void                ClickOnHelp();
93
94 signals:
95     void                constructorsClicked( int );
96 };
97
98 #endif // GEOMBASE_SKELETON_H