VTK
vtkPlotBag.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkPlotBag.h
5 
6  Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7  All rights reserved.
8  See Copyright.txt or http://www.kitware.com/Copyright.htm 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 =========================================================================*/
15 
36 #ifndef vtkPlotBag_h
37 #define vtkPlotBag_h
38 
39 #include "vtkChartsCoreModule.h" // For export macro
40 #include "vtkPlotPoints.h"
41 
42 class vtkPen;
43 
44 class VTKCHARTSCORE_EXPORT vtkPlotBag : public vtkPlotPoints
45 {
46 public:
47  vtkTypeMacro(vtkPlotBag, vtkPlotPoints);
48  virtual void PrintSelf(ostream &os, vtkIndent indent);
49 
53  static vtkPlotBag *New();
54 
60  virtual void Update();
61 
65  virtual bool Paint(vtkContext2D *painter);
66 
73  virtual bool PaintLegend(vtkContext2D *painter, const vtkRectf& rect,
74  int legendIndex);
75 
80  virtual vtkStringArray *GetLabels();
81 
86  virtual vtkStdString GetTooltipLabel(const vtkVector2d &plotPos,
87  vtkIdType seriesIndex,
88  vtkIdType segmentIndex);
89 
91 
98  virtual void SetInputData(vtkTable *table);
99  virtual void SetInputData(vtkTable *table, const vtkStdString &yColumn,
100  const vtkStdString &densityColumn);
101  virtual void SetInputData(vtkTable *table, const vtkStdString &xColumn,
102  const vtkStdString &yColumn,
103  const vtkStdString &densityColumn);
105 
106  virtual void SetInputData(vtkTable *table, vtkIdType xColumn,
107  vtkIdType yColumn,
108  vtkIdType densityColumn);
109 
111 
115  vtkSetMacro(BagVisible, bool);
116  vtkGetMacro(BagVisible, bool);
118 
120 
123  void SetLinePen(vtkPen* pen);
124  vtkGetObjectMacro(LinePen, vtkPen);
126 
132  void SetPointPen(vtkPen* pen) { this->SetPen(pen); }
133  vtkPen* GetPointPen() { return this->GetPen(); }
134 
135 protected:
136  vtkPlotBag();
137  ~vtkPlotBag();
138 
140 
145 
146 private:
147  vtkPlotBag(const vtkPlotBag &) VTK_DELETE_FUNCTION;
148  void operator=(const vtkPlotBag &) VTK_DELETE_FUNCTION;
149 };
150 
151 #endif //vtkPlotBag_h
Wrapper around std::string to keep symbols short.
Definition: vtkStdString.h:47
bool BagVisible
Definition: vtkPlotBag.h:141
vtkPen * LinePen
Definition: vtkPlotBag.h:144
virtual bool Paint(vtkContext2D *painter)
Paint event for the XY plot, called whenever the chart needs to be drawn.
void SetPen(vtkPen *pen)
Set/get the vtkPen object that controls how this plot draws (out)lines.
Class for drawing an points given two columns from a vtkTable.
Definition: vtkPlotPoints.h:53
void SetPointPen(vtkPen *pen)
Set/get the vtkPen object that controls how this plot draws points.
Definition: vtkPlotBag.h:132
a vtkAbstractArray subclass for strings
int vtkIdType
Definition: vtkType.h:287
vtkPen * GetPen()
Set/get the vtkPen object that controls how this plot draws (out)lines.
Class for drawing 2D primitives to a graphical context.
Definition: vtkContext2D.h:57
a simple class to control print indentation
Definition: vtkIndent.h:39
represent and manipulate 2D points
Definition: vtkPoints2D.h:36
virtual vtkStringArray * GetLabels()
Get the plot labels.
vtkPoints2D * Q3Points
Definition: vtkPlotBag.h:143
abstract superclass for arrays of numeric data
Definition: vtkDataArray.h:54
virtual bool PaintLegend(vtkContext2D *painter, const vtkRectf &rect, int legendIndex)
Paint legend event for the XY plot, called whenever the legend needs the plot items symbol/mark/line ...
vtkPoints2D * MedianPoints
Definition: vtkPlotBag.h:142
provides a pen that draws the outlines of shapes drawn by vtkContext2D.
Definition: vtkPen.h:39
vtkPen * GetPointPen()
Definition: vtkPlotBag.h:133
vtkSetMacro(IgnoreDriverBugs, bool)
When set known driver bugs are ignored during driver feature detection.
virtual void PrintSelf(ostream &os, vtkIndent indent)
Methods invoked by print to print information about the object including superclasses.
A table, which contains similar-typed columns of data.
Definition: vtkTable.h:68
virtual void SetInputData(vtkTable *table)
This is a convenience function to set the input table and the x, y column for the plot...
static vtkPlotPoints * New()
Creates a 2D Chart object.
bool UpdateTableCache(vtkTable *table)
Update the table cache.
virtual void Update()
Perform any updates to the item that may be necessary before rendering.
virtual vtkStdString GetTooltipLabel(const vtkVector2d &plotPos, vtkIdType seriesIndex, vtkIdType segmentIndex)
Generate and return the tooltip label string for this plot The segmentIndex parameter is ignored...
Class for drawing an a bagplot.
Definition: vtkPlotBag.h:44