Salome HOME
no message
[modules/gui.git] / src / STD / STD_SDIDesktop.h
1 #ifndef STD_SDIDESKTOP_H
2 #define STD_SDIDESKTOP_H
3
4 #include "STD.h"
5
6 #include <SUIT_Desktop.h>
7
8 class QVBox;
9
10 class STD_EXPORT STD_SDIDesktop: public SUIT_Desktop 
11 {
12   Q_OBJECT
13
14 public:
15   STD_SDIDesktop();
16   virtual ~STD_SDIDesktop();
17
18   virtual SUIT_ViewWindow* activeWindow() const;
19   virtual QPtrList<SUIT_ViewWindow> windows() const;
20
21 protected:
22   virtual QWidget*         parentArea() const;
23
24 private:
25   QVBox*                   myMainWidget;
26 };
27
28 #endif