Salome HOME
This commit was generated by cvs2git to create branch 'PAL_OCC'.
[modules/smesh.git] / src / SMESHGUI / SMESHGUI_DiagonalInversionDlg.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_DiagonalInversionDlg.cxx
25 //  Author : Damien COQUERET
26 //  Module : SMESH
27 //  $Header$
28
29 using namespace std;
30 #include "SMESHGUI_DiagonalInversionDlg.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_DiagonalInversionDlg()
55 // purpose  : 
56 //=================================================================================
57 SMESHGUI_DiagonalInversionDlg::SMESHGUI_DiagonalInversionDlg( 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_DIAGONAL")));
62     QPixmap image1(QAD_Desktop::getResourceManager()->loadPixmap( "SMESH",tr("ICON_SELECT")));
63
64     if ( !name )
65         setName( "SMESHGUI_DiagonalInversionDlg" );
66     resize( 303, 185 ); 
67     setCaption( tr( "SMESH_DIAGONAL_INVERSION_TITLE"  ) );
68     setSizeGripEnabled( TRUE );
69     SMESHGUI_DiagonalInversionDlgLayout = new QGridLayout( this ); 
70     SMESHGUI_DiagonalInversionDlgLayout->setSpacing( 6 );
71     SMESHGUI_DiagonalInversionDlgLayout->setMargin( 11 );
72
73     /***************************************************************/
74     GroupConstructors = new QButtonGroup( this, "GroupConstructors" );
75     GroupConstructors->setTitle( tr( "SMESH_DIAGONAL"  ) );
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_DiagonalInversionDlgLayout->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_DiagonalInversionDlgLayout->addWidget( GroupButtons, 2, 0 );
122
123     /***************************************************************/
124     GroupC1 = new QGroupBox( this, "GroupC1" );
125     GroupC1->setTitle( tr( "SMESH_DIAGONAL"  ) );
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_DIAGONAL"  ) );
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_DiagonalInversionDlgLayout->addWidget( GroupC1, 1, 0 );
150
151     Init(Sel) ; /* Initialisations */
152 }
153
154 //=================================================================================
155 // function : ~SMESHGUI_DiagonalInversionDlg()
156 // purpose  : Destroys the object and frees any allocated resources
157 //=================================================================================
158 SMESHGUI_DiagonalInversionDlg::~SMESHGUI_DiagonalInversionDlg()
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_DiagonalInversionDlg::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   return ;
199 }
200
201
202 //=================================================================================
203 // function : ConstructorsClicked()
204 // purpose  : Radio button management
205 //=================================================================================
206 void SMESHGUI_DiagonalInversionDlg::ConstructorsClicked(int constructorId)
207 {
208   return ;
209 }
210
211
212 //=================================================================================
213 // function : ClickOnApply()
214 // purpose  :
215 //=================================================================================
216 void SMESHGUI_DiagonalInversionDlg::ClickOnApply()
217 {
218   switch(myConstructorId)
219     { 
220     case 0 :
221       { 
222         if(myOkElements) {        
223           mySMESHGUI->DiagonalInversion( myMesh, myMapIndex ) ;
224           mySelection->ClearIObjects();
225         }
226         break ;
227       }
228     }
229   return ;
230 }
231
232 //=================================================================================
233 // function : ClickOnOk()
234 // purpose  :
235 //=================================================================================
236 void SMESHGUI_DiagonalInversionDlg::ClickOnOk()
237 {
238   this->ClickOnApply() ;
239   this->ClickOnCancel() ;
240
241   return ;
242 }
243
244 //=================================================================================
245 // function : ClickOnCancel()
246 // purpose  :
247 //=================================================================================
248 void SMESHGUI_DiagonalInversionDlg::ClickOnCancel()
249 {
250   QAD_Application::getDesktop()->SetSelectionMode( ActorSelection );
251   disconnect( mySelection, 0, this, 0 );
252   mySMESHGUI->ResetState() ;
253   reject() ;
254   return ;
255 }
256
257
258 //=================================================================================
259 // function : SelectionIntoArgument()
260 // purpose  : Called when selection as changed or other case
261 //=================================================================================
262 void SMESHGUI_DiagonalInversionDlg::SelectionIntoArgument()
263 {
264   myEditCurrentArgument->setText("") ;
265   myOkElements = false;
266   QString aString = "";
267
268   if ( mySelection->SelectionMode() != EdgeSelection ) {
269     return;
270   }
271
272   int nbSel = mySelection->IObjectCount();
273   if(nbSel != 1)
274     return;
275
276   int nbElements = mySMESHGUI->GetNameOfSelectedEdges(mySelection, aString) ;
277   if(nbElements < 1)
278     return ;
279   MESSAGE( "DCQ : nb. elements = " << nbElements )
280
281   Standard_Boolean res;
282   myMesh = mySMESHGUI->ConvertIOinMesh( mySelection->firstIObject(), res );
283   if (!res)
284     return ;
285
286   mySelection->GetIndex( mySelection->firstIObject(), myMapIndex);
287   myOkElements = true ;
288   myEditCurrentArgument->setText(aString) ;
289   return ;
290 }
291
292
293 //=================================================================================
294 // function : SetEditCurrentArgument()
295 // purpose  :
296 //=================================================================================
297 void SMESHGUI_DiagonalInversionDlg::SetEditCurrentArgument()
298 {
299   QPushButton* send = (QPushButton*)sender();
300   switch (myConstructorId)
301     {
302     case 0: /* default constructor */
303       { 
304         if(send == SelectButtonC1A1) {
305           LineEditC1A1->setFocus() ;
306           myEditCurrentArgument = LineEditC1A1;
307         }
308         SelectionIntoArgument() ;
309         break;
310       }
311     }
312   return ;
313 }
314
315 //=================================================================================
316 // function : DeactivateActiveDialog()
317 // purpose  :
318 //=================================================================================
319 void SMESHGUI_DiagonalInversionDlg::DeactivateActiveDialog()
320 {
321   if ( GroupConstructors->isEnabled() ) {
322     GroupConstructors->setEnabled(false) ;
323     GroupC1->setEnabled(false) ;
324     GroupButtons->setEnabled(false) ;
325   }
326   return ;
327 }
328
329
330 //=================================================================================
331 // function : ActivateThisDialog()
332 // purpose  :
333 //=================================================================================
334 void SMESHGUI_DiagonalInversionDlg::ActivateThisDialog()
335 {
336   /* Emit a signal to deactivate the active dialog */
337   mySMESHGUI->EmitSignalDeactivateDialog() ;   
338   GroupConstructors->setEnabled(true) ;
339   GroupC1->setEnabled(true) ;
340   GroupButtons->setEnabled(true) ;
341   return ;
342 }
343
344
345 //=================================================================================
346 // function : enterEvent()
347 // purpose  :
348 //=================================================================================
349 void SMESHGUI_DiagonalInversionDlg::enterEvent(QEvent* e)
350 {
351   if ( GroupConstructors->isEnabled() )
352     return ;  
353   ActivateThisDialog() ;
354   return ;
355 }
356
357
358 //=================================================================================
359 // function : closeEvent()
360 // purpose  :
361 //=================================================================================
362 void SMESHGUI_DiagonalInversionDlg::closeEvent( QCloseEvent* e )
363 {
364   /* same than click on cancel button */
365   this->ClickOnCancel() ;
366   return ;
367 }
368
369