/usr/include/paraview/pqChartPixelScale.h is in paraview-dev 4.0.1-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*=========================================================================
Program: ParaView
Module: pqChartPixelScale.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.
=========================================================================*/
/// \file pqChartPixelScale.h
/// \date 7/25/2006
#ifndef _pqChartPixelScale_h
#define _pqChartPixelScale_h
#include "pqComponentsModule.h"
class pqChartPixelScaleInternal;
class pqChartValue;
/// \class pqChartPixelScale
/// \brief
/// The pqChartPixelScale class maps chart values to pixel locations.
class PQCOMPONENTS_EXPORT pqChartPixelScale
{
public:
enum ValueScale {
Linear, ///< Use a linear scale.
Logarithmic ///< Use a logarithmic scale.
};
public:
pqChartPixelScale();
~pqChartPixelScale();
/// \name Value Parameters
//@{
/// \brief
/// Sets the value range.
/// \param min The minimum value.
/// \param max The maximum value.
/// \return
/// True if the pixel-value scale changed.
bool setValueRange(const pqChartValue &min, const pqChartValue &max);
/// \brief
/// Gets the value range.
/// \param range Used to return the difference between the minimum
/// and maximum values.
void getValueRange(pqChartValue &range) const;
/// \brief
/// Sets the minimum value.
/// \param min The minimum value.
/// \return
/// True if the pixel-value scale changed.
bool setMinValue(const pqChartValue &min);
/// \brief
/// Gets the minimum value.
/// \return
/// The minimum value.
const pqChartValue &getMinValue() const;
/// \brief
/// Sets the maximum value.
/// \param max The maximum value.
/// \return
/// True if the pixel-value scale changed.
bool setMaxValue(const pqChartValue &max);
/// \brief
/// Gets the maximum value.
/// \return
/// The maximum value.
const pqChartValue &getMaxValue() const;
//@}
/// \name Pixel Parameters
//@{
/// \brief
/// Sets the pixel range.
/// \param min The minimum pixel location.
/// \param max The maximum pixel location.
/// \return
/// True if the pixel-value scale changed.
bool setPixelRange(int min, int max);
/// \brief
/// Gets the pixel range.
///
/// The pixel range is always returned as a positive number.
///
/// \return
/// The difference between the minimum and maximum pixels.
int getPixelRange() const;
/// \brief
/// Sets the minimum pixel location.
/// \param min The minimum pixel location.
/// \return
/// True if the pixel-value scale changed.
bool setMinPixel(int min);
/// \brief
/// Gets the minimum pixel location.
/// \return
/// The minimum pixel location.
int getMinPixel() const;
/// \brief
/// Sets the maximum pixel location.
/// \param max The maximum pixel location.
/// \return
/// True if the pixel-value scale changed.
bool setMaxPixel(int max);
/// \brief
/// Gets the maximum pixel location.
/// \return
/// The maximum pixel location.
int getMaxPixel() const;
//@}
/// \name Pixel to Value Mapping
//@{
/// \brief
/// Maps a value to a pixel.
/// \param value The data value.
/// \return
/// The pixel location for the given value.
/// \sa pqChartPixelScale::isValid(),
/// pqChartPixelScale::getValue(int)
int getPixel(const pqChartValue &value) const;
/// \brief
/// Maps a value to a pixel.
/// \param value The data value.
/// \return
/// The pixel location for the given value.
/// \sa pqChartPixelScale::isValid(),
/// pqChartPixelScale::getValue(int)
float getPixelF(const pqChartValue &value) const;
/// \brief
/// Maps a pixel to a value.
/// \param pixel The pixel location.
/// \param value Used to return the value equivalent to the pixel
/// location.
/// \sa pqChartPixelScale::isValid(),
/// pqChartPixelScale::getPixel(const pqChartValue &)
void getValue(int pixel, pqChartValue &value) const;
/// \brief
/// Used to determine if the pixel/value mapping is valid.
/// \return
/// True if the pixel/value mapping is valid.
bool isValid() const;
/// \brief
/// Used to determine if zero is in the value range.
/// \return
/// True if zero is in the value range.
bool isZeroInRange() const;
/// \brief
/// Sets the scale type.
/// \param scale The new scale type.
void setScaleType(ValueScale scale);
/// \brief
/// Gets the scale type.
/// \return
/// The current scale type.
ValueScale getScaleType() const;
/// \brief
/// Gets wether or not logarithmic scale can be used.
/// \return
/// True if logarithmic scale can be used.
bool isLogScaleAvailable() const;
//@}
public:
static bool isLogScaleValid(const pqChartValue &min,
const pqChartValue &max);
public:
static const double MinLogValue; ///< Stores the log scale minimum.
private:
pqChartPixelScaleInternal *Internal; ///< Stores the pixel/range mapping.
};
#endif
|