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 "vtkRemotingExportModule.h" // needed for export macro
28 #include "vtkStdString.h" // for vtkStdString
29 
30 class VTKREMOTINGEXPORT_EXPORT vtkPVGL2PSExporter : public vtkOpenGLGL2PSExporter
31 {
32 public:
33  static vtkPVGL2PSExporter* New();
35  void PrintSelf(ostream& os, vtkIndent indent) override;
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();
55  ~vtkPVGL2PSExporter() override;
56 
57  void WriteData() override;
58 
61 
62 private:
63  vtkPVGL2PSExporter(const vtkPVGL2PSExporter&) = delete;
64  void operator=(const vtkPVGL2PSExporter&) = delete;
65 };
66 
67 #endif
const char * GetFileName()
Set/Get the name of the output file.
static vtkOpenGLGL2PSExporter * New()
ParaView wrapper for vtkGL2PS exporter.
int ExcludeCubeAxesActorsFromRasterization
void PrintSelf(ostream &os, vtkIndent indent)
void operator=(const vtkObjectBase &)