Salome HOME
Merge from V6_main 01/04/2013
[modules/gui.git] / src / SUIT / SUIT_Desktop.cxx
1 // Copyright (C) 2007-2013  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
23 #include "SUIT_Desktop.h"
24
25 #include "SUIT_ViewWindow.h"
26
27 #include <QtxLogoMgr.h>
28 #include <QtxActionMenuMgr.h>
29 #include <QtxActionToolMgr.h>
30
31 #include <QPointer>
32 #include <QCloseEvent>
33 #include <QApplication>
34
35 /*!\class SUIT_Desktop
36  * Provide desktop management:\n
37  * \li menu manager
38  * \li tool manager
39  * \li windows
40  */
41
42 class SUIT_Desktop::ReparentEvent : public QEvent
43 {
44 public:
45   ReparentEvent( Type t, QObject* obj ) : QEvent( t ), myObj( obj ) {};
46
47   QObject* object() const { return myObj; }
48
49 private:
50   QPointer<QObject> myObj;
51 };
52
53 /*!
54   Constructor.
55 */
56 SUIT_Desktop::SUIT_Desktop()
57 : QtxMainWindow()
58 {
59   myMenuMgr = new QtxActionMenuMgr( this );
60   myToolMgr = new QtxActionToolMgr( this );
61   myLogoMgr = new QtxLogoMgr( menuBar() );
62 }
63
64 /*!
65   Destructor.
66 */
67 SUIT_Desktop::~SUIT_Desktop()
68 {
69 }
70
71 /*!
72   Emit on event \a e.
73 */
74 bool SUIT_Desktop::event( QEvent* e )
75 {
76   if ( !e )
77     return false;
78
79   switch ( e->type() )
80   {
81   case QEvent::WindowActivate:
82     emit activated();
83     break;
84   case QEvent::WindowDeactivate:
85     emit deactivated();
86     break;
87   default:
88     break;
89   }
90
91   return QtxMainWindow::event( e );
92 }
93
94 /*!
95   Close event \a e.
96 */
97 void SUIT_Desktop::closeEvent( QCloseEvent* e )
98 {
99   emit closing( this, e );
100   e->ignore();
101 }
102
103 /*!
104   Child event.
105 */
106 void SUIT_Desktop::childEvent( QChildEvent* e )
107 {
108   if ( e->type() == QEvent::ChildAdded && e->child()->isWidgetType() )
109     QApplication::postEvent( this, new ReparentEvent( QEvent::Type( Reparent ), e->child() ) );
110   else
111     QtxMainWindow::childEvent( e );
112 }
113
114 void SUIT_Desktop::customEvent( QEvent* e )
115 {
116   if ( (int)e->type() != Reparent )
117     return;
118
119   ReparentEvent* re = (ReparentEvent*)e;
120   SUIT_ViewWindow* wid = ::qobject_cast<SUIT_ViewWindow*>( re->object() );
121   if ( wid )
122   {
123     bool invis = wid->testAttribute( Qt::WA_WState_ExplicitShowHide ) &&
124                  wid->testAttribute( Qt::WA_WState_Hidden );
125
126     addWindow( wid );
127     wid->setShown( !invis );
128   }
129 }
130
131 /*!
132   Gets menu manager.
133 */
134 QtxActionMenuMgr* SUIT_Desktop::menuMgr() const
135 {
136   return myMenuMgr;
137 }
138
139 /*!
140   Gets tool manager.
141 */
142 QtxActionToolMgr* SUIT_Desktop::toolMgr() const
143 {
144   return myToolMgr;
145 }
146
147 /*!
148   Gets logo manager.
149 */
150 QtxLogoMgr* SUIT_Desktop::logoMgr() const
151 {
152   return myLogoMgr;
153 }
154
155 /*!
156   Returns the count of the existed logos.
157 */
158 int SUIT_Desktop::logoCount() const
159 {
160   return 0;
161
162   if ( !myLogoMgr )
163     return 0;
164   else
165     return myLogoMgr->count();
166 }
167
168 /*!
169   Adds new logo to the menu bar area
170 */
171 void SUIT_Desktop::logoInsert( const QString& logoID, QMovie* logo, const int idx )
172 {
173   if ( myLogoMgr )
174     myLogoMgr->insert( logoID, logo, idx );
175 }
176
177 /*!
178   Adds new logo to the menu bar area
179 */
180 void SUIT_Desktop::logoInsert( const QString& logoID, const QPixmap& logo, const int idx )
181 {
182   if ( myLogoMgr )
183     myLogoMgr->insert( logoID, logo, idx );
184 }
185
186 /*!
187   Removes a logo
188 */
189 void SUIT_Desktop::logoRemove( const QString& logoID )
190 {
191   if ( myLogoMgr )
192     myLogoMgr->remove( logoID );
193 }
194
195 /*!
196   Removes all logos 
197 */
198 void SUIT_Desktop::logoClear()
199 {
200   if ( myLogoMgr )
201     myLogoMgr->clear();
202 }
203
204 /*!
205   Emits activated signal
206 */
207 void SUIT_Desktop::emitActivated()
208 {
209   emit activated();
210 }
211
212 /*!
213   Emits message signal
214 */
215 void SUIT_Desktop::emitMessage( const QString& theMessage )
216 {
217   emit message( theMessage );
218 }