]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMGUI/GeometryGUI_CutDlg.h
Salome HOME
NRI : Merge from V1_2.
[modules/geom.git] / src / GEOMGUI / GeometryGUI_CutDlg.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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : GeometryGUI_CutDlg.h
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #ifndef DIALOGBOX_CUT_H
30 #define DIALOGBOX_CUT_H
31
32 #include "SALOME_Selection.h"
33 #include "GEOM_ShapeTypeFilter.hxx"
34
35 #include <BRepAlgoAPI_Cut.hxx>
36
37 #include <qvariant.h>
38 #include <qdialog.h>
39
40 class QVBoxLayout; 
41 class QHBoxLayout; 
42 class QGridLayout; 
43 class QButtonGroup;
44 class QFrame;
45 class QGroupBox;
46 class QLabel;
47 class QLineEdit;
48 class QPushButton;
49 class QRadioButton;
50 class GeometryGUI;
51
52
53 //=================================================================================
54 // class    : GeometryGUI_CutDlg
55 // purpose  :
56 //=================================================================================
57 class GeometryGUI_CutDlg : public QDialog
58
59     Q_OBJECT
60
61 public:
62     GeometryGUI_CutDlg( QWidget* parent = 0, const char* name = 0, SALOME_Selection* Sel = 0, bool modal = FALSE, WFlags fl = 0 );
63     ~GeometryGUI_CutDlg();
64
65 private:
66
67     void Init( SALOME_Selection* Sel ) ;
68     void closeEvent( QCloseEvent* e ) ;
69     void enterEvent ( QEvent * ) ;                /* mouse enter the QWidget */
70
71     GEOM::GEOM_Gen_var myGeom ;                /* Current GeomI object */
72     GeometryGUI*          myGeomGUI ;             /* Current GeomGUI object */
73     SALOME_Selection*     mySelection ;           /* User shape selection */
74     TopoDS_Shape          myShape1 ;              /* topology used to fuse */
75     TopoDS_Shape          myShape2 ;              /* topology used to fuse */
76     GEOM::GEOM_Shape_var        myGeomShape1 ;          /* is myShape1 */
77     GEOM::GEOM_Shape_var        myGeomShape2 ;          /* is myShape2 */
78     bool                  myOkShape1 ;
79     bool                  myOkShape2 ;            /* to check when arguments are defined */
80     int                   myConstructorId ;       /* Current constructor id = radio button id */
81     QLineEdit*            myEditCurrentArgument;  /* Current LineEdit */
82
83     QButtonGroup* GroupConstructors;
84     QRadioButton* Constructor1;
85
86     QGroupBox* GroupConstructor1;
87     QLineEdit* LineEditC1A1Shape;
88     QLineEdit* LineEditC1A2Shape;
89     QPushButton* SelectButtonC1A1Shape;
90     QPushButton* SelectButtonC1A2Shape;
91     QLabel* TextLabelC1A2Shape;
92     QLabel* TextLabelC1A1Shape;
93
94     QGroupBox* GroupButtons;
95     QPushButton* buttonApply;
96     QPushButton* buttonOk;
97     QPushButton* buttonCancel;
98
99 private slots:
100
101     void ConstructorsClicked(int constructorId);
102     void ClickOnOk();
103     void ClickOnCancel();
104     void ClickOnApply();
105     void SetEditCurrentArgument() ;
106     void SelectionIntoArgument() ;
107     void LineEditReturnPressed() ;
108     void DeactivateActiveDialog() ;
109     void ActivateThisDialog() ;
110
111 protected:
112     QGridLayout* GeometryGUI_CutDlgLayout;
113     QGridLayout* GroupConstructorsLayout;
114     QGridLayout* GroupButtonsLayout;
115     QGridLayout* GroupConstructor1Layout;
116 };
117
118 #endif // DIALOGBOX_CUT_H