Salome HOME
d5718b729a5a050fc86484e84e630c3d3c25e8aa
[modules/gui.git] / src / SUIT / SUIT_OverrideCursor.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 #include "SUIT_OverrideCursor.h"
23
24 #include <QApplication>
25
26 /*!Constructor. Initialize wait cursor.*/
27 SUIT_OverrideCursor::SUIT_OverrideCursor()
28 {
29   QApplication::setOverrideCursor( QCursor( Qt::WaitCursor ) );
30 }
31
32 /*!Copy constructor.*/
33 SUIT_OverrideCursor::SUIT_OverrideCursor( const QCursor& cursor )
34 {
35   QApplication::setOverrideCursor( cursor );
36 }
37
38 /*!Destructor. restoring override cursor.*/
39 SUIT_OverrideCursor::~SUIT_OverrideCursor()
40 {
41   QApplication::restoreOverrideCursor();
42 }
43
44 /*! Check cursors is empty */
45 bool SUIT_OverrideCursor::isActive() const
46 {
47   return myCursors.isEmpty();
48 }
49
50 /*!Suspend cursors.*/
51 void SUIT_OverrideCursor::suspend()
52 {
53   if ( !isActive() )
54     return;
55
56   while ( QApplication::overrideCursor() )
57   {
58     myCursors.prepend( *QApplication::overrideCursor() );
59     QApplication::restoreOverrideCursor();
60   }
61 }
62
63 /*!Resume cursors.*/
64 void SUIT_OverrideCursor::resume()
65 {
66   if ( isActive() )
67     return;
68
69   for ( QList<QCursor>::const_iterator it = myCursors.begin(); it != myCursors.end(); ++it )
70     QApplication::setOverrideCursor( *it );
71
72   myCursors.clear();
73 }