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