Salome HOME
Update mail address
[modules/geom.git] / src / BuildGUI / BuildGUI_CompoundDlg.cxx
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   : BuildGUI_CompoundDlg.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "BuildGUI_CompoundDlg.h"
30 #include "GEOMImpl_Types.hxx"
31
32 #include "SUIT_Session.h"
33 #include "SalomeApp_Application.h"
34 #include "LightApp_SelectionMgr.h"
35
36 #include <qlabel.h>
37
38 //=================================================================================
39 // class    : BuildGUI_CompoundDlg()
40 // purpose  : Constructs a BuildGUI_CompoundDlg which is a child of 'parent', with the 
41 //            name 'name' and widget flags set to 'f'.
42 //            The dialog will by default be modeless, unless you set 'modal' to
43 //            TRUE to construct a modal dialog.
44 //=================================================================================
45 BuildGUI_CompoundDlg::BuildGUI_CompoundDlg(GeometryGUI* theGeometryGUI, QWidget* parent,
46                                            const char* name, bool modal, WFlags fl)
47   :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, WStyle_Customize |
48                      WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu)
49 {
50   QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_BUILD_COMPOUND")));
51   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
52
53   setCaption(tr("GEOM_COMPOUND_TITLE"));
54
55   /***************************************************************/
56   GroupConstructors->setTitle(tr("GEOM_COMPOUND"));
57   RadioButton1->setPixmap(image0);
58   RadioButton2->close(TRUE);
59   RadioButton3->close(TRUE);
60
61   GroupShapes = new DlgRef_1Sel_QTD(this, "GroupShapes");
62   GroupShapes->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
63   GroupShapes->TextLabel1->setText(tr("GEOM_OBJECTS"));
64   GroupShapes->PushButton1->setPixmap(image1);
65   GroupShapes->LineEdit1->setReadOnly( true );
66
67   Layout1->addWidget(GroupShapes, 2, 0);
68   /***************************************************************/
69
70   setHelpFileName("compound.htm");
71
72   /* Initialisations */
73   Init();
74 }
75
76
77 //=================================================================================
78 // function : ~BuildGUI_CompoundDlg()
79 // purpose  : Destroys the object and frees any allocated resources
80 //=================================================================================
81 BuildGUI_CompoundDlg::~BuildGUI_CompoundDlg()
82 {
83   // no need to delete child widgets, Qt does it all for us
84 }
85
86
87 //=================================================================================
88 // function : Init()
89 // purpose  :
90 //=================================================================================
91 void BuildGUI_CompoundDlg::Init()
92 {
93   /* init variables */
94   myEditCurrentArgument = GroupShapes->LineEdit1;
95   GroupShapes->LineEdit1->setReadOnly( true );
96   
97   myOkShapes = false;
98
99   /* signals and slots connections */
100   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
101   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
102   connect(GroupShapes->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));  
103   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
104           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
105
106   globalSelection( GEOM_ALLSHAPES );
107
108   initName( tr( "GEOM_COMPOUND" ) );
109 }
110
111
112 //=================================================================================
113 // function : ClickOnOk()
114 // purpose  :
115 //=================================================================================
116 void BuildGUI_CompoundDlg::ClickOnOk()
117 {
118   if ( ClickOnApply() )
119     ClickOnCancel();
120 }
121
122
123 //=================================================================================
124 // function : ClickOnApply()
125 // purpose  :
126 //=================================================================================
127 bool BuildGUI_CompoundDlg::ClickOnApply()
128 {
129   if ( !onAccept() )
130     return false;
131
132   initName();
133   return true;
134 }
135
136
137 //=================================================================================
138 // function : SelectionIntoArgument()
139 // purpose  : Called when selection as changed or other case
140 //=================================================================================
141 void BuildGUI_CompoundDlg::SelectionIntoArgument()
142 {
143   myEditCurrentArgument->setText( "" );
144   QString aString = ""; /* name of selection */
145
146   myOkShapes = false;
147   int nbSel = GEOMBase::GetNameOfSelectedIObjects( selectedIO(), aString, true );
148   if ( nbSel == 0 ) 
149     return;
150   if ( nbSel != 1 )
151     aString = QString( "%1_objects").arg( nbSel );
152   
153   GEOMBase::ConvertListOfIOInListOfGO( selectedIO(), myShapes, true );
154   myEditCurrentArgument->setText( aString );
155   myOkShapes = true;
156 }
157
158
159 //=================================================================================
160 // function : SetEditCurrentArgument()
161 // purpose  :
162 //=================================================================================
163 void BuildGUI_CompoundDlg::SetEditCurrentArgument()
164 {
165   QPushButton* send = (QPushButton*)sender();
166   if (send != GroupShapes->PushButton1)
167     return;
168   
169   myEditCurrentArgument = GroupShapes->LineEdit1;
170   
171   myEditCurrentArgument->setFocus();
172   SelectionIntoArgument();
173 }
174
175
176 //=================================================================================
177 // function : ActivateThisDialog()
178 // purpose  :
179 //=================================================================================
180 void BuildGUI_CompoundDlg::ActivateThisDialog()
181 {
182   GEOMBase_Skeleton::ActivateThisDialog();
183   globalSelection( GEOM_ALLSHAPES );
184   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
185           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
186 }
187
188
189 //=================================================================================
190 // function : enterEvent()
191 // purpose  :
192 //=================================================================================
193 void BuildGUI_CompoundDlg::enterEvent(QEvent* e)
194 {
195   if ( !GroupConstructors->isEnabled() )
196     ActivateThisDialog(); 
197 }
198
199 //=================================================================================
200 // function : createOperation
201 // purpose  :
202 //=================================================================================
203 GEOM::GEOM_IOperations_ptr BuildGUI_CompoundDlg::createOperation()
204 {
205   return getGeomEngine()->GetIShapesOperations( getStudyId() );
206 }
207
208 //=================================================================================
209 // function : isValid
210 // purpose  :
211 //=================================================================================
212 bool BuildGUI_CompoundDlg::isValid( QString& )
213 {
214   return myOkShapes;
215 }
216
217 //=================================================================================
218 // function : execute
219 // purpose  :
220 //=================================================================================
221 bool BuildGUI_CompoundDlg::execute( ObjectList& objects )
222 {
223   GEOM::GEOM_Object_var anObj;
224
225   anObj = GEOM::GEOM_IShapesOperations::_narrow( getOperation() )->MakeCompound( myShapes );
226
227   if ( !anObj->_is_nil() )
228     objects.push_back( anObj._retn() );
229
230   return true;
231 }