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
|
/*=========================================================================
Program: ParaView
Module: vtkPVBoxChartRepresentation.cxx
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.
=========================================================================*/
#include "vtkPVBoxChartRepresentation.h"
#include "vtkAxis.h"
#include "vtkChartBox.h"
#include "vtkObjectFactory.h"
#include "vtkPen.h"
#include "vtkPlot.h"
#include "vtkPlotBox.h"
#include "vtkPVContextView.h"
#include "vtkTable.h"
#include "vtkStdString.h"
#include <map>
#include <string>
class vtkPVBoxChartRepresentation::vtkInternals
{
public:
// Refer to vtkPVPlotMatrixRepresentation when time comes to update this
// representation to respect the order in which the series are listed.
std::map<std::string, bool> SeriesVisibilities;
std::map<std::string, vtkColor3d> SeriesColors;
};
vtkStandardNewMacro(vtkPVBoxChartRepresentation);
//----------------------------------------------------------------------------
vtkPVBoxChartRepresentation::vtkPVBoxChartRepresentation()
: LineThickness(2),
LineStyle(0),
Legend(true)
{
this->Internals = new vtkInternals();
this->Color[0] = this->Color[1] = this->Color[2] = 0.0;
}
//----------------------------------------------------------------------------
vtkPVBoxChartRepresentation::~vtkPVBoxChartRepresentation()
{
delete this->Internals;
this->Internals = NULL;
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
bool vtkPVBoxChartRepresentation::AddToView(vtkView* view)
{
if (!this->Superclass::AddToView(view))
{
return false;
}
if (this->GetChart())
{
this->GetChart()->SetVisible(this->GetVisibility());
}
return true;
}
//----------------------------------------------------------------------------
bool vtkPVBoxChartRepresentation::RemoveFromView(vtkView* view)
{
if (this->GetChart())
{
this->GetChart()->GetPlot(0)->SetInputData(0);
this->GetChart()->SetVisible(false);
}
return this->Superclass::RemoveFromView(view);
}
//----------------------------------------------------------------------------
vtkChartBox* vtkPVBoxChartRepresentation::GetChart()
{
if (this->ContextView)
{
return vtkChartBox::SafeDownCast(
this->ContextView->GetContextItem());
}
return 0;
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::SetVisibility(bool visible)
{
this->Superclass::SetVisibility(visible);
vtkChartBox* chart = this->GetChart();
if (chart && !visible)
{
// Refer to vtkChartRepresentation::PrepareForRendering() documentation to
// know why this is cannot be done in PrepareForRendering();
chart->SetVisible(false);
}
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::SetSeriesVisibility(
const char* series, bool visibility)
{
assert(series != NULL);
this->Internals->SeriesVisibilities[series] = visibility;
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::SetSeriesColor(const char* seriesname,
double r, double g, double b)
{
assert(seriesname != NULL);
this->Internals->SeriesColors[seriesname] = vtkColor3d(r, g, b);
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::ClearSeriesVisibilities()
{
this->Internals->SeriesVisibilities.clear();
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::ClearSeriesColors()
{
this->Internals->SeriesColors.clear();
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVBoxChartRepresentation::PrepareForRendering()
{
this->Superclass::PrepareForRendering();
vtkChartBox* chart = this->GetChart();
vtkPlotBox* plot = vtkPlotBox::SafeDownCast(chart->GetPlot(0));
assert(plot);
vtkTable* plotInput = this->GetLocalOutput();
chart->SetVisible(plotInput != NULL && this->GetVisibility());
chart->SetShowLegend(this->Legend);
plot->GetPen()->SetWidth(this->LineThickness);
plot->GetPen()->SetLineType(this->LineStyle);
plot->GetPen()->SetColorF(this->Color[0], this->Color[1], this->Color[2]);
plot->GetPen()->SetOpacityF(1.0);
if (plotInput)
{
// only consider the first vtkTable.
plot->SetInputData(plotInput);
chart->SetColumnVisibilityAll(true);
vtkIdType numCols = plotInput->GetNumberOfColumns();
for (vtkIdType cc = 0; cc < numCols; cc++)
{
std::string name = plotInput->GetColumnName(cc);
std::map<std::string, bool>::iterator iter =
this->Internals->SeriesVisibilities.find(name);
if (iter != this->Internals->SeriesVisibilities.end() &&
iter->second == true)
{
chart->SetColumnVisibility(name, true);
}
else
{
chart->SetColumnVisibility(name, false);
}
std::map<std::string, vtkColor3d>::iterator citer =
this->Internals->SeriesColors.find(name);
if (citer != this->Internals->SeriesColors.end())
{
plot->SetColumnColor(name, citer->second.GetData());
}
}
}
if (chart->GetYAxis())
{
chart->GetYAxis()->SetTitle("");
}
}
|