Salome HOME
Update from BR_V5_DEV 13Feb2009
[modules/gui.git] / src / SUIT / SUIT_Desktop.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 #ifndef SUIT_DESKTOP_H
23 #define SUIT_DESKTOP_H
24
25 #include "SUIT.h"
26
27 #include <QList>
28 #include <QEvent>
29
30 #include <QtxMainWindow.h>
31
32 class QMovie;
33
34 class QtxLogoMgr;
35 class QtxActionMenuMgr;
36 class QtxActionToolMgr;
37
38 class SUIT_ViewWindow;
39
40 /*!
41   \class SUIT_Desktop
42   Provides standard desktop: main window with
43   main menu manager, toolbars manager and logo.
44 */
45 class SUIT_EXPORT SUIT_Desktop : public QtxMainWindow
46 {
47   Q_OBJECT
48
49   class ReparentEvent;
50
51   enum { Reparent = QEvent::User };
52
53 public:
54   SUIT_Desktop();
55   virtual ~SUIT_Desktop();
56
57   QtxActionMenuMgr*        menuMgr() const;
58   QtxActionToolMgr*        toolMgr() const;
59   QtxLogoMgr*              logoMgr() const;
60
61   virtual SUIT_ViewWindow* activeWindow() const = 0;
62   virtual QList<SUIT_ViewWindow*> windows() const = 0;
63
64   int                      logoCount() const;
65
66   void                     logoClear();
67   void                     logoRemove( const QString& );
68   void                     logoInsert( const QString&, QMovie*, const int = -1 );
69   void                     logoInsert( const QString&, const QPixmap&, const int = -1 );
70
71   void                     emitActivated();
72   void                     emitMessage( const QString& );
73
74 signals:
75   void                     activated();
76   void                     deactivated();
77   void                     windowActivated( SUIT_ViewWindow* );
78   void                     closing( SUIT_Desktop*, QCloseEvent* );
79   void                     message( const QString& );
80
81 protected:
82   virtual bool             event( QEvent* );
83   virtual void             customEvent( QEvent* );
84   virtual void             closeEvent( QCloseEvent* );
85   virtual void             childEvent( QChildEvent* );
86
87   virtual void             addWindow( QWidget* ) = 0;
88
89 private:
90   QtxActionMenuMgr*        myMenuMgr;
91   QtxActionToolMgr*        myToolMgr;
92   QtxLogoMgr*              myLogoMgr;
93 };
94
95 #endif