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
|
/*=========================================================================
Program: Visualization Toolkit
Module: vtkChart2DHistogram.cxx
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm 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 "vtkChartHistogram2D.h"
#include "vtkContext2D.h"
#include "vtkBrush.h"
#include "vtkPen.h"
#include "vtkContextScene.h"
#include "vtkContextMouseEvent.h"
#include "vtkTextProperty.h"
#include "vtkAxis.h"
#include "vtkPlotHistogram2D.h"
#include "vtkColorLegend.h"
#include "vtkTooltipItem.h"
#include "vtkSmartPointer.h"
#include "vtkObjectFactory.h"
//-----------------------------------------------------------------------------
vtkStandardNewMacro(vtkChartHistogram2D);
//-----------------------------------------------------------------------------
vtkChartHistogram2D::vtkChartHistogram2D()
{
// Now for the 2D histogram
this->Histogram = vtkSmartPointer<vtkPlotHistogram2D>::New();
this->AddPlot(this->Histogram);
this->RemoveItem(this->Legend);
this->Legend = vtkSmartPointer<vtkColorLegend>::New();
this->AddItem(this->Legend);
// Re-add tooltip, making it the last ContextItem to be painted
this->RemoveItem(this->Tooltip);
this->AddItem(this->Tooltip);
}
//-----------------------------------------------------------------------------
vtkChartHistogram2D::~vtkChartHistogram2D()
{
}
//-----------------------------------------------------------------------------
void vtkChartHistogram2D::Update()
{
this->Histogram->Update();
this->Legend->Update();
this->vtkChartXY::Update();
}
//-----------------------------------------------------------------------------
void vtkChartHistogram2D::SetInputData(vtkImageData *data, vtkIdType z)
{
this->Histogram->SetInputData(data, z);
}
//-----------------------------------------------------------------------------
void vtkChartHistogram2D::SetTransferFunction(vtkScalarsToColors *function)
{
this->Histogram->SetTransferFunction(function);
vtkColorLegend *legend = vtkColorLegend::SafeDownCast(this->Legend);
if (legend)
{
legend->SetTransferFunction(function);
}
}
//-----------------------------------------------------------------------------
bool vtkChartHistogram2D::UpdateLayout(vtkContext2D *painter)
{
this->vtkChartXY::UpdateLayout(painter);
vtkColorLegend *legend = vtkColorLegend::SafeDownCast(this->Legend);
if (legend)
{
legend->SetPosition(vtkRectf(this->Point2[0] + 5, this->Point1[1],
this->Legend->GetSymbolWidth(),
this->Point2[1] - this->Point1[1]));
}
this->Legend->Update();
return true;
}
//-----------------------------------------------------------------------------
bool vtkChartHistogram2D::Hit(const vtkContextMouseEvent &mouse)
{
vtkVector2i pos(mouse.GetScreenPos());
if (pos[0] > this->Point1[0] - 10 &&
pos[0] < this->Point2[0] + 10 &&
pos[1] > this->Point1[1] &&
pos[1] < this->Point2[1])
{
return true;
}
else
{
return false;
}
}
//-----------------------------------------------------------------------------
vtkPlot* vtkChartHistogram2D::GetPlot(vtkIdType index)
{
if (index == 0)
{
return this->Histogram;
}
return 0;
}
//-----------------------------------------------------------------------------
void vtkChartHistogram2D::PrintSelf(ostream &os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
}
|