]> SALOME platform Git repositories - modules/geom.git/blob - src/BooleanGUI/BooleanGUI_Dialog.cxx
Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/geom.git] / src / BooleanGUI / BooleanGUI_Dialog.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   : BooleanGUI_Dialog.cxx
25 //  Author : Lucien PIGNOLONI
26 //  Module : GEOM
27 //  $Header$
28
29 #include "BooleanGUI_Dialog.h"
30 #include "BooleanGUI.h"
31 #include "DlgRef_2Sel_QTD.h"
32
33 #include "SUIT_Session.h"
34 #include "SalomeApp_Application.h"
35 #include "LightApp_SelectionMgr.h"
36
37 #include <qlabel.h>
38
39 using namespace std;
40
41 //=================================================================================
42 // class    : BooleanGUI_Dialog()
43 // purpose  : Constructs a BooleanGUI_Dialog which is a child of 'parent', with the
44 //            name 'name' and widget flags set to 'f'.
45 //            The dialog will by default be modeless, unless you set 'modal' to
46 //            TRUE to construct a modal dialog.
47 //=================================================================================
48 BooleanGUI_Dialog::BooleanGUI_Dialog( const int theOperation, GeometryGUI* theGeometryGUI,
49                                       QWidget* parent, const char* name, bool modal, WFlags fl)
50   :GEOMBase_Skeleton(theGeometryGUI, parent, name, modal, fl),
51    myOperation( theOperation )
52 {
53   QPixmap image0;
54   QString aTitle, aCaption;
55   switch ( myOperation )
56   {
57     case BooleanGUI::COMMON:
58       image0 = QPixmap( SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_COMMON")));
59       aTitle = tr("GEOM_COMMON");
60       aCaption = tr("GEOM_COMMON_TITLE");
61       setHelpFileName("common_operation_page.html");
62       break;
63     case BooleanGUI::CUT:
64       image0 = QPixmap( SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_CUT")));
65       aTitle = tr("GEOM_CUT");
66       aCaption = tr("GEOM_CUT_TITLE");
67       setHelpFileName("cut_operation_page.html");
68       break;
69     case BooleanGUI::FUSE:
70       image0 = QPixmap( SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_FUSE")));
71       aTitle = tr("GEOM_FUSE");
72       aCaption = tr("GEOM_FUSE_TITLE");
73       setHelpFileName("fuse_operation_page.html");
74       break;
75     case BooleanGUI::SECTION:
76       image0 = QPixmap( SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_SECTION")));
77       aTitle = tr("GEOM_SECTION");
78       aCaption = tr("GEOM_SECTION_TITLE");
79       setHelpFileName("section_opeartion_page.html");
80       break;
81   }
82   QPixmap image1(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_SELECT")));
83
84   setCaption( aCaption );
85
86   /***************************************************************/
87   GroupConstructors->setTitle( aTitle );
88   RadioButton1->setPixmap( image0 );
89   RadioButton2->close(TRUE);
90   RadioButton3->close(TRUE);
91
92   myGroup = new DlgRef_2Sel_QTD(this, "GroupCommon");
93   myGroup->GroupBox1->setTitle(tr("GEOM_ARGUMENTS"));
94   if ( myOperation != BooleanGUI::CUT )
95   {
96         myGroup->TextLabel1->setText(tr("GEOM_OBJECT_I").arg("1"));
97         myGroup->TextLabel2->setText(tr("GEOM_OBJECT_I").arg("2"));
98   }
99   else
100   {
101         myGroup->TextLabel1->setText(tr("GEOM_MAIN_OBJECT"));
102         myGroup->TextLabel2->setText(tr("GEOM_TOOL_OBJECT"));
103   }
104   
105   myGroup->PushButton1->setPixmap(image1);
106   myGroup->PushButton2->setPixmap(image1);
107   myGroup->LineEdit1->setReadOnly( true );
108   myGroup->LineEdit2->setReadOnly( true );
109
110   Layout1->addWidget(myGroup, 2, 0);
111   /***************************************************************/
112
113   /* Initialisation */
114   Init();
115 }
116
117
118 //=================================================================================
119 // function : ~BooleanGUI_Dialog()
120 // purpose  : Destroys the object and frees any allocated resources
121 //=================================================================================
122 BooleanGUI_Dialog::~BooleanGUI_Dialog()
123 {
124 }
125
126
127 //=================================================================================
128 // function : Init()
129 // purpose  :
130 //=================================================================================
131 void BooleanGUI_Dialog::Init()
132 {
133   /* init variables */
134   myEditCurrentArgument = myGroup->LineEdit1;
135
136    /* signals and slots connections */
137   connect(buttonOk, SIGNAL(clicked()), this, SLOT(ClickOnOk()));
138   connect(buttonApply, SIGNAL(clicked()), this, SLOT(ClickOnApply()));
139
140   connect(myGroup->LineEdit1, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
141   connect(myGroup->LineEdit2, SIGNAL(returnPressed()), this, SLOT(LineEditReturnPressed()));
142
143   connect(myGroup->PushButton1, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
144   connect(myGroup->PushButton2, SIGNAL(clicked()), this, SLOT(SetEditCurrentArgument()));
145
146   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
147           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
148
149   initName( GroupConstructors->title() );
150
151   setTabOrder (RadioButton1, ResultName );
152   setTabOrder (ResultName, myGroup->PushButton1);
153   setTabOrder (myGroup->PushButton1, myGroup->PushButton2);
154   setTabOrder (myGroup->PushButton2, buttonOk);
155   setTabOrder (buttonOk, buttonApply);
156   setTabOrder (buttonApply, buttonCancel);
157   setTabOrder (buttonCancel, buttonHelp);
158
159   RadioButton1->setFocus();
160
161   globalSelection( GEOM_ALLSHAPES );
162 }
163
164
165 //=================================================================================
166 // function : ClickOnOk()
167 // purpose  :
168 //=================================================================================
169 void BooleanGUI_Dialog::ClickOnOk()
170 {
171   if ( ClickOnApply() )
172     ClickOnCancel();
173 }
174
175
176 //=================================================================================
177 // function : ClickOnApply()
178 // purpose  :
179 //=================================================================================
180 bool BooleanGUI_Dialog::ClickOnApply()
181 {
182   if ( !onAccept() )
183     return false;  
184
185   initName();
186   return true;
187 }
188
189
190 //=================================================================================
191 // function : SelectionIntoArgument()
192 // purpose  : Called when selection has changed
193 //=================================================================================
194 void BooleanGUI_Dialog::SelectionIntoArgument()
195 {
196   myEditCurrentArgument->setText( "" );
197
198   if ( IObjectCount() != 1 )
199   {
200     if      ( myEditCurrentArgument == myGroup->LineEdit1 )   myObject1 = GEOM::GEOM_Object::_nil();
201     else if ( myEditCurrentArgument == myGroup->LineEdit2 )   myObject2 = GEOM::GEOM_Object::_nil();
202     return;
203   }
204
205   // nbSel == 1
206   Standard_Boolean aRes = Standard_False;
207   GEOM::GEOM_Object_var aSelectedObject = GEOMBase::ConvertIOinGEOMObject( firstIObject(), aRes );
208   if ( !CORBA::is_nil( aSelectedObject ) && aRes && GEOMBase::IsShape( aSelectedObject ) )
209   {
210     myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
211     if      ( myEditCurrentArgument == myGroup->LineEdit1 )   myObject1 = aSelectedObject;
212     else if ( myEditCurrentArgument == myGroup->LineEdit2 )   myObject2 = aSelectedObject;
213   }
214 }
215
216
217 //=================================================================================
218 // function : SetEditCurrentArgument()
219 // purpose  :
220 //=================================================================================
221 void BooleanGUI_Dialog::SetEditCurrentArgument()
222 {
223   QPushButton* send = (QPushButton*)sender();
224
225   if      ( send == myGroup->PushButton1 ) myEditCurrentArgument = myGroup->LineEdit1;
226   else if ( send == myGroup->PushButton2 ) myEditCurrentArgument = myGroup->LineEdit2;
227
228   myEditCurrentArgument->setFocus();
229   SelectionIntoArgument();
230 }
231
232
233 //=================================================================================
234 // function : LineEditReturnPressed()
235 // purpose  :
236 //=================================================================================
237 void BooleanGUI_Dialog::LineEditReturnPressed()
238 {
239   QLineEdit* send = (QLineEdit*)sender();
240   if ( send == myGroup->LineEdit1 || send == myGroup->LineEdit2 )
241   {
242     myEditCurrentArgument = send;
243     GEOMBase_Skeleton::LineEditReturnPressed();
244   }
245 }
246
247
248 //=================================================================================
249 // function : ActivateThisDialog()
250 // purpose  :
251 //=================================================================================
252 void BooleanGUI_Dialog::ActivateThisDialog()
253 {
254   GEOMBase_Skeleton::ActivateThisDialog();
255   globalSelection( GEOM_ALLSHAPES );
256   connect(((SalomeApp_Application*)(SUIT_Session::session()->activeApplication()))->selectionMgr(), 
257           SIGNAL(currentSelectionChanged()), this, SLOT(SelectionIntoArgument())) ;
258 }
259
260
261 //=================================================================================
262 // function : enterEvent()
263 // purpose  : when mouse enter onto the QWidget
264 //=================================================================================
265 void BooleanGUI_Dialog::enterEvent(QEvent * e)
266 {
267   if ( !GroupConstructors->isEnabled() )
268     ActivateThisDialog();
269 }
270
271 //=================================================================================
272 // function : createOperation
273 // purpose  :
274 //=================================================================================
275 GEOM::GEOM_IOperations_ptr BooleanGUI_Dialog::createOperation()
276 {
277   return getGeomEngine()->GetIBooleanOperations( getStudyId() );
278 }
279
280 //=================================================================================
281 // function : isValid
282 // purpose  :
283 //=================================================================================
284 bool BooleanGUI_Dialog::isValid( QString& msg )
285 {
286   Handle(SALOME_InteractiveObject) IO = firstIObject();
287   Standard_Boolean testResult;
288   GEOM::GEOM_Object_var anObject = GEOMBase::ConvertIOinGEOMObject( IO, testResult );
289   if ( !testResult || anObject->_is_nil() )
290     return false;
291
292   return !CORBA::is_nil( myObject1 ) && !CORBA::is_nil( myObject2 );
293 }
294
295 //=================================================================================
296 // function : execute
297 // purpose  :
298 //=================================================================================
299 bool BooleanGUI_Dialog::execute( ObjectList& objects )
300 {
301   GEOM::GEOM_Object_var anObj;
302  
303   anObj = GEOM::GEOM_IBooleanOperations::_narrow( getOperation() )->MakeBoolean( myObject1, myObject2, myOperation );
304   if ( !anObj->_is_nil() )
305     objects.push_back( anObj._retn() );
306
307   return true;
308 }