Salome HOME
Merge from OCC_development_generic_2006
[modules/visu.git] / src / VVTK / VVTK_ImageWriter.h
1 //  SALOME VTKViewer : build VTK viewer into Salome desktop\r
2 //\r
3 //  Copyright (C) 2003  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,\r
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS \r
5 // \r
6 //  This library is free software; you can redistribute it and/or \r
7 //  modify it under the terms of the GNU Lesser General Public \r
8 //  License as published by the Free Software Foundation; either \r
9 //  version 2.1 of the License. \r
10 // \r
11 //  This library is distributed in the hope that it will be useful, \r
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of \r
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU \r
14 //  Lesser General Public License for more details. \r
15 // \r
16 //  You should have received a copy of the GNU Lesser General Public \r
17 //  License along with this library; if not, write to the Free Software \r
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA \r
19 // \r
20 //  See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org \r
21 //\r
22 //\r
23 //\r
24 //  File   :\r
25 //  Author :\r
26 //  Module :\r
27 //  $Header$\r
28 \r
29 \r
30 #ifndef _VVTK_ImageWriter_Header_File_\r
31 #define _VVTK_ImageWriter_Header_File_\r
32 \r
33 #include <qthread.h>\r
34 #include <string>\r
35 \r
36 class vtkImageData;\r
37 class QSemaphore;\r
38 \r
39 \r
40 class VVTK_ImageWriter : public QThread \r
41 {\r
42 public:\r
43   VVTK_ImageWriter(QSemaphore* theSemaphore,\r
44                    vtkImageData* theImageData,\r
45                    const std::string& theName,\r
46                    int theProgressive,\r
47                    int theQuality);\r
48 \r
49   ~VVTK_ImageWriter();\r
50 \r
51  protected:\r
52   virtual\r
53   void\r
54   run();\r
55   \r
56  protected:\r
57   QSemaphore* mySemaphore;\r
58   vtkImageData *myImageData;\r
59   std::string myName;\r
60   int   myProgressive;\r
61   int   myQuality;\r
62   bool  myConstraint16Flag;\r
63 };\r
64 #endif\r