Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / Qtx / QtxLogoMgr.h
1 // Copyright (C) 2005  OPEN CASCADE, CEA/DEN, EDF R&D, PRINCIPIA R&D
2 // 
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either 
6 // version 2.1 of the License.
7 // 
8 // This library is distributed in the hope that it will be useful 
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public  
14 // License along with this library; if not, write to the Free Software 
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef QTX_LOGOMGR_H
20 #define QTX_LOGOMGR_H
21
22 #include "Qtx.h"
23
24 class QMenuBar;
25
26 #include <qobject.h>
27 #include <qpixmap.h>
28
29 #ifdef WIN32
30 #pragma warning( disable : 4251 )
31 #endif
32
33 class QTX_EXPORT QtxLogoMgr : public QObject
34 {
35   Q_OBJECT
36
37 public:
38   QtxLogoMgr( QMenuBar* );
39   virtual ~QtxLogoMgr();
40
41   int        count() const;
42
43   void       insert( const QString&, const QPixmap&, const int = -1 );
44   void       remove( const QString& );
45   void       clear();
46
47   QMenuBar*  menuBar() const;
48
49 private:
50   void       generate();
51   int        find( const QString& ) const;
52
53 private:
54   typedef struct { QString id; QPixmap pix; } LogoInfo;
55   typedef QValueList<LogoInfo>                LogoList;
56
57 private:
58   int        myId;
59   QMenuBar*  myMenus;
60   LogoList   myLogos;
61 };
62
63 #ifdef WIN32
64 #pragma warning( default : 4251 )
65 #endif
66
67 #endif