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