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 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
|
/*=========================================================================
Program: ParaView
Module: pqPlotMatrixDisplayPanel.h
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#include "vtkPVPlotMatrixRepresentation.h"
#include "vtkAnnotationLink.h"
#include "vtkObjectFactory.h"
#include "vtkPlotPoints.h"
#include "vtkPVContextView.h"
#include "vtkScatterPlotMatrix.h"
#include "vtkSmartPointer.h"
#include "vtkStdString.h"
#include "vtkStringArray.h"
#include "vtkTable.h"
#include <set>
#include <string>
#include <utility>
#include <vector>
vtkStandardNewMacro(vtkPVPlotMatrixRepresentation);
class vtkPVPlotMatrixRepresentation::vtkInternals
{
public:
std::vector<std::pair<std::string, bool> > SeriesVisibilities;
vtkSmartPointer<vtkStringArray> GetOrderedVisibleColumnNames(vtkTable* table)
{
vtkSmartPointer<vtkStringArray> result =
vtkSmartPointer<vtkStringArray>::New();
std::set<std::string> columnNames;
vtkIdType numCols = table->GetNumberOfColumns();
for (vtkIdType cc=0; cc < numCols; cc++)
{
columnNames.insert(table->GetColumnName(cc));
}
for (size_t cc=0; cc < this->SeriesVisibilities.size(); ++cc)
{
if (this->SeriesVisibilities[cc].second == true &&
columnNames.find(this->SeriesVisibilities[cc].first) != columnNames.end())
{
result->InsertNextValue(this->SeriesVisibilities[cc].first.c_str());
}
}
return result;
}
bool GetSeriesVisibility(const std::string& name)
{
for (size_t cc=0; cc < this->SeriesVisibilities.size(); ++cc)
{
if (this->SeriesVisibilities[cc].first == name)
{
return this->SeriesVisibilities[cc].second;
}
}
return false;
}
};
//----------------------------------------------------------------------------
vtkPVPlotMatrixRepresentation::vtkPVPlotMatrixRepresentation()
{
this->Internals = new vtkInternals();
// default colors are black (0, 0, 0)
for(int i = 0; i < 3; i++)
{
this->ScatterPlotColor[i] = 0;
this->ActivePlotColor[i] = 0;
this->HistogramColor[i] = 0;
}
this->ScatterPlotColor[3] = 255;
this->ActivePlotColor[3] = 255;
this->HistogramColor[3] = 255;
this->ScatterPlotMarkerStyle = vtkPlotPoints::CIRCLE;
this->ActivePlotMarkerStyle = vtkPlotPoints::CIRCLE;
this->ScatterPlotMarkerSize = 5.0;
this->ActivePlotMarkerSize = 8.0;
}
//----------------------------------------------------------------------------
vtkPVPlotMatrixRepresentation::~vtkPVPlotMatrixRepresentation()
{
delete this->Internals;
this->Internals = NULL;
}
//----------------------------------------------------------------------------
bool vtkPVPlotMatrixRepresentation::AddToView(vtkView *view)
{
if(!this->Superclass::AddToView(view))
{
return false;
}
if(vtkScatterPlotMatrix *plotMatrix = this->GetPlotMatrix())
{
plotMatrix->SetVisible(this->GetVisibility());
}
return true;
}
//----------------------------------------------------------------------------
bool vtkPVPlotMatrixRepresentation::RemoveFromView(vtkView* view)
{
if(vtkScatterPlotMatrix *plotMatrix = this->GetPlotMatrix())
{
plotMatrix->SetInput(0);
plotMatrix->SetVisible(false);
}
return this->Superclass::RemoveFromView(view);
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::PrepareForRendering()
{
this->Superclass::PrepareForRendering();
vtkScatterPlotMatrix *plotMatrix = this->GetPlotMatrix();
// set chart properties
plotMatrix->SetPlotColor(vtkScatterPlotMatrix::SCATTERPLOT,
this->ScatterPlotColor);
plotMatrix->SetPlotColor(vtkScatterPlotMatrix::HISTOGRAM,
this->HistogramColor);
plotMatrix->SetPlotColor(vtkScatterPlotMatrix::ACTIVEPLOT,
this->ActivePlotColor);
plotMatrix->SetPlotMarkerStyle(vtkScatterPlotMatrix::SCATTERPLOT,
this->ScatterPlotMarkerStyle);
plotMatrix->SetPlotMarkerStyle(vtkScatterPlotMatrix::ACTIVEPLOT,
this->ActivePlotMarkerStyle);
plotMatrix->SetPlotMarkerSize(vtkScatterPlotMatrix::SCATTERPLOT,
this->ScatterPlotMarkerSize);
plotMatrix->SetPlotMarkerSize(vtkScatterPlotMatrix::ACTIVEPLOT,
this->ActivePlotMarkerSize);
// vtkPVPlotMatrixRepresentation doesn't support multiblock of tables, so we
// only consider the first vtkTable.
vtkTable* table = this->GetLocalOutput();
plotMatrix->SetVisible(table != NULL && this->GetVisibility());
if (plotMatrix && table)
{
plotMatrix->SetInput(table);
// Set column visibilities
vtkIdType numCols = table->GetNumberOfColumns();
for (vtkIdType cc=0; cc < numCols; cc++)
{
const char* name = table->GetColumnName(cc);
plotMatrix->SetColumnVisibility(name, this->Internals->GetSeriesVisibility(name));
}
vtkSmartPointer<vtkStringArray> orderedVisibleColumns =
this->Internals->GetOrderedVisibleColumnNames(table);
// this is essential since SetVisibleColumns doesn't seem to resize the
// matrix to the new size (is that a bug?).
plotMatrix->SetSize(vtkVector2i(
orderedVisibleColumns->GetNumberOfTuples(),
orderedVisibleColumns->GetNumberOfTuples()));
// Set column order
plotMatrix->SetVisibleColumns(orderedVisibleColumns.GetPointer());
}
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetVisibility(bool visible)
{
this->Superclass::SetVisibility(visible);
vtkScatterPlotMatrix *plotMatrix = this->GetPlotMatrix();
if (plotMatrix && !visible)
{
// Refer to vtkChartRepresentation::PrepareForRendering() documentation to
// know why this is cannot be done in PrepareForRendering();
plotMatrix->SetVisible(false);
}
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetSeriesVisibility(const char* series, bool visibility)
{
assert(series != NULL);
this->Internals->SeriesVisibilities.push_back(
std::pair<std::string, bool>(series, visibility));
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::ClearSeriesVisibilities()
{
this->Internals->SeriesVisibilities.clear();
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetColor(double r, double g, double b)
{
this->ScatterPlotColor = vtkColor4ub(static_cast<unsigned char>(r * 255),
static_cast<unsigned char>(g * 255),
static_cast<unsigned char>(b * 255));
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetActivePlotColor(double r, double g, double b)
{
this->ActivePlotColor = vtkColor4ub(static_cast<unsigned char>(r * 255),
static_cast<unsigned char>(g * 255),
static_cast<unsigned char>(b * 255));
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetHistogramColor(double r, double g, double b)
{
this->HistogramColor = vtkColor4ub(static_cast<unsigned char>(r * 255),
static_cast<unsigned char>(g * 255),
static_cast<unsigned char>(b * 255));
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetMarkerStyle(int style)
{
this->ScatterPlotMarkerStyle = style;
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetActivePlotMarkerStyle(int style)
{
this->ActivePlotMarkerStyle = style;
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetMarkerSize(double size)
{
this->ScatterPlotMarkerSize = size;
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::SetActivePlotMarkerSize(double size)
{
this->ActivePlotMarkerSize = size;
this->Modified();
}
//----------------------------------------------------------------------------
void vtkPVPlotMatrixRepresentation::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
//----------------------------------------------------------------------------
vtkScatterPlotMatrix* vtkPVPlotMatrixRepresentation::GetPlotMatrix() const
{
if(this->ContextView)
{
return vtkScatterPlotMatrix::SafeDownCast(this->ContextView->GetContextItem());
}
return 0;
}
|