Salome HOME
sources v1.2
[modules/yacs.git] / src / SALOMEGUI / QAD_ViewFrame.cxx
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_ViewFrame.cxx
25 //  Author : Nicolas REJNERI
26 //  Module : SALOME
27 //  $Header$
28
29 using namespace std;
30 #include "QAD.h"
31 #include "QAD_ViewFrame.h"
32 #include "QAD_Application.h"
33 #include "QAD_Desktop.h"
34 #include "QAD_FileDlg.h"
35 #include "QAD_MessageBox.h"
36 #include "QAD_Tools.h"
37 #include <qapplication.h>
38 #include <qimage.h>
39 #include "utilities.h"
40
41 /*!
42     Constructor
43 */
44 QAD_ViewFrame::QAD_ViewFrame(QWidget* parent, const QString& title) 
45   : QMainWindow (parent, title, 0)
46 {
47 }
48
49 /*!
50     Constructor
51 */
52 QAD_ViewFrame::QAD_ViewFrame( QWidget* parent ) 
53   : QMainWindow (parent, "",0)
54 {
55 }
56
57 /*!
58     Destructor
59 */
60 QAD_ViewFrame::~QAD_ViewFrame()
61 {
62   cleanup();
63 }
64
65 /*!
66     Cleanup viewframe 
67 */
68 void QAD_ViewFrame::cleanup()
69 {
70
71
72 bool QAD_ViewFrame::isInViewer(SALOMEDS::Study_var aStudy,
73                                const char* anEntry, const char* StudyFrameEntry)
74 {
75   SALOMEDS::SObject_var RefSO;
76   SALOMEDS::SObject_var SO = aStudy->FindObjectID(StudyFrameEntry);
77   SALOMEDS::ChildIterator_var it = aStudy->NewChildIterator(SO);
78   for (; it->More();it->Next()){
79     SALOMEDS::SObject_var CSO= it->Value();
80     if (CSO->ReferencedObject(RefSO))
81       if ( strcmp( anEntry, RefSO->GetID() ) == 0 )
82         return 1;
83   }
84   return 0;
85 }
86
87 //san:T3.13 - it's up to VTKViewer_ViewFrame to implement (or not implement) getRenderer() method. Be careful!
88 /*
89 vtkRenderer* QAD_ViewFrame::getRenderer()
90 {
91   MESSAGE ( "Only redefined  VTKViewer")
92   return NULL;
93 }
94 */
95
96 /*
97    Dumps 3d-Viewer contents into image file
98    File format is defined by file's extension; supported formats : PNG, BMP, GIF, JPG
99 */
100 void QAD_ViewFrame::onViewDump()
101 {
102   if (!getViewWidget())
103     return;
104
105   QApplication::setOverrideCursor( Qt::waitCursor );
106   QPixmap px = QPixmap::grabWindow(getViewWidget()->winId());
107   QApplication::restoreOverrideCursor();
108   
109   QString fileName = QAD_FileDlg::getFileName(QAD_Application::getDesktop(),
110                                               QString::null,
111                                               tr("OCC_IMAGE_FILES"),
112                                               tr("INF_APP_DUMP_VIEW"),
113                                               false);
114   if (!fileName.isNull()) {
115     QApplication::setOverrideCursor( Qt::waitCursor );
116     QString fmt = QAD_Tools::getFileExtensionFromPath(fileName).upper();
117     if (fmt.isEmpty())
118       fmt = QString("BMP"); // default format
119     if (fmt == "JPG")
120       fmt = "JPEG";
121     bool bOk = px.save(fileName, fmt.latin1());
122     QApplication::restoreOverrideCursor();
123     if (!bOk) {
124       QAD_MessageBox::error1(QAD_Application::getDesktop(),
125                              tr("ERR_ERROR"),
126                              tr("ERR_DOC_CANT_SAVE_FILE"), 
127                              tr("BUT_OK"));
128     }
129   }
130 }