Salome HOME
GDD: Check that the PipeTShape is a block if it is required by user
[modules/geom.git] / src / GEOMBase / GEOMBase_Skeleton.h
1 //  Copyright (C) 2007-2010  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // GEOM GEOMGUI : GUI for Geometry component
24 // File   : GEOMBase_Skeleton.h
25 // Author : Damine COQUERET, Open CASCADE S.A.S.
26 //
27 #ifndef GEOMBASE_SKELETON_H
28 #define GEOMBASE_SKELETON_H
29
30 #include "GEOM_GEOMBase.hxx"
31 #include "GEOMBase_Helper.h"
32
33 #include <QDialog>
34
35 class SalomeApp_DoubleSpinBox;
36 class GeometryGUI;
37 class DlgRef_Skeleton;
38 class QSpinBox;
39 class QDoubleSpinBox;
40 class QLineEdit;
41 class QButtonGroup;
42 class QPushButton;
43
44 #ifndef COORD_MIN
45 #  define COORD_MIN -1e+15
46 #  define COORD_MAX +1e+15
47 #  define MAX_NUMBER 100000
48 #  define DBL_DIGITS_DISPLAY 16
49 #endif // COORD_MIN
50
51 class GEOMBASE_EXPORT GEOMBase_Skeleton : public QDialog, public GEOMBase_Helper
52 {
53   Q_OBJECT
54
55 public:
56     GEOMBase_Skeleton( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
57     ~GEOMBase_Skeleton();
58
59 private:
60     void Init();
61
62 protected:
63     void                initSpinBox( QSpinBox*, int, int, int = 1 );
64     void                initSpinBox( SalomeApp_DoubleSpinBox*, double, double, double = 0.1, const char* = "length_precision" );
65     
66     void                updateAttributes( GEOM::GEOM_Object_ptr, const QStringList& );
67
68     void                closeEvent( QCloseEvent* );
69     void                keyPressEvent( QKeyEvent* );
70
71     /*! initialize "Name" field with a string "thePrefix_X" (Vertex_3)
72      */
73     void                initName( const QString& = QString() );
74
75     /*! returns contents of "Name" field
76      */
77     virtual QString getNewObjectName() const;
78
79     /*! returns id of a selected "constructor" radio button or '-1' in case of error
80      */
81     int                 getConstructorId() const;
82     /*! set selected "constructor" radio button id
83      */
84     void                setConstructorId( const int );
85     /*! unset selection on all "constructor" radio buttons
86      */
87     void                unsetConstructorId();
88
89     void                setHelpFileName( const QString& );
90
91     DlgRef_Skeleton*    mainFrame();
92     QWidget*            centralWidget();
93     QPushButton*        buttonCancel() const;
94     QPushButton*        buttonOk() const;
95     QPushButton*        buttonApply() const;
96     QPushButton*        buttonHelp() const;
97
98 protected:
99     QLineEdit*          myEditCurrentArgument; //!< Current LineEdit
100     GeometryGUI*        myGeomGUI;             //!< reference GEOM GUI
101     QString             myHelpFileName;        //!< Associated HTML help file name
102     
103     QButtonGroup*       myRBGroup;             //!< radio button group
104     DlgRef_Skeleton*    myMainFrame;           //!< dialog box's mainframe widgetx
105
106 protected slots:
107     virtual void        ClickOnCancel();
108     void                LineEditReturnPressed();
109     void                DeactivateActiveDialog();
110     void                ActivateThisDialog();
111     void                ClickOnHelp();
112
113 signals:
114     void                constructorsClicked( int );
115 };
116
117 #endif // GEOMBASE_SKELETON_H