Salome HOME
Add some comments
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_OrientationElementsDlg.cxx
1 //  SMESH SMESHGUI : GUI for SMESH 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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : SMESHGUI_OrientationElementsDlg.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SMESH
27 //  $Header$
28
29 using namespace std;
30 #include "SMESHGUI_OrientationElementsDlg.h"
31
32 #include "SMESHGUI.h"
33 #include "QAD_Application.h"
34 #include "QAD_Desktop.h"
35 #include "QAD_MessageBox.h"
36 #include "utilities.h"
37
38 // QT Includes
39 #include <qbuttongroup.h>
40 #include <qgroupbox.h>
41 #include <qlabel.h>
42 #include <qlineedit.h>
43 #include <qpushbutton.h>
44 #include <qradiobutton.h>
45 #include <qlayout.h>
46 #include <qvariant.h>
47 #include <qtooltip.h>
48 #include <qwhatsthis.h>
49 #include <qimage.h>
50 #include <qpixmap.h>
51
52
53 //=================================================================================
54 // class    : SMESHGUI_OrientationElementsDlg()
55 // purpose  : 
56 //=================================================================================
57 SMESHGUI_OrientationElementsDlg::SMESHGUI_OrientationElementsDlg( QWidget* parent, const char* name, SALOME_Selection* Sel,
58                                                   bool modal, WFlags fl )
59     : QDialog( parent, name, modal, WStyle_Customize | WStyle_NormalBorder | WStyle_Title | WStyle_SysMenu )
60 {
61     QPixmap image0(QAD_Desktop::getResourceManager()->loadPixmap( "SMESH",tr("ICON_DLG_MESH_ORIENTATION")));
62     QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap( "SMESH",tr("ICON_SELECT")));
63
64     if ( !name )
65         setName( "SMESHGUI_OrientationElementsDlg" );
66     resize( 303, 185 ); 
67     setCaption( tr( "SMESH_ORIENTATION_ELEMENTS_TITLE"  ) );
68     setSizeGripEnabled( TRUE );
69     SMESHGUI_OrientationElementsDlgLayout = new QGridLayout( this ); 
70     SMESHGUI_OrientationElementsDlgLayout->setSpacing( 6 );
71     SMESHGUI_OrientationElementsDlgLayout->setMargin( 11 );
72
73     /***************************************************************/
74     GroupConstructors = new QButtonGroup( this, "GroupConstructors" );
75     GroupConstructors->setTitle( tr( "SMESH_ELEMENTS"  ) );
76     GroupConstructors->setExclusive( TRUE );
77     GroupConstructors->setColumnLayout(0, Qt::Vertical );
78     GroupConstructors->layout()->setSpacing( 0 );
79     GroupConstructors->layout()->setMargin( 0 );
80     GroupConstructorsLayout = new QGridLayout( GroupConstructors->layout() );
81     GroupConstructorsLayout->setAlignment( Qt::AlignTop );
82     GroupConstructorsLayout->setSpacing( 6 );
83     GroupConstructorsLayout->setMargin( 11 );
84     Constructor1 = new QRadioButton( GroupConstructors, "Constructor1" );
85     Constructor1->setText( tr( ""  ) );
86     Constructor1->setPixmap( image0 );
87     Constructor1->setChecked( TRUE );
88     Constructor1->setSizePolicy( QSizePolicy( (QSizePolicy::SizeType)1, (QSizePolicy::SizeType)0, Constructor1->sizePolicy().hasHeightForWidth() ) );
89     Constructor1->setMinimumSize( QSize( 50, 0 ) );
90     GroupConstructorsLayout->addWidget( Constructor1, 0, 0 );
91     QSpacerItem* spacer = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
92     GroupConstructorsLayout->addItem( spacer, 0, 1 );
93     SMESHGUI_OrientationElementsDlgLayout->addWidget( GroupConstructors, 0, 0 );
94     
95     /***************************************************************/
96     GroupButtons = new QGroupBox( this, "GroupButtons" );
97     GroupButtons->setGeometry( QRect( 10, 10, 281, 48 ) ); 
98     GroupButtons->setTitle( tr( ""  ) );
99     GroupButtons->setColumnLayout(0, Qt::Vertical );
100     GroupButtons->layout()->setSpacing( 0 );
101     GroupButtons->layout()->setMargin( 0 );
102     GroupButtonsLayout = new QGridLayout( GroupButtons->layout() );
103     GroupButtonsLayout->setAlignment( Qt::AlignTop );
104     GroupButtonsLayout->setSpacing( 6 );
105     GroupButtonsLayout->setMargin( 11 );
106     buttonCancel = new QPushButton( GroupButtons, "buttonCancel" );
107     buttonCancel->setText( tr( "SMESH_BUT_CLOSE"  ) );
108     buttonCancel->setAutoDefault( TRUE );
109     GroupButtonsLayout->addWidget( buttonCancel, 0, 3 );
110     buttonApply = new QPushButton( GroupButtons, "buttonApply" );
111     buttonApply->setText( tr( "SMESH_BUT_APPLY"  ) );
112     buttonApply->setAutoDefault( TRUE );
113     GroupButtonsLayout->addWidget( buttonApply, 0, 1 );
114     QSpacerItem* spacer_9 = new QSpacerItem( 20, 20, QSizePolicy::Expanding, QSizePolicy::Minimum );
115     GroupButtonsLayout->addItem( spacer_9, 0, 2 );
116     buttonOk = new QPushButton( GroupButtons, "buttonOk" );
117     buttonOk->setText( tr( "SMESH_BUT_OK"  ) );
118     buttonOk->setAutoDefault( TRUE );
119     buttonOk->setDefault( TRUE );
120     GroupButtonsLayout->addWidget( buttonOk, 0, 0 );
121     SMESHGUI_OrientationElementsDlgLayout->addWidget( GroupButtons, 2, 0 );
122
123     /***************************************************************/
124     GroupC1 = new QGroupBox( this, "GroupC1" );
125     GroupC1->setTitle( tr( "SMESH_ORIENTATION"  ) );
126     GroupC1->setMinimumSize( QSize( 0, 0 ) );
127     GroupC1->setFrameShape( QGroupBox::Box );
128     GroupC1->setFrameShadow( QGroupBox::Sunken );
129     GroupC1->setColumnLayout(0, Qt::Vertical );
130     GroupC1->layout()->setSpacing( 0 );
131     GroupC1->layout()->setMargin( 0 );
132     GroupC1Layout = new QGridLayout( GroupC1->layout() );
133     GroupC1Layout->setAlignment( Qt::AlignTop );
134     GroupC1Layout->setSpacing( 6 );
135     GroupC1Layout->setMargin( 11 );
136     TextLabelC1A1 = new QLabel( GroupC1, "TextLabelC1A1" );
137     TextLabelC1A1->setText( tr( "SMESH_ID_ELEMENTS"  ) );
138     TextLabelC1A1->setMinimumSize( QSize( 50, 0 ) );
139     TextLabelC1A1->setFrameShape( QLabel::NoFrame );
140     TextLabelC1A1->setFrameShadow( QLabel::Plain );
141     GroupC1Layout->addWidget( TextLabelC1A1, 0, 0 );
142     SelectButtonC1A1 = new QPushButton( GroupC1, "SelectButtonC1A1" );
143     SelectButtonC1A1->setText( tr( ""  ) );
144     SelectButtonC1A1->setPixmap( image1 );
145     SelectButtonC1A1->setToggleButton( FALSE );
146     GroupC1Layout->addWidget( SelectButtonC1A1, 0, 1 );
147     LineEditC1A1 = new QLineEdit( GroupC1, "LineEditC1A1" );
148     GroupC1Layout->addWidget( LineEditC1A1, 0, 2 );
149     SMESHGUI_OrientationElementsDlgLayout->addWidget( GroupC1, 1, 0 );
150
151     Init(Sel) ; /* Initialisations */
152 }
153
154 //=================================================================================
155 // function : ~SMESHGUI_OrientationElementsDlg()
156 // purpose  : Destroys the object and frees any allocated resources
157 //=================================================================================
158 SMESHGUI_OrientationElementsDlg::~SMESHGUI_OrientationElementsDlg()
159 {
160     // no need to delete child widgets, Qt does it all for us
161 }
162
163
164 //=================================================================================
165 // function : Init()
166 // purpose  :
167 //=================================================================================
168 void SMESHGUI_OrientationElementsDlg::Init( SALOME_Selection* Sel )
169 {
170
171   GroupC1->show();
172   myConstructorId = 0 ;
173   Constructor1->setChecked( TRUE );
174   myEditCurrentArgument = LineEditC1A1 ;        
175   mySelection = Sel;  
176   this->myOkElements = false ;
177   mySMESHGUI = SMESHGUI::GetSMESHGUI() ;
178   mySMESHGUI->SetActiveDialogBox( (QDialog*)this ) ;
179
180   /* signals and slots connections */
181   connect( buttonOk, SIGNAL( clicked() ),     this, SLOT( ClickOnOk() ) );
182   connect( buttonCancel, SIGNAL( clicked() ), this, SLOT( ClickOnCancel() ) ) ;
183   connect( buttonApply, SIGNAL( clicked() ), this, SLOT(ClickOnApply() ) );
184   connect( GroupConstructors, SIGNAL(clicked(int) ), SLOT( ConstructorsClicked(int) ) );
185
186   connect( SelectButtonC1A1, SIGNAL (clicked() ),   this, SLOT( SetEditCurrentArgument() ) ) ;
187   connect( mySMESHGUI, SIGNAL ( SignalDeactivateActiveDialog() ), this, SLOT( DeactivateActiveDialog() ) ) ;
188   connect( mySelection, SIGNAL( currentSelectionChanged() ), this, SLOT( SelectionIntoArgument() ) );
189   /* to close dialog if study change */
190   connect( mySMESHGUI, SIGNAL ( SignalCloseAllDialogs() ), this, SLOT( ClickOnCancel() ) ) ;
191
192   /* Move widget on the botton right corner of main widget */
193   int x, y ;
194   mySMESHGUI->DefineDlgPosition( this, x, y ) ;
195   this->move( x, y ) ;
196   this->show() ; /* displays Dialog */
197
198   SelectionIntoArgument();
199
200   return ;
201 }
202
203
204 //=================================================================================
205 // function : ConstructorsClicked()
206 // purpose  : Radio button management
207 //=================================================================================
208 void SMESHGUI_OrientationElementsDlg::ConstructorsClicked(int constructorId)
209 {
210   return ;
211 }
212
213
214 //=================================================================================
215 // function : ClickOnApply()
216 // purpose  :
217 //=================================================================================
218 void SMESHGUI_OrientationElementsDlg::ClickOnApply()
219 {
220   switch(myConstructorId)
221     { 
222     case 0 :
223       { 
224         if(myOkElements) {        
225           mySMESHGUI->OrientationElements( myMesh, myMapIndex ) ;
226           mySelection->ClearIObjects();
227         }
228         break ;
229       }
230     }
231   return ;
232 }
233
234 //=================================================================================
235 // function : ClickOnOk()
236 // purpose  :
237 //=================================================================================
238 void SMESHGUI_OrientationElementsDlg::ClickOnOk()
239 {
240   this->ClickOnApply() ;
241   this->ClickOnCancel() ;
242
243   return ;
244 }
245
246 //=================================================================================
247 // function : ClickOnCancel()
248 // purpose  :
249 //=================================================================================
250 void SMESHGUI_OrientationElementsDlg::ClickOnCancel()
251 {
252   QAD_Application::getDesktop()->SetSelectionMode( 4 );
253   disconnect( mySelection, 0, this, 0 );
254   mySMESHGUI->ResetState() ;
255   reject() ;
256   return ;
257 }
258
259
260 //=================================================================================
261 // function : SelectionIntoArgument()
262 // purpose  : Called when selection as changed or other case
263 //=================================================================================
264 void SMESHGUI_OrientationElementsDlg::SelectionIntoArgument()
265 {
266   myEditCurrentArgument->setText("") ;
267   myOkElements = false;
268   QString aString = "";
269
270   int nbSel = mySelection->IObjectCount();
271   if(nbSel != 1)
272     return;
273
274   int nbElements = mySMESHGUI->GetNameOfSelectedElements(mySelection, aString) ;
275   if(nbElements < 1)
276     return ;
277   
278   if ( mySelection->SelectionMode() != 3 ) {
279     QAD_MessageBox::warn1 ( QAD_Application::getDesktop(), tr ("SMESH_WRN_WARNING"),
280                             tr ("SMESH_WRN_SELECTIONMODE_ELEMENTS"), tr ("SMESH_BUT_YES") );
281     return;
282   }
283
284   myEditCurrentArgument->setText(aString) ;
285   Standard_Boolean res;
286   myMesh = mySMESHGUI->ConvertIOinMesh( mySelection->firstIObject(), res );
287   if (!res)
288     return ;
289
290   mySelection->GetIndex( mySelection->firstIObject(), myMapIndex);
291   myOkElements = true ;
292   return ;
293 }
294
295
296 //=================================================================================
297 // function : SetEditCurrentArgument()
298 // purpose  :
299 //=================================================================================
300 void SMESHGUI_OrientationElementsDlg::SetEditCurrentArgument()
301 {
302   QPushButton* send = (QPushButton*)sender();
303   switch (myConstructorId)
304     {
305     case 0: /* default constructor */
306       { 
307         if(send == SelectButtonC1A1) {
308           LineEditC1A1->setFocus() ;
309           myEditCurrentArgument = LineEditC1A1;
310         }
311         SelectionIntoArgument() ;
312         break;
313       }
314     }
315   return ;
316 }
317
318 //=================================================================================
319 // function : DeactivateActiveDialog()
320 // purpose  :
321 //=================================================================================
322 void SMESHGUI_OrientationElementsDlg::DeactivateActiveDialog()
323 {
324   if ( GroupConstructors->isEnabled() ) {
325     GroupConstructors->setEnabled(false) ;
326     GroupC1->setEnabled(false) ;
327     GroupButtons->setEnabled(false) ;
328   }
329   return ;
330 }
331
332
333 //=================================================================================
334 // function : ActivateThisDialog()
335 // purpose  :
336 //=================================================================================
337 void SMESHGUI_OrientationElementsDlg::ActivateThisDialog()
338 {
339   /* Emit a signal to deactivate the active dialog */
340   mySMESHGUI->EmitSignalDeactivateDialog() ;   
341   GroupConstructors->setEnabled(true) ;
342   GroupC1->setEnabled(true) ;
343   GroupButtons->setEnabled(true) ;
344   return ;
345 }
346
347
348 //=================================================================================
349 // function : enterEvent()
350 // purpose  :
351 //=================================================================================
352 void SMESHGUI_OrientationElementsDlg::enterEvent(QEvent* e)
353 {
354   if ( GroupConstructors->isEnabled() )
355     return ;  
356   ActivateThisDialog() ;
357   return ;
358 }
359
360
361 //=================================================================================
362 // function : closeEvent()
363 // purpose  :
364 //=================================================================================
365 void SMESHGUI_OrientationElementsDlg::closeEvent( QCloseEvent* e )
366 {
367   /* same than click on cancel button */
368   this->ClickOnCancel() ;
369   return ;
370 }
371
372