Salome HOME
sources v1.2
[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 #include "QAD_Splitter.h" 
34 #include "QAD_PyInterp.h"
35
36 // QT Includes
37 #include <qwidget.h>
38 #include <qmainwindow.h>
39
40 class QAD_RightFrame;
41 class QAD_LeftFrame;
42 class QAD_Splitter;
43 class QAD_Study;
44
45 enum ViewType {
46   VIEW_OCC,
47   VIEW_VTK,
48   VIEW_GRAPHSUPERV,
49   VIEW_PLOT2D,
50   VIEW_TYPE_MAX  // must always be the last one; insert new values before it
51 };
52
53 class QAD_EXPORT QAD_StudyFrame: public QMainWindow
54 {
55   Q_OBJECT
56
57  public:
58   QAD_StudyFrame(QAD_Study* study,
59                  QWidget* parent, const QString& title, 
60                  QAD_PyInterp* interp, ViewType typeView);
61   QAD_StudyFrame(QAD_Study*,
62                  QWidget* parent = 0);
63   virtual ~QAD_StudyFrame();
64
65   QAD_Study*          getStudy() { return myStudy; }
66   QAD_RightFrame*     getRightFrame() const;
67   QAD_LeftFrame*      getLeftFrame() const;
68
69   ViewType            getTypeView() const; 
70
71   QAD_PyInterp*       get_PyInterp(void);
72
73   void                setTitle( const QString& aTitle);
74   const QString&      title() const;
75
76   void                setEntry( const QString& aTitle);
77   const QString&      entry() const;
78
79   void                setVisible( bool isVisible = true );
80   void                closeEvent(QCloseEvent* e);
81
82   void                compressLeft();
83   void                compressRight();
84   void                unCompressLeft();
85   void                unCompressRight();
86
87  signals:
88   void                sfStudyFrameActivated( QAD_StudyFrame* );
89   void                sfStudyFrameClosing( QAD_StudyFrame*);
90   void                sfBeforeStudyFrameClosing( QAD_StudyFrame*);
91
92  public slots:
93   void                onStudyFrameActivated ( QWidget* );
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*       s1; 
104   QAD_PyInterp*       _interp;
105   QAD_Study*          myStudy;
106 };
107
108 #endif