/usr/include/paraview/vtkPVGL2PSExporter.h is in paraview-dev 5.0.1+dfsg1-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | /*=========================================================================
Program: ParaView
Module: vtkPVGL2PSExporter.h
Copyright (c) Kitware, Inc.
All rights reserved.
See Copyright.txt or http://www.paraview.org/HTML/Copyright.html for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
// .NAME vtkPVGL2PSExporter - ParaView wrapper for vtkGL2PS exporter.
// .SECTION Description
// This is used to export ParaView renderings to a variety of vector graphics
// formats.
#ifndef vtkPVGL2PSExporter_h
#define vtkPVGL2PSExporter_h
#include "vtkGL2PSExporter.h"
#include "vtkPVVTKExtensionsRenderingModule.h" // needed for export macro
#include "vtkStdString.h" // for vtkStdString
class VTKPVVTKEXTENSIONSRENDERING_EXPORT vtkPVGL2PSExporter
: public vtkGL2PSExporter
{
public:
static vtkPVGL2PSExporter* New();
vtkTypeMacro(vtkPVGL2PSExporter, vtkGL2PSExporter);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Set/Get the name of the output file.
vtkSetMacro(FileName, const char *)
const char *GetFileName()
{
return this->FileName.c_str();
}
// Description:
// If Write3DPropsAsRasterImage is true, add all instances of
// vtkCubeAxesActors to the RenderExclusions.
vtkSetMacro(ExcludeCubeAxesActorsFromRasterization, int)
vtkGetMacro(ExcludeCubeAxesActorsFromRasterization, int)
vtkBooleanMacro(ExcludeCubeAxesActorsFromRasterization, int)
//BTX
protected:
vtkPVGL2PSExporter();
~vtkPVGL2PSExporter();
void WriteData();
vtkStdString FileName;
int ExcludeCubeAxesActorsFromRasterization;
private:
vtkPVGL2PSExporter(const vtkPVGL2PSExporter&); // Not implemented
void operator=(const vtkPVGL2PSExporter&); // Not implemented
//ETX
};
#endif
|