Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / Qtx / QtxLogoMgr.h
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:      QtxLogoMgr.h
23 // Author:    Sergey TELKOV
24 //
25 #ifndef QTXLOGOMGR_H
26 #define QTXLOGOMGR_H
27
28 #include "Qtx.h"
29
30 #include <QObject>
31 #include <QList>
32 #include <QPixmap>
33
34 class QMenuBar;
35 class QMovie;
36
37 #ifdef WIN32
38 #pragma warning( disable : 4251 )
39 #endif
40
41 class QTX_EXPORT QtxLogoMgr : public QObject
42 {
43   Q_OBJECT
44
45   class LogoBox;
46
47 public:
48   QtxLogoMgr( QMenuBar* );
49   virtual ~QtxLogoMgr();
50
51   int        count() const;
52
53   void       insert( const QString&, QMovie*, const int = -1 );
54   void       insert( const QString&, const QPixmap&, const int = -1 );
55   void       remove( const QString& );
56   void       clear();
57
58   void       startAnimation( const QString& = QString() );
59   void       stopAnimation( const QString& = QString() );
60   void       pauseAnimation( const bool, const QString& = QString() );
61
62   QMenuBar*  menuBar() const;
63
64 private:
65   typedef struct { QString id; QPixmap pix; QMovie* mov; } LogoInfo;
66   typedef QList<LogoInfo>                                  LogoList;
67
68 private:
69   void       generate();
70   int        find( const QString& ) const;
71   LogoInfo&  insert( const QString&, const int );
72   void       movies( const QString&, QList<QMovie*>& ) const;
73
74 private:
75   LogoBox*   myBox;         //!< widget containing logox
76   LogoList   myLogos;       //!< list of logo data
77 };
78
79 #ifdef WIN32
80 #pragma warning( default : 4251 )
81 #endif
82
83 #endif // QTXLOGOMGR_H