Salome HOME
73c44136ca0506e7874dfbf97e16b72485f68d8e
[modules/geom.git] / src / BlocksGUI / BlocksGUI_ExplodeDlg.h
1 //  GEOM GEOMGUI : GUI for Geometry component
2 //
3 //  Copyright (C) 2003  CEA
4 //
5 //  This library is free software; you can redistribute it and/or
6 //  modify it under the terms of the GNU Lesser General Public
7 //  License as published by the Free Software Foundation; either
8 //  version 2.1 of the License.
9 //
10 //  This library is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 //  Lesser General Public License for more details.
14 //
15 //  You should have received a copy of the GNU Lesser General Public
16 //  License along with this library; if not, write to the Free Software
17 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
18 //
19 //  See http://www.salome-platform.org or email : webmaster.salome@opencascade.org
20 //
21 //
22 //
23 //  File   : BlocksGUI_ExplodeDlg.h
24 //  Author : Julia DOROVSKIKH
25 //  Module : GEOM
26 //  $Header$
27
28 #ifndef DIALOGBOX_BLOCK_EXPLODE_H
29 #define DIALOGBOX_BLOCK_EXPLODE_H
30
31 #include "GEOMBase_Skeleton.h"
32
33 class DlgRef_SpinBox;
34 class QTextEdit;
35 class QCheckBox;
36
37 //=================================================================================
38 // class    : BlocksGUI_ExplodeDlg
39 // purpose  :
40 //=================================================================================
41 class BlocksGUI_ExplodeDlg : public GEOMBase_Skeleton
42 {
43   Q_OBJECT
44
45 public:
46   BlocksGUI_ExplodeDlg (QWidget* parent,
47                         SALOME_Selection* Sel,
48                         bool modal = FALSE);
49   ~BlocksGUI_ExplodeDlg();
50
51 protected:
52   // redefined from GEOMBase_Helper
53   virtual GEOM::GEOM_IOperations_ptr createOperation();
54   virtual bool                       isValid (QString& msg);
55   virtual bool                       execute (ObjectList& objects);
56   virtual GEOM::GEOM_Object_ptr      getFather(GEOM::GEOM_Object_ptr theObj);
57
58 private:
59   void Init();
60   void enterEvent (QEvent* e);
61
62   void activateSelection();
63
64   void updateButtonState();
65   bool isAllSubShapes() const;
66   int  shapeType() const;
67
68   void clearTemporary();
69
70 private:
71   int                        myConstructorId;
72
73   CORBA::Long                myNbBlocks;
74   GEOM::GEOM_Object_var      myObject;
75
76   ObjectList                 myTmpObjs;
77
78   QFrame*                    myGrp1;
79
80   QPushButton*               mySelBtn;
81   QLineEdit*                 mySelName;
82
83   DlgRef_SpinBox*            mySpinBoxMin;
84   DlgRef_SpinBox*            mySpinBoxMax;
85
86   QTextEdit*                 myBlocksNb;
87
88   QCheckBox*                 myCheckBtn;
89
90 private slots:
91   void ClickOnOk();
92   bool ClickOnApply();
93   void ActivateThisDialog();
94   void ConstructorsClicked (int constructorId);
95
96   void SelectionIntoArgument();
97   void SetEditCurrentArgument();
98
99   void SubShapeToggled();
100
101   void ValueChangedInSpinBox (double newValue);
102 };
103
104 #endif // DIALOGBOX_BLOCK_EXPLODE_H