ParaView
vtkPVGL2PSExporter.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: vtkPVGL2PSExporter.h
5 
6  Copyright (c) Kitware, Inc.
7  All rights reserved.
8  See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
9 
10  This software is distributed WITHOUT ANY WARRANTY; without even
11  the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12  PURPOSE. See the above copyright notice for more information.
13 
14 =========================================================================*/
23 #ifndef vtkPVGL2PSExporter_h
24 #define vtkPVGL2PSExporter_h
25 
26 #include "vtkOpenGLGL2PSExporter.h"
27 #include "vtkPVVTKExtensionsRenderingModule.h" // needed for export macro
28 #include "vtkStdString.h" // for vtkStdString
29 
30 class VTKPVVTKEXTENSIONSRENDERING_EXPORT vtkPVGL2PSExporter : public vtkOpenGLGL2PSExporter
31 {
32 public:
33  static vtkPVGL2PSExporter* New();
34  vtkTypeMacro(vtkPVGL2PSExporter, vtkOpenGLGL2PSExporter) void PrintSelf(
35  ostream& os, vtkIndent indent);
36 
38 
41  vtkSetMacro(FileName, const char*) const char* GetFileName() { return this->FileName.c_str(); }
43 
45 
49  vtkSetMacro(ExcludeCubeAxesActorsFromRasterization, int)
50  vtkGetMacro(ExcludeCubeAxesActorsFromRasterization, int)
51  vtkBooleanMacro(ExcludeCubeAxesActorsFromRasterization, int)
53 
54  protected : vtkPVGL2PSExporter();
56 
57  void WriteData();
58 
59  vtkStdString FileName;
61 
62 private:
63  vtkPVGL2PSExporter(const vtkPVGL2PSExporter&) VTK_DELETE_FUNCTION;
64  void operator=(const vtkPVGL2PSExporter&) VTK_DELETE_FUNCTION;
65 };
66 
67 #endif
ParaView wrapper for vtkGL2PS exporter.
int ExcludeCubeAxesActorsFromRasterization