/usr/include/paraview/vtkPVContextView.h is in paraview-dev 4.0.1-1ubuntu1.
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 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | /*=========================================================================
Program: ParaView
Module: vtkPVContextView.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 vtkPVContextView
// .SECTION Description
// vtkPVContextView adopts vtkContextView so that it can be used in ParaView
// configurations.
#ifndef __vtkPVContextView_h
#define __vtkPVContextView_h
#include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
#include "vtkPVView.h"
class vtkAbstractContextItem;
class vtkChart;
class vtkChartRepresentation;
class vtkContextView;
class vtkInformationIntegerKey;
class vtkRenderWindow;
class vtkSelection;
class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVContextView : public vtkPVView
{
public:
vtkTypeMacro(vtkPVContextView, vtkPVView);
void PrintSelf(ostream& os, vtkIndent indent);
// Description:
// Triggers a high-resolution render.
// @CallOnAllProcessess
virtual void StillRender();
// Description:
// Triggers a interactive render. Based on the settings on the view, this may
// result in a low-resolution rendering or a simplified geometry rendering.
// @CallOnAllProcessess
virtual void InteractiveRender();
// Description:
// Get the context view.
vtkGetObjectMacro(ContextView, vtkContextView);
// Description:
// Get the context item.
virtual vtkAbstractContextItem* GetContextItem() = 0;
// Description:
vtkGetObjectMacro(RenderWindow, vtkRenderWindow);
// Description:
// Initialize the view with an identifier. Unless noted otherwise, this method
// must be called before calling any other methods on this class.
// @CallOnAllProcessess
virtual void Initialize(unsigned int id);
// Description:
// Overridden to ensure that in multi-client configurations, same set of
// representations are "dirty" on all processes to avoid race conditions.
virtual void Update();
// Description:
// Representations can use this method to set the selection for a particular
// representation. Subclasses override this method to pass on the selection to
// the chart using annotation link. Note this is meant to pass selection for
// the local process alone. The view does not manage data movement for the
// selection.
virtual void SetSelection(vtkChartRepresentation* repr,
vtkSelection* selection) = 0;
//BTX
protected:
vtkPVContextView();
~vtkPVContextView();
// Description:
// Actual rendering implementation.
virtual void Render(bool interactive);
// Description:
// Callbacks called when the primary "renderer" in the vtkContextView
// starts/ends rendering. Note that this is called on the renderer, hence
// before the rendering cleanup calls like SwapBuffers called by the
// render-window.
void OnStartRender();
void OnEndRender();
vtkContextView* ContextView;
vtkRenderWindow* RenderWindow;
private:
vtkPVContextView(const vtkPVContextView&); // Not implemented
void operator=(const vtkPVContextView&); // Not implemented
//ETX
};
#endif
|