/usr/include/KChart/KChartPosition.h is in libkchart-dev 2.6.0-2.
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 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 | /**
* Copyright (C) 2001-2015 Klaralvdalens Datakonsult AB. All rights reserved.
*
* This file is part of the KD Chart library.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef KCHARTPOSITION_H
#define KCHARTPOSITION_H
#include <QDebug>
#include <Qt>
#include <QMetaType>
#include <QCoreApplication>
#include "KChartGlobal.h"
#include "KChartEnums.h"
QT_BEGIN_NAMESPACE
class QStringList;
class QByteArray;
template <typename T> class QList;
QT_END_NAMESPACE
namespace KChart {
/**
* \class Position KChartPosition.h
* \brief Defines a position, using compass terminology.
*
* Using KChartPosition you can specify one of nine
* pre-defined, logical points (see the \c static \c const getter
* methods below), in a similar way, as you would use a
* compass to navigate on a map.
*
* For each piece (slice/bar, etc.) of a chart for example, you can specify the position of the value
* labels. Figure 1 illustrates which cardinal points refer to which points
* on a pie or bar chart, resp. In the graphic, "N" stands for North, "S" for South, etc.
*
* \image html position-alignments.png "Figure 1: Different interpretations of KChart::Position within KChart"
*
* \note Often you will declare a \c Position together with the
* RelativePosition class, to specify a logical point,
* which then will be used to layout your chart at runtime,
* e.g. for specifying the location of a floating Legend box.
*
* For comparing a Position's value with a switch () statement,
* you can use numeric values defined in KChartEnums, like this:
\verbatim
switch ( yourPosition().value() ) {
case KChartEnums::PositionNorthWest:
// your code ...
break;
case KChartEnums::PositionNorth:
// your code ...
break;
}
\endverbatim
* \sa RelativePosition, KChartEnums::PositionValue
*/
class KCHART_EXPORT Position
{
Q_DECLARE_TR_FUNCTIONS( Position )
Position( int value );
public:
Position();
Position( KChartEnums::PositionValue value ); // intentionally non-explicit
KChartEnums::PositionValue value() const;
const char *name() const;
QString printableName() const;
bool isUnknown() const;
bool isWestSide() const;
bool isNorthSide() const;
bool isEastSide() const;
bool isSouthSide() const;
bool isCorner() const;
bool isPole() const;
bool isFloating() const;
static const Position& Unknown;
static const Position& Center;
static const Position& NorthWest;
static const Position& North;
static const Position& NorthEast;
static const Position& East;
static const Position& SouthEast;
static const Position& South;
static const Position& SouthWest;
static const Position& West;
static const Position& Floating;
// boolean flags: 1, 2, 4, 8, ...
enum Option {
IncludeCenter = 0x1,
IncludeFloating = 0x2 };
Q_DECLARE_FLAGS( Options, Option )
// Unfortunately the following typecast from int to Options is needed
// as the | operator is not defined yet, this will be done by
// the makro Q_DECLARE_OPERATORS_FOR_FLAGS( KChart::Position::Options )
// at the bottom of this file.
static QList<QByteArray> names( Options options = Options(IncludeCenter | IncludeFloating) );
static QStringList printableNames( Options options = Options(IncludeCenter | IncludeFloating) );
static Position fromName(const char * name);
static Position fromName(const QByteArray & name);
bool operator==( const Position& ) const;
bool operator==( int ) const;
bool operator!=( const Position& ) const;
bool operator!=( int ) const;
private:
int m_value;
}; // End of class Position
inline bool Position::operator!=( const Position & other ) const { return !operator==( other ); }
inline bool Position::operator!=( int other ) const { return !operator==( other ); }
/**
* @brief Stores the absolute target points of a Position
* \internal
*/
class KCHART_EXPORT PositionPoints
{
public:
PositionPoints() {} // all points get initialized with the default automatically
PositionPoints(
QPointF center,
QPointF northWest,
QPointF north,
QPointF northEast,
QPointF east,
QPointF southEast,
QPointF south,
QPointF southWest,
QPointF west )
: mPositionCenter( center )
, mPositionNorthWest( northWest )
, mPositionNorth( north )
, mPositionNorthEast( northEast )
, mPositionEast( east )
, mPositionSouthEast( southEast )
, mPositionSouth( south )
, mPositionSouthWest( southWest )
, mPositionWest( west )
{}
PositionPoints(
const QPointF& onePointForAllPositions )
: mPositionCenter( onePointForAllPositions )
, mPositionNorthWest( onePointForAllPositions )
, mPositionNorth( onePointForAllPositions )
, mPositionNorthEast( onePointForAllPositions )
, mPositionEast( onePointForAllPositions )
, mPositionSouthEast( onePointForAllPositions )
, mPositionSouth( onePointForAllPositions )
, mPositionSouthWest( onePointForAllPositions )
, mPositionWest( onePointForAllPositions )
{}
PositionPoints(
const QRectF& rect )
{
const QRectF r( rect.normalized() );
mPositionCenter = r.center();
mPositionNorthWest = r.topLeft();
mPositionNorth = QPointF(r.center().x(), r.top());
mPositionNorthEast = r.topRight();
mPositionEast = QPointF(r.right(), r.center().y());
mPositionSouthEast = r.bottomRight();
mPositionSouth = QPointF(r.center().x(), r.bottom());
mPositionSouthWest = r.bottomLeft();
mPositionWest = QPointF(r.left(), r.center().y());
}
PositionPoints(
QPointF northWest,
QPointF northEast,
QPointF southEast,
QPointF southWest )
: mPositionCenter( (northWest + southEast) / 2.0 )
, mPositionNorthWest( northWest )
, mPositionNorth( (northWest + northEast) / 2.0 )
, mPositionNorthEast( northEast )
, mPositionEast( (northEast + southEast) / 2.0 )
, mPositionSouthEast( southEast )
, mPositionSouth( (southWest + southEast) / 2.0 )
, mPositionSouthWest( southWest )
, mPositionWest( (northWest + southWest) / 2.0 )
{}
void setDegrees( KChartEnums::PositionValue pos, qreal degrees )
{
mapOfDegrees[pos] = degrees;
}
#if defined(Q_COMPILER_MANGLES_RETURN_TYPE)
const qreal degrees( KChartEnums::PositionValue pos ) const
#else
qreal degrees( KChartEnums::PositionValue pos ) const
#endif
{
if ( mapOfDegrees.contains(pos) )
return mapOfDegrees[pos];
return 0.0;
}
#if defined(Q_COMPILER_MANGLES_RETURN_TYPE)
const QPointF point( Position position ) const
#else
QPointF point( Position position ) const
#endif
{
//qDebug() << "point( " << position.name() << " )";
if ( position == Position::Center)
return mPositionCenter;
if ( position == Position::NorthWest)
return mPositionNorthWest;
if ( position == Position::North)
return mPositionNorth;
if ( position == Position::NorthEast)
return mPositionNorthEast;
if ( position == Position::East)
return mPositionEast;
if ( position == Position::SouthEast)
return mPositionSouthEast;
if ( position == Position::South)
return mPositionSouth;
if ( position == Position::SouthWest)
return mPositionSouthWest;
if ( position == Position::West)
return mPositionWest;
return mPositionUnknown;
}
bool isNull() const
{
return
mPositionUnknown.isNull() &&
mPositionCenter.isNull() &&
mPositionNorthWest.isNull() &&
mPositionNorth.isNull() &&
mPositionNorthEast.isNull() &&
mPositionEast.isNull() &&
mPositionSouthEast.isNull() &&
mPositionSouth.isNull() &&
mPositionSouthWest.isNull() &&
mPositionWest.isNull();
}
QPointF mPositionUnknown;
QPointF mPositionCenter;
QPointF mPositionNorthWest;
QPointF mPositionNorth;
QPointF mPositionNorthEast;
QPointF mPositionEast;
QPointF mPositionSouthEast;
QPointF mPositionSouth;
QPointF mPositionSouthWest;
QPointF mPositionWest;
QMap<KChartEnums::PositionValue, qreal> mapOfDegrees;
}; // End of class PositionPoints
}
#if !defined(QT_NO_DEBUG_STREAM)
KCHART_EXPORT QDebug operator<<(QDebug, const KChart::Position& );
#endif /* QT_NO_DEBUG_STREAM */
QT_BEGIN_NAMESPACE
Q_DECLARE_TYPEINFO( KChart::Position, Q_MOVABLE_TYPE );
Q_DECLARE_OPERATORS_FOR_FLAGS( KChart::Position::Options )
QT_END_NAMESPACE
Q_DECLARE_METATYPE( KChart::Position )
#endif // KCHARTPOSITION_H
|