Salome HOME
6902f3661b67f3b59a2e9c38facd87f9d1d0d7d3
[modules/geom.git] / src / GEOMBase / GEOMBase_Skeleton.h
1 // Copyright (C) 2007-2020  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, or (at your option) any later version.
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_DlgSkeleton.h"
32 #include "GEOMBase_Helper.h"
33
34 #include <QDialog>
35
36 class SalomeApp_DoubleSpinBox;
37 class GeometryGUI;
38 class GEOMBase_DlgSkeleton;
39 class QSpinBox;
40 class QDoubleSpinBox;
41 class QLineEdit;
42 class QButtonGroup;
43 class QPushButton;
44
45 #ifndef COORD_MIN
46 #  define COORD_MIN -1e+15
47 #  define COORD_MAX +1e+15
48 #  define MAX_NUMBER 100000
49 #  define DBL_DIGITS_DISPLAY 16
50 #endif // COORD_MIN
51
52 class GEOMBASE_EXPORT GEOMBase_Skeleton : public QDialog, public GEOMBase_Helper
53 {
54   Q_OBJECT
55
56 public:
57     GEOMBase_Skeleton( GeometryGUI*, QWidget* = 0, bool = false, Qt::WindowFlags = 0 );
58     ~GEOMBase_Skeleton();
59
60 private:
61     void Init();
62
63 protected:
64     void                initSpinBox( QSpinBox*, int, int, int = 1 );
65     void                initSpinBox( SalomeApp_DoubleSpinBox*, double, double, double = 0.1, const char* = "length_precision" );
66     
67     void                updateAttributes( GEOM::GEOM_Object_ptr, const QStringList& );
68
69     void                closeEvent( QCloseEvent* );
70     void                keyPressEvent( QKeyEvent* );
71
72     /*! initialize "Name" field with a string "thePrefix_X" (Vertex_3)
73      */
74     void                initName( const QString& = QString() );
75
76     /*! returns contents of "Name" field
77      */
78     virtual QString getNewObjectName (int CurrObj = -1) const;
79
80     /*! returns id of a selected "constructor" radio button or '-1' in case of error
81      */
82     int                 getConstructorId() const;
83     /*! set selected "constructor" radio button id
84      */
85     void                setConstructorId( const int );
86     /*! unset selection on all "constructor" radio buttons
87      */
88     void                unsetConstructorId();
89
90     void                showOnlyPreviewControl();
91     
92     void                setHelpFileName( const QString& );
93
94     GEOMBase_DlgSkeleton* mainFrame();
95     QWidget*            centralWidget();
96     QPushButton*        buttonCancel() const;
97     QPushButton*        buttonOk() const;
98     QPushButton*        buttonApply() const;
99     QPushButton*        buttonHelp() const;
100
101 protected:
102     QLineEdit*          myEditCurrentArgument; //!< Current LineEdit
103     GeometryGUI*        myGeomGUI;             //!< reference GEOM GUI
104     QString             myHelpFileName;        //!< Associated HTML help file name
105     
106     QButtonGroup*       myRBGroup;             //!< radio button group
107     GEOMBase_DlgSkeleton*    myMainFrame;      //!< dialog box's mainframe widget
108     QString             myHelpContext;         //!< Help context, needed for the customization 
109                                                //!< path where located plugins help HTML pages
110
111 protected slots:
112     virtual void        ClickOnCancel();
113     virtual void        processPreview();
114     void                LineEditReturnPressed();
115     void                DeactivateActiveDialog();
116     void                ActivateThisDialog();
117     virtual void        ClickOnHelp();
118
119 signals:
120     void                constructorsClicked( int );
121 };
122
123 #endif // GEOMBASE_SKELETON_H