/usr/include/libkgapi2/staticmaps/staticmappath.h is in libkgapi-dev 2.2.0-1.
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 | /*
Copyright (C) 2012 Jan Grulich <grulja@gmail.com>
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, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef LIBKGAPI2_STATICMAPPATH_H
#define LIBKGAPI2_STATICMAPPATH_H
#include <libkgapi2/libkgapi2_export.h>
#include <QtGui/QColor>
#include <KDE/KABC/Address>
#include <KDE/KABC/Geo>
namespace KGAPI2
{
/**
* @brief Represents path with defined locations, weight, color and color for
* filled area
*
* @author Jan Grulich <grulja@gmail.com>
* @since 0.4
*/
class LIBKGAPI2_EXPORT StaticMapPath
{
public:
enum LocationType {
Undefined = -1,
String,
KABCAddress,
KABCGeo,
};
/**
* @brief Constructs an empty path
*/
explicit StaticMapPath();
/**
* @brief Constructs a new path
*
* @param locations The path locations in QString
* @param weight The thickness of the path in pixels
* @param color The color of the path
* @param fillColor The color of filled area
*/
explicit StaticMapPath(const QStringList & locations, const quint8 weight = 5,
const QColor & color = Qt::blue, const QColor & fillColor = QColor());
/**
* @brief Constructs a new path
*
* @param locations The path locations in KABC::Address
* @param weight The thickness of the path in pixels
* @param color Color of the path
* @param fillColor The color of filled area
*/
explicit StaticMapPath(const QList<KABC::Address> & locations, const quint8 weight = 5,
const QColor & color = Qt::blue, const QColor & fillColor = QColor());
/**
* @brief Constructs a new path
*
* @param locations The path locations in KABC::Geo
* @param weight The thickness of the path in pixels
* @param color The color of the path
* @param fillColor The color of filled area
*/
explicit StaticMapPath(const QList<KABC::Geo> & locations, const quint8 weight = 5,
const QColor & color = Qt::blue, const QColor & fillColor = QColor());
/**
* @brief Copy constructor
*/
StaticMapPath(const StaticMapPath &other);
/**
* @brief Destructor
*/
~StaticMapPath();
/**
* @brief Location type
*/
LocationType locationType() const;
/**
* @brief Returns the color of path
*/
QColor color() const;
/**
* @brief Sets color of the path
*
* @param color Color for path
*/
void setColor(const QColor & color);
/**
* @brief Returns the color of filled area
*/
QColor fillColor() const;
/**
* @brief Sets color for filled area in path
*
* @param color The color for filled area
*/
void setFillColor(const QColor & color);
/**
* @brief Returns whther the path is valid.
*
* This means that path has at least two locations
*/
bool isValid() const;
/**
* @brief Returns locations in QString
*
* Returns empty list if is not defined
*/
QStringList locationsString() const;
/**
* @brief Sets locations for path
*
* @param locations Locations for path in QString
*/
void setLocations(const QStringList & locations);
/**
* @brief Returns locations in KABC::Address
*
* Returns empty list if is not defined
*/
QList<KABC::Address> locationsAddress() const;
/**
* @brief Sets locations for path
*
* @param locations Locations for path in KABC::Address
*/
void setLocations(const QList<KABC::Address> & locations);
/**
* @brief Returns locations in KABC::Geo
*
* Returns empty list if is not defined
*/
QList<KABC::Geo> locationsGeo() const;
/**
* @brief Sets locations for path
*
* @param locations Locations for path in KABC::Geo
*/
void setLocations(const QList<KABC::Geo> & locations);
/**
* @brief Returns all locations and path preferences in format to URL query.
*/
QString toString() const;
/**
* @brief Returns weight of the path
*/
quint8 weight() const;
/**
* @brief Sets weight of the path
*
* @param weight The thickness of the path in pixels
*/
void setWeight(const quint8 weight);
/**
* @brief Assignment operator
*/
StaticMapPath& operator=(const StaticMapPath &other);
private:
class Private;
Private * const d;
friend class Private;
};
} // namespace KGAPI2
#endif // LIBKGAPI2_STATICMAPPATH_H
|