]> SALOME platform Git repositories - modules/visu.git/blob - src/VISUGUI/VisuGUI_DialogRunner.cxx
Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/visu.git] / src / VISUGUI / VisuGUI_DialogRunner.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 // File:        VisuGUI_DialogRunner.cxx
21 // Created:     Thu Oct  6 10:17:39 2005
22 // Author:      Alexander SOLOVYOV
23 //              <asl@multiplex.nnov.opencascade.com>
24
25 #include "VisuGUI_DialogRunner.h"
26
27 #include <qdialog.h>
28 #include <qapplication.h>
29
30 VisuGUI_DialogRunner::VisuGUI_DialogRunner( QDialog* dlg )
31 : QObject(),
32   myDlg( dlg ),
33   myInLoop( false )
34 {
35   if( myDlg )
36   {
37     connect( myDlg, SIGNAL( destroyed() ), this, SLOT( onDialogDelete() ) );
38     myDlg->installEventFilter( this );
39   }
40 }
41
42 VisuGUI_DialogRunner::~VisuGUI_DialogRunner()
43 {
44 }
45
46 int VisuGUI_DialogRunner::run( const bool modal )
47 {
48   if( myInLoop || !myDlg )
49     return -1;
50
51   if( modal )
52     return myDlg->exec();
53
54   myInLoop = true;
55   myDlg->show();
56   qApp->enter_loop();
57   return myDlg->result();
58 }
59
60 void VisuGUI_DialogRunner::onDialogDelete()
61 {
62   if( myInLoop )
63     qApp->exit_loop();
64
65   myDlg = 0;
66   myInLoop = false;
67 }
68
69 bool VisuGUI_DialogRunner::eventFilter( QObject* o, QEvent* e )
70 {
71   if( o==myDlg && e && ( e->type()==QEvent::Close || e->type()==QEvent::Hide ) )
72   {
73     if( myInLoop && !myDlg->isMinimized() )
74     {
75       myInLoop = false;
76       qApp->exit_loop();
77     }
78     return false;
79   }
80   else
81     return QObject::eventFilter( o, e );
82 }