Salome HOME
SMH: Merged GEOM (NEWGUI, HEAD, POLYWORK)
[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                         bool modal = FALSE);
48   ~BlocksGUI_ExplodeDlg();
49
50 protected:
51   // redefined from GEOMBase_Helper
52   virtual GEOM::GEOM_IOperations_ptr createOperation();
53   virtual bool                       isValid (QString& msg);
54   virtual bool                       execute (ObjectList& objects);
55   virtual GEOM::GEOM_Object_ptr      getFather(GEOM::GEOM_Object_ptr theObj);
56
57 private:
58   void Init();
59   void enterEvent (QEvent* e);
60
61   void activateSelection();
62
63   void updateButtonState();
64   bool isAllSubShapes() const;
65   int  shapeType() const;
66
67   void clearTemporary();
68
69 private:
70   int                        myConstructorId;
71
72   CORBA::Long                myNbBlocks;
73   GEOM::GEOM_Object_var      myObject;
74
75   ObjectList                 myTmpObjs;
76
77   QFrame*                    myGrp1;
78
79   QPushButton*               mySelBtn;
80   QLineEdit*                 mySelName;
81
82   DlgRef_SpinBox*            mySpinBoxMin;
83   DlgRef_SpinBox*            mySpinBoxMax;
84
85   QTextEdit*                 myBlocksNb;
86
87   QCheckBox*                 myCheckBtn;
88
89 private slots:
90   void ClickOnOk();
91   bool ClickOnApply();
92   void ActivateThisDialog();
93   void ConstructorsClicked (int constructorId);
94
95   void SelectionIntoArgument();
96   void SetEditCurrentArgument();
97
98   void SubShapeToggled();
99
100   void ValueChangedInSpinBox (double newValue);
101 };
102
103 #endif // DIALOGBOX_BLOCK_EXPLODE_H