Salome HOME
DCQ : Merge with Ecole_ete_a6.
[modules/kernel.git] / src / SALOMEGUI / QAD_StudyFrame.h
1 //  SALOME SALOMEGUI : implementation of desktop and GUI kernel
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : QAD_StudyFrame.h
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 #ifndef QAD_StudyFrame_H
30 #define QAD_StudyFrame_H
31
32 #include "QAD.h" 
33
34 // QT Includes
35 #include <qwidget.h>
36 #include <qmainwindow.h>
37
38 class QMutex;
39
40 class QAD_RightFrame;
41 class QAD_LeftFrame;
42 class QAD_Splitter;
43 class QAD_Study;
44 class QAD_PyInterp;
45
46 enum ViewType {
47   VIEW_OCC,
48   VIEW_VTK,
49   VIEW_GRAPHSUPERV,
50   VIEW_PLOT2D,
51   VIEW_TYPE_MAX  // must always be the last one; insert new values before it
52 };
53
54 class QAD_EXPORT QAD_StudyFrame: public QMainWindow
55 {
56   Q_OBJECT
57
58  public:
59   QAD_StudyFrame(QAD_Study* theStudy, QWidget* theParent, 
60                  const QString& theTitle, ViewType theTypeView,
61                  QAD_PyInterp*& theInterp, QMutex* theMutex);
62   virtual ~QAD_StudyFrame();
63
64   QAD_Study*          getStudy() { return myStudy; }
65   QAD_RightFrame*     getRightFrame() const;
66   QAD_LeftFrame*      getLeftFrame() const;
67
68   ViewType            getTypeView() const; 
69
70   QAD_PyInterp*       get_PyInterp(void);
71
72   void                setTitle( const QString& aTitle);
73   const QString&      title() const;
74
75   void                setEntry( const QString& aTitle);
76   const QString&      entry() const;
77
78   void                setVisible( bool isVisible = true );
79
80   void                compressLeft();
81   void                compressRight();
82   void                unCompressLeft();
83   void                unCompressRight();
84
85  signals:
86   void                sfStudyFrameActivated( QAD_StudyFrame* );
87   void                sfStudyFrameClosing( QAD_StudyFrame*);
88
89  public slots:
90   void                onStudyFrameActivated ( QWidget* );
91
92  protected:
93   virtual void        closeEvent ( QCloseEvent* );
94         
95
96  private:
97   QString             myTitle;  /* title */
98   QString             myEntry;  /* entry */
99
100   ViewType            myTypeView;
101   QAD_LeftFrame*      myLeftFrm;
102   QAD_RightFrame*     myRightFrm;
103   QAD_Splitter*       mySplitter; 
104   QAD_Study*          myStudy;
105   QAD_PyInterp*&      myInterp;
106 };
107
108 #endif