Salome HOME
untabify
[modules/geom.git] / src / RepairGUI / RepairGUI_ChangeOrientationDlg.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  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 // GEOM GEOMGUI : GUI for Geometry component
23 // File   : RepairGUI_ChangeOrientationDlg.cxx
24 // Author : Sergey KUUL, Open CASCADE S.A.S. (sergey.kuul@opencascade.com)
25 //
26 #include "RepairGUI_ChangeOrientationDlg.h"
27
28 #include <DlgRef.h>
29 #include <GeometryGUI.h>
30 #include <GEOMBase.h>
31
32 #include <SalomeApp_Application.h>
33 #include <LightApp_SelectionMgr.h>
34 #include <SUIT_Session.h>
35 #include <SUIT_ResourceMgr.h>
36
37 #include <GEOMImpl_Types.hxx>
38
39 #include <TopAbs.hxx>
40
41 //=================================================================================
42 // class    : RepairGUI_ChangeOrientationDlg()
43 // purpose  : Constructs a RepairGUI_ChangeOrientationDlg  which is a child of 'parent',
44 //            with the 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 RepairGUI_ChangeOrientationDlg::RepairGUI_ChangeOrientationDlg( GeometryGUI* theGeometryGUI,
49                                                                 QWidget* parent,
50                                                                 bool modal )
51   : GEOMBase_Skeleton( theGeometryGUI, parent, modal )
52 {
53   //QPixmap image0(SUIT_Session::session()->resourceMgr()->loadPixmap("GEOM",tr("ICON_DLG_SUPRESS_FACE")));
54   QPixmap image0( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_DLG_CHANGE_ORIENTATION" ) ));
55   QPixmap image1( SUIT_Session::session()->resourceMgr()->loadPixmap( "GEOM", tr( "ICON_SELECT" ) ) );
56     
57   setWindowTitle( tr( "GEOM_CHANGE_ORIENTATION_TITLE" ) );
58
59   /***************************************************************/
60   mainFrame()->GroupConstructors->setTitle( tr( "GEOM_CHANGE_ORIENTATION_TITLE" ) );
61   mainFrame()->RadioButton1->setIcon( image0 );
62   mainFrame()->RadioButton2->setAttribute( Qt::WA_DeleteOnClose );
63   mainFrame()->RadioButton2->close();
64   mainFrame()->RadioButton3->setAttribute( Qt::WA_DeleteOnClose );
65   mainFrame()->RadioButton3->close();
66
67   GroupPoints = new DlgRef_1Sel1Check( centralWidget() );
68   GroupPoints->GroupBox1->setTitle( tr( "GEOM_CHANGE_ORIENTATION" ) );
69   GroupPoints->TextLabel1->setText( tr( "GEOM_SELECTED_SHAPE" ) );
70   GroupPoints->CheckButton1->setText( tr( "GEOM_CREATE_COPY" ) );
71   GroupPoints->PushButton1->setIcon( image1 );
72 //  GroupPoints->LineEdit1->setReadOnly( true );
73   
74   QVBoxLayout* layout = new QVBoxLayout( centralWidget() );
75   layout->setMargin( 0 ); layout->setSpacing( 6 );
76   layout->addWidget( GroupPoints );
77
78   setHelpFileName( "change_orientation_operation_page.html" );
79
80   Init();
81 }
82
83
84 //=================================================================================
85 // function : ~RepairGUI_ChangeOrientationDlg()
86 // purpose  : Destroys the object and frees any allocated resources
87 //=================================================================================
88 RepairGUI_ChangeOrientationDlg::~RepairGUI_ChangeOrientationDlg()
89 {
90 }
91
92
93 //=================================================================================
94 // function : Init()
95 // purpose  :
96 //=================================================================================
97 void RepairGUI_ChangeOrientationDlg::Init()
98 {
99   /* init variables */
100   myEditCurrentArgument = GroupPoints->LineEdit1;
101
102   GroupPoints->CheckButton1->setChecked( true );
103
104   myOkObject = false;
105
106   /* signals and slots connections */
107   connect( buttonOk(),    SIGNAL( clicked() ), this, SLOT( ClickOnOk() ) );
108   connect( buttonApply(), SIGNAL( clicked() ), this, SLOT( ClickOnApply() ) );
109
110   connect( GroupPoints->PushButton1,  SIGNAL( clicked() ),       this, SLOT( SetEditCurrentArgument() ) );
111   connect( GroupPoints->LineEdit1,    SIGNAL( returnPressed() ), this, SLOT( LineEditReturnPressed() ) );
112
113   connect( GroupPoints->CheckButton1, SIGNAL( toggled( bool ) ), this, SLOT( CreateCopyModeChanged( bool ) ) );
114
115   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
116            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
117
118   initName( tr( "CHANGE_ORIENTATION_NEW_OBJ_NAME" ) );
119   resize(100,100);
120 }
121
122
123 //=================================================================================
124 // function : ClickOnOk()
125 // purpose  : Same than click on apply but close this dialog.
126 //=================================================================================
127 void RepairGUI_ChangeOrientationDlg::ClickOnOk()
128 {
129   if ( ClickOnApply() )
130     ClickOnCancel();
131 }
132
133
134 //=================================================================================
135 // function : ClickOnApply()
136 // purpose  :
137 //=================================================================================
138 bool RepairGUI_ChangeOrientationDlg::ClickOnApply()
139 {
140 //  if ( !onAccept() )
141   if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
142     return false;
143
144   initName();
145
146   myEditCurrentArgument->setText( "" );
147   
148   return true;
149 }
150
151
152 //=================================================================================
153 // function : SelectionIntoArgument()
154 // purpose  : Called when selection as changed or other case
155 //=================================================================================
156 void RepairGUI_ChangeOrientationDlg::SelectionIntoArgument()
157 {
158   myEditCurrentArgument->setText( "" );
159   QString aName;
160   
161   LightApp_SelectionMgr* aSelMgr = myGeomGUI->getApp()->selectionMgr();
162   SALOME_ListIO aSelList;
163   aSelMgr->selectedObjects(aSelList);
164
165   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
166     if ( aSelList.Extent() != 1 ) {
167       if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
168         myOkObject = false;
169       return;
170     }
171   }
172
173   // nbSel == 1
174   Standard_Boolean testResult = Standard_False;
175   GEOM::GEOM_Object_ptr aSelectedObject =
176     GEOMBase::ConvertIOinGEOMObject( aSelList.First(), testResult );
177   
178   if ( !testResult )
179     return;
180
181   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
182     myObject = aSelectedObject;
183     myOkObject = true;
184   }
185
186   myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
187 }
188
189
190 //=================================================================================
191 // function : SetEditCurrentArgument()
192 // purpose  :
193 //=================================================================================
194 void RepairGUI_ChangeOrientationDlg::SetEditCurrentArgument()
195 {
196   QPushButton* send = (QPushButton*)sender();
197
198   if ( send == GroupPoints->PushButton1 ) {
199     GroupPoints->LineEdit1->setFocus();
200     myEditCurrentArgument = GroupPoints->LineEdit1;
201   }
202   SelectionIntoArgument();
203 }
204
205
206 //=================================================================================
207 // function : LineEditReturnPressed()
208 // purpose  :
209 //=================================================================================
210 void RepairGUI_ChangeOrientationDlg::LineEditReturnPressed()
211 {
212   QLineEdit* send = (QLineEdit*)sender();
213   if ( send == GroupPoints->LineEdit1 ) {
214     myEditCurrentArgument = GroupPoints->LineEdit1;
215     GEOMBase_Skeleton::LineEditReturnPressed();
216   }
217 }
218
219
220 //=================================================================================
221 // function : ActivateThisDialog()
222 // purpose  :
223 //=================================================================================
224 void RepairGUI_ChangeOrientationDlg::ActivateThisDialog()
225 {
226   GEOMBase_Skeleton::ActivateThisDialog();
227   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
228            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
229 }
230
231
232 //=================================================================================
233 // function : enterEvent()
234 // purpose  : Mouse enter onto the dialog to activate it
235 //=================================================================================
236 void RepairGUI_ChangeOrientationDlg::enterEvent( QEvent* )
237 {
238   if ( !mainFrame()->GroupConstructors->isEnabled() )
239     ActivateThisDialog();
240 }
241
242
243 //=================================================================================
244 // function : createOperation
245 // purpose  :
246 //=================================================================================
247 GEOM::GEOM_IOperations_ptr RepairGUI_ChangeOrientationDlg::createOperation()
248 {
249   return getGeomEngine()->GetIHealingOperations( getStudyId() );
250 }
251
252
253 //=================================================================================
254 // function : isValid
255 // purpose  :
256 //=================================================================================
257 bool RepairGUI_ChangeOrientationDlg::isValid( QString& )
258 {
259   return myOkObject;
260 }
261
262
263 //=================================================================================
264 // function : execute
265 // purpose  :
266 //=================================================================================
267 bool RepairGUI_ChangeOrientationDlg::execute( ObjectList& objects )
268 {
269   bool toCreateCopy = GroupPoints->CheckButton1->isChecked();
270
271   GEOM::GEOM_Object_var anObj;
272   GEOM::GEOM_IHealingOperations_var anOper = GEOM::GEOM_IHealingOperations::_narrow( getOperation() );
273   if ( toCreateCopy ) {
274     anObj = anOper->ChangeOrientationCopy( myObject );
275   }
276   else {
277     anObj = anOper->ChangeOrientation( myObject );
278   }
279
280   if ( !anObj->_is_nil() )
281     objects.push_back( anObj._retn() );
282
283   return true;
284 }
285
286
287 //=================================================================================
288 // function :  CreateCopyModeChanged()
289 // purpose  :
290 //=================================================================================
291 void RepairGUI_ChangeOrientationDlg::CreateCopyModeChanged( bool isCreateCopy )
292 {
293   mainFrame()->GroupBoxName->setEnabled( isCreateCopy );
294 }