Salome HOME
2f2f4e2a2b910e63f9da8ad84ef3837cd8c7487e
[modules/geom.git] / RepairGUI_ChangeOrientationDlg.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   : RepairGUI_ChangeOrientationDlg.cxx
23 // Author : Sergey KUUL, Open CASCADE S.A.S. (sergey.kuul@opencascade.com)
24 //
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 }
120
121
122 //=================================================================================
123 // function : ClickOnOk()
124 // purpose  : Same than click on apply but close this dialog.
125 //=================================================================================
126 void RepairGUI_ChangeOrientationDlg::ClickOnOk()
127 {
128   if ( ClickOnApply() )
129     ClickOnCancel();
130 }
131
132
133 //=================================================================================
134 // function : ClickOnApply()
135 // purpose  :
136 //=================================================================================
137 bool RepairGUI_ChangeOrientationDlg::ClickOnApply()
138 {
139 //  if ( !onAccept() )
140   if ( !onAccept( GroupPoints->CheckButton1->isChecked() ) )
141     return false;
142
143   initName();
144
145   myEditCurrentArgument->setText( "" );
146   
147   return true;
148 }
149
150
151 //=================================================================================
152 // function : SelectionIntoArgument()
153 // purpose  : Called when selection as changed or other case
154 //=================================================================================
155 void RepairGUI_ChangeOrientationDlg::SelectionIntoArgument()
156 {
157   myEditCurrentArgument->setText( "" );
158   QString aName;
159   
160   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
161     if ( IObjectCount() != 1 ) {
162       if ( myEditCurrentArgument == GroupPoints->LineEdit1 )
163         myOkObject = false;
164       return;
165     }
166   }
167
168   // nbSel == 1
169   Standard_Boolean testResult = Standard_False;
170   GEOM::GEOM_Object_ptr aSelectedObject =
171     GEOMBase::ConvertIOinGEOMObject( firstIObject(), testResult );
172   
173   if ( !testResult )
174     return;
175
176   if ( myEditCurrentArgument == GroupPoints->LineEdit1 ) {
177     myObject = aSelectedObject;
178     myOkObject = true;
179   }
180
181   myEditCurrentArgument->setText( GEOMBase::GetName( aSelectedObject ) );
182 }
183
184
185 //=================================================================================
186 // function : SetEditCurrentArgument()
187 // purpose  :
188 //=================================================================================
189 void RepairGUI_ChangeOrientationDlg::SetEditCurrentArgument()
190 {
191   QPushButton* send = (QPushButton*)sender();
192
193   if ( send == GroupPoints->PushButton1 ) {
194     GroupPoints->LineEdit1->setFocus();
195     myEditCurrentArgument = GroupPoints->LineEdit1;
196   }
197   SelectionIntoArgument();
198 }
199
200
201 //=================================================================================
202 // function : LineEditReturnPressed()
203 // purpose  :
204 //=================================================================================
205 void RepairGUI_ChangeOrientationDlg::LineEditReturnPressed()
206 {
207   QLineEdit* send = (QLineEdit*)sender();
208   if ( send == GroupPoints->LineEdit1 ) {
209     myEditCurrentArgument = GroupPoints->LineEdit1;
210     GEOMBase_Skeleton::LineEditReturnPressed();
211   }
212 }
213
214
215 //=================================================================================
216 // function : ActivateThisDialog()
217 // purpose  :
218 //=================================================================================
219 void RepairGUI_ChangeOrientationDlg::ActivateThisDialog()
220 {
221   GEOMBase_Skeleton::ActivateThisDialog();
222   connect( ( (SalomeApp_Application*)( SUIT_Session::session()->activeApplication() ) )->selectionMgr(), 
223            SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
224 }
225
226
227 //=================================================================================
228 // function : enterEvent()
229 // purpose  : Mouse enter onto the dialog to activate it
230 //=================================================================================
231 void RepairGUI_ChangeOrientationDlg::enterEvent( QEvent* )
232 {
233   if ( !mainFrame()->GroupConstructors->isEnabled() )
234     ActivateThisDialog();
235 }
236
237
238 //=================================================================================
239 // function : createOperation
240 // purpose  :
241 //=================================================================================
242 GEOM::GEOM_IOperations_ptr RepairGUI_ChangeOrientationDlg::createOperation()
243 {
244   return getGeomEngine()->GetIHealingOperations( getStudyId() );
245 }
246
247
248 //=================================================================================
249 // function : isValid
250 // purpose  :
251 //=================================================================================
252 bool RepairGUI_ChangeOrientationDlg::isValid( QString& )
253 {
254   return myOkObject;
255 }
256
257
258 //=================================================================================
259 // function : execute
260 // purpose  :
261 //=================================================================================
262 bool RepairGUI_ChangeOrientationDlg::execute( ObjectList& objects )
263 {
264   bool toCreateCopy = GroupPoints->CheckButton1->isChecked();
265
266   GEOM::GEOM_Object_var anObj;
267   if ( toCreateCopy ) {
268     anObj = GEOM::GEOM_IHealingOperations::_narrow( getOperation() )->ChangeOrientationCopy( myObject );
269   }
270   else {
271     anObj = GEOM::GEOM_IHealingOperations::_narrow( getOperation() )->ChangeOrientation( myObject );
272   }
273
274   if ( !anObj->_is_nil() )
275     objects.push_back( anObj._retn() );
276
277   return true;
278 }
279
280
281 //=================================================================================
282 // function :  CreateCopyModeChanged()
283 // purpose  :
284 //=================================================================================
285 void RepairGUI_ChangeOrientationDlg::CreateCopyModeChanged( bool isCreateCopy )
286 {
287   mainFrame()->GroupBoxName->setEnabled( isCreateCopy );
288 }