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