/usr/include/paraview/vtkPVPlotMatrixView.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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 | /*=========================================================================
Program: ParaView
Module: vtkPVPlotMatrixView.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.
=========================================================================*/
#ifndef __vtkPVPlotMatrixView_h
#define __vtkPVPlotMatrixView_h
#include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
#include "vtkPVContextView.h"
class vtkScatterPlotMatrix;
class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVPlotMatrixView : public vtkPVContextView
{
public:
static vtkPVPlotMatrixView* New();
vtkTypeMacro(vtkPVPlotMatrixView, vtkPVContextView);
void PrintSelf(ostream &os, vtkIndent indent);
vtkAbstractContextItem* GetContextItem();
// 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);
// Description:
// Get/set the active plot in the scatter plot matrix.
void SetActivePlot(int i, int j);
int GetActiveRow();
int GetActiveColumn();
// Description:
// Clear the animation path, ensuring it is empty.
void ClearAnimationPath();
// Description:
// Append to the animation path of the scatter plot matrix.
void AddAnimationPath(int i, int j);
// Description:
// Append to the animation path of the scatter plot matrix.
void StartAnimationPath();
// Description:
// Push the animation forward a frame.
void AdvanceAnimationPath();
// Description:
// Set the title of the active plot.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetScatterPlotTitle(const char* title);
const char* GetScatterPlotTitle();
// Description:
// Set the active plot title's font.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetScatterPlotTitleFont(const char* family, int pointSize, bool bold, bool italic);
const char* GetScatterPlotTitleFontFamily();
int GetScatterPlotTitleFontSize();
int GetScatterPlotTitleFontBold();
int GetScatterPlotTitleFontItalic();
// Description:
// Set the active plot title's color.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetScatterPlotTitleColor(double red, double green, double blue);
double* GetScatterPlotTitleColor();
// Description:
// Set the active plot title's alignment.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetScatterPlotTitleAlignment(int alignment);
int GetScatterPlotTitleAlignment();
// Description:
// Set the gutter that should be left between the charts in the matrix.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
virtual void SetGutter(float x, float y);
// Description:
// Set/get the borders of the chart matrix (space in pixels around each chart).
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
virtual void SetBorders(int left, int bottom, int right, int top);
// Description:
// Sets whether or not the grid for the given axis is visible given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetGridVisibility(int plotType, bool visible);
int GetGridVisibility(int plotType);
// Description:
// Sets the background color for the chart given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetBackgroundColor(int plotType,
double red, double green, double blue, double alpha=0.0);
double* GetBackgroundColor(int plotType);
// Description:
// Sets the color for the axes given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetAxisColor(int plotType, double red, double green, double blue);
double* GetAxisColor(int plotType);
// Description:
// Sets the color for the axes given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetGridColor(int plotType, double red, double green, double blue);
double* GetGridColor(int plotType);
// Description:
// Sets whether or not the labels for the axes are visible, given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetAxisLabelVisibility(int plotType, bool visible);
int GetAxisLabelVisibility(int plotType);
// Description:
// Set the axis label font for the axes given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetAxisLabelFont(int plotType, const char* family, int pointSize, bool bold,
bool italic);
const char* GetAxisLabelFontFamily(int plotType);
int GetAxisLabelFontSize(int plotType);
int GetAxisLabelFontBold(int plotType);
int GetAxisLabelFontItalic(int plotType);
// Description:
// Sets the axis label color for the axes given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetAxisLabelColor(int plotType, double red, double green, double blue);
double* GetAxisLabelColor(int plotType);
// Description:
// Sets the axis label notation for the axes given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetAxisLabelNotation(int plotType, int notation);
int GetAxisLabelNotation(int plotType);
// Description:
// Sets the axis label precision for the axes given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetAxisLabelPrecision(int plotType, int precision);
int GetAxisLabelPrecision(int plotType);
// Description:
// Set chart's tooltip notation and precision, given a plot type, which refers to
// vtkScatterPlotMatrix::{SCATTERPLOT, HISTOGRAM, ACTIVEPLOT}.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetTooltipNotation(int plotType, int notation);
void SetTooltipPrecision(int plotType, int precision);
int GetTooltipNotation(int plotType);
int GetTooltipPrecision(int plotType);
// Description:
// Set the scatter plot title's color.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetScatterPlotSelectedRowColumnColor(double red, double green, double blue, double alpha);
double* GetScatterPlotSelectedRowColumnColor();
// Description:
// Set the scatter plot title's color.
// These methods should not be called directly. They are made public only so
// that the client-server-stream-interpreter can invoke them. Use the
// corresponding properties to change these values.
void SetScatterPlotSelectedActiveColor(double red, double green, double blue, double alpha);
double* GetScatterPlotSelectedActiveColor();
// Description:
// Update all the settings
void UpdateSettings();
protected:
vtkPVPlotMatrixView();
~vtkPVPlotMatrixView();
// Description:
// The callback function when SelectionChangedEvent is invoked from
// the Big chart in vtkScatterPlotMatrix.
void PlotMatrixSelectionCallback(vtkObject*, unsigned long, void*);
private:
vtkPVPlotMatrixView(const vtkPVPlotMatrixView&); // Not implemented.
void operator=(const vtkPVPlotMatrixView&); // Not implemented.
vtkScatterPlotMatrix *PlotMatrix;
};
#endif
|