Salome HOME
d4015c9be4d1a8e37d875ac03aaa0c45f2b977d0
[modules/visu.git] / src / VISUGUI / VisuGUI_DialogRunner.cxx
1 // Copyright (C) 2007-2011  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
23 // File:        VisuGUI_DialogRunner.cxx
24 // Created:     Thu Oct  6 10:17:39 2005
25 // Author:      Alexander SOLOVYOV
26 //              <asl@multiplex.nnov.opencascade.com>
27 //
28 #include "VisuGUI_DialogRunner.h"
29
30 #include <QDialog>
31 #include <QEventLoop>
32 #include <QEvent>
33
34 VisuGUI_DialogRunner::VisuGUI_DialogRunner( QDialog* dlg )
35 : QObject(),
36   myDlg( dlg )
37 {
38   if( myDlg )
39   {
40     connect( myDlg, SIGNAL( destroyed() ), this, SLOT( onDialogDelete() ) );
41     myDlg->installEventFilter( this );
42     myEventLoop = new QEventLoop( this );
43   }
44 }
45
46 VisuGUI_DialogRunner::~VisuGUI_DialogRunner()
47 {
48 }
49
50 int VisuGUI_DialogRunner::run( const bool modal )
51 {
52   if( myEventLoop->isRunning() || !myDlg )
53     return -1;
54
55   if( modal )
56     return myDlg->exec();
57
58   myDlg->show();
59   myEventLoop->exec();
60   return myDlg->result();
61 }
62
63 void VisuGUI_DialogRunner::onDialogDelete()
64 {
65   if( myEventLoop->isRunning() )
66     myEventLoop->quit();
67
68   myDlg = 0;
69 }
70
71 bool VisuGUI_DialogRunner::eventFilter( QObject* o, QEvent* e )
72 {
73   if( o==myDlg && e && ( e->type()==QEvent::Close || e->type()==QEvent::Hide ) )
74   {
75     if( myEventLoop->isRunning() && !myDlg->isMinimized() )
76       myEventLoop->quit();
77     return false;
78   }
79   else
80     return QObject::eventFilter( o, e );
81 }