Salome HOME
Merging with WPdev
[modules/geom.git] / src / MeasureGUI / MeasureGUI_CheckCompoundOfBlocksDlg.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.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22 //
23 //
24 //  File   : MeasureGUI_CheckCompoundOfBlocksDlg.h
25 //  Author : VKN
26 //  Module : GEOM
27
28 #ifndef DIALOGBOX_CHECKCOMPOUNDOFBLOCKSDLG_H
29 #define DIALOGBOX_CHECKCOMPOUNDOFBLOCKSDLG_H
30
31 #include "GEOM_MeasureGUI.hxx"
32
33 #include "GEOMBase_Skeleton.h"
34
35 class MeasureGUI_1Sel1TextView_QTD;
36 class QListBox;
37 class QLabel;
38
39 //=================================================================================
40 // class    : MeasureGUI_CheckCompoundOfBlocksDlg
41 // purpose  :
42 //=================================================================================
43 class GEOM_MEASUREGUI_EXPORT MeasureGUI_CheckCompoundOfBlocksDlg : public GEOMBase_Skeleton
44 {
45     Q_OBJECT
46
47 public:
48     MeasureGUI_CheckCompoundOfBlocksDlg(GeometryGUI* GUI, QWidget* theParent);
49     ~MeasureGUI_CheckCompoundOfBlocksDlg();
50
51 protected:
52     // redefined from GEOMBase_Helper and GEOMBase_Skeleton
53     virtual GEOM::GEOM_IOperations_ptr  createOperation();
54     virtual bool                        isValid( QString& msg );
55     virtual bool                        execute( ObjectList& objects );
56     virtual void                        processObject();
57
58 private slots:
59     void ClickOnOk();
60     bool ClickOnApply();
61     void ActivateThisDialog();
62     void LineEditReturnPressed();
63     void SelectionIntoArgument();
64     void SetEditCurrentArgument();
65
66     void onErrorsListSelectionChanged();
67     void onSubShapesListSelectionChanged();
68
69 private:
70     void                          Init();
71     void                          enterEvent( QEvent* e );
72     bool                          getBCErrors( bool& theIsCompoundOfBlocks,
73                                                GEOM::GEOM_IBlocksOperations::BCErrors& theErrors);
74     void                          activateSelection();
75
76 private:
77     GEOM::GEOM_Object_var         myObj;
78     MeasureGUI_1Sel1TextView_QTD* myGrp;
79
80     QLabel*                       myErrorsLbl;
81     QListBox*                     myErrorsLBox;
82     QLabel*                       mySubShapesLbl;
83     QListBox*                     mySubShapesLBox;
84 };
85
86 #endif // DIALOGBOX_CHECKCOMPOUNDOFBLOCKSDLG_H