Salome HOME
Join modifications from branch BR_DEBUG_3_2_0b1
[modules/gui.git] / src / STD / STD_TabDesktop.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 STD_TABDESKTOP_H
20 #define STD_TABDESKTOP_H
21
22 #include "STD.h"
23
24 #include <SUIT_Desktop.h>
25
26 class QtxAction;
27 class QPopupMenu;
28 class QWorkspace;
29 class QtxWorkstack;
30 class QtxWorkstackAction;
31
32 #if defined WNT
33 #pragma warning( disable: 4251 )
34 #endif
35
36 class STD_EXPORT STD_TabDesktop: public SUIT_Desktop 
37 {
38   Q_OBJECT
39
40 public:
41   enum { MenuWindowId = 6 };
42   enum { VSplit, HSplit };
43
44 public:
45   STD_TabDesktop();
46   virtual ~STD_TabDesktop();
47
48   virtual SUIT_ViewWindow* activeWindow() const;
49   virtual QPtrList<SUIT_ViewWindow> windows() const;
50
51   void                     windowOperation( const int );
52
53   void                     setWindowOperations( const int, ... );
54   void                     setWindowOperations( const QValueList<int>& );
55
56   QtxWorkstack*            workstack() const;
57
58 private slots:
59   void                     onWindowActivated( QWidget* );
60
61 protected:
62   void                     createActions();
63   virtual QWidget*         parentArea() const;
64
65 private:
66   int                      operationFlag( const int ) const;
67
68 private:
69   QtxWorkstack*            myWorkstack;
70   QtxWorkstackAction*      myWorkstackAction;
71 };
72
73 #if defined WNT
74 #pragma warning( default: 4251 )
75 #endif
76
77 #endif