ParaView
vtkPVPlotMatrixRepresentation.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: ParaView
4  Module: pqPlotMatrixDisplayPanel.h
5 
6  Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
7  All rights reserved.
8 
9  ParaView is a free software; you can redistribute it and/or modify it
10  under the terms of the ParaView license version 1.2.
11 
12  See License_v1.2.txt for the full ParaView license.
13  A copy of this license can be obtained by contacting
14  Kitware Inc.
15  28 Corporate Drive
16  Clifton Park, NY 12065
17  USA
18 
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
23 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 
31 =========================================================================*/
46 #ifndef vtkPVPlotMatrixRepresentation_h
47 #define vtkPVPlotMatrixRepresentation_h
48 
49 #include "vtkChartRepresentation.h"
50 #include "vtkColor.h" // for ivars
51 #include "vtkPVClientServerCoreRenderingModule.h" //needed for exports
52 
53 class vtkScatterPlotMatrix;
54 class vtkStringArray;
55 
56 class VTKPVCLIENTSERVERCORERENDERING_EXPORT vtkPVPlotMatrixRepresentation
57  : public vtkChartRepresentation
58 {
59 public:
62  void PrintSelf(ostream& os, vtkIndent indent);
63 
67  virtual void SetVisibility(bool visible);
68 
70 
75  void SetSeriesVisibility(const char* series, bool visibility);
76  void ClearSeriesVisibilities();
78 
82  void SetColor(double r, double g, double b);
83 
87  void SetActivePlotColor(double r, double g, double b);
88 
92  void SetHistogramColor(double r, double g, double b);
93 
97  void SetMarkerStyle(int style);
98 
102  void SetActivePlotMarkerStyle(int style);
103 
107  void SetMarkerSize(double size);
108 
112  void SetActivePlotMarkerSize(double size);
113 
117  vtkScatterPlotMatrix* GetPlotMatrix() const;
118 
119 protected:
122 
127  virtual void PrepareForRendering();
128 
132  virtual bool AddToView(vtkView* view);
133 
137  virtual bool RemoveFromView(vtkView* view);
138 
139 private:
141  void operator=(const vtkPVPlotMatrixRepresentation&) VTK_DELETE_FUNCTION;
142 
143  class vtkInternals;
144  vtkInternals* Internals;
145 
146  vtkColor4ub ActivePlotColor;
147  vtkColor4ub ScatterPlotColor;
148  vtkColor4ub HistogramColor;
149  int ScatterPlotMarkerStyle;
150  int ActivePlotMarkerStyle;
151  double ScatterPlotMarkerSize;
152  double ActivePlotMarkerSize;
153 };
154 
155 #endif
static vtkChartRepresentation * New()
virtual void PrepareForRendering()
This method is called before actual render if this->MTime was modified since the last time this metho...
virtual void SetVisibility(bool visible)
Set visibility of the representation.
virtual bool AddToView(vtkView *view)
Adds the representation to the view.
vtkChartRepresentation subclass for scatter-plot-matrix representation.
vtkChartRepresentation is the base representation for charting representations.
void PrintSelf(ostream &os, vtkIndent indent)
virtual bool RemoveFromView(vtkView *view)
Removes the representation to the view.