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