/usr/include/marble/GeoDataLineStyle.h is in libmarble-dev 4:17.12.3-0ubuntu1.
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 | //
// This file is part of the Marble Virtual Globe.
//
// This program is free software licensed under the GNU LGPL. You can
// find a copy of this license in LICENSE.txt in the top directory of
// the source code.
//
// Copyright 2008 Patrick Spendrin <ps_ml@gmx.de>
//
#ifndef MARBLE_GEODATALINESTYLE_H
#define MARBLE_GEODATALINESTYLE_H
#include <QVector>
#include "GeoDataColorStyle.h"
#include "geodata_export.h"
namespace Marble
{
class GeoDataLineStylePrivate;
/**
* @short specifies the style how lines are drawn
*
* A GeoDataLineStyle specifies how the <b>name</b> of a
* GeoDataFeature is drawn in the viewer. A custom color, color mode
* (both inherited from GeoDataColorStyle) and width for the width
* of the line.
*/
class GEODATA_EXPORT GeoDataLineStyle : public GeoDataColorStyle
{
public:
/// Construct a new GeoDataLineStyle
GeoDataLineStyle();
GeoDataLineStyle( const GeoDataLineStyle& other );
/**
* @brief Construct a new GeoDataLineStyle
* @param color the color to use when showing the name @see GeoDataColorStyle
*/
explicit GeoDataLineStyle( const QColor &color );
~GeoDataLineStyle() override;
/**
* @brief assignment operator
*/
GeoDataLineStyle& operator=( const GeoDataLineStyle& other );
bool operator==( const GeoDataLineStyle &other ) const;
bool operator!=( const GeoDataLineStyle &other ) const;
/// Provides type information for downcasting a GeoData
const char* nodeType() const override;
/**
* @brief Set the width of the line
* @param width the new width
*/
void setWidth(float width);
/**
* @brief Return the current width of the line
* @return the current width
*/
float width() const;
/**
* @brief Set the physical width of the line (in meters)
* @param width the new width
*/
void setPhysicalWidth(float realWidth);
/**
* @brief Return the current physical width of the line
* @return the current width
*/
float physicalWidth() const;
/**
* @brief Set whether the line has a cosmetic 1 pixel outline
*/
void setCosmeticOutline( bool enabled );
/**
* @brief Return whether the line has a cosmetic 1 pixel outline
*/
bool cosmeticOutline() const;
/**
* @brief Set pen cap style
* @param style cap style
*/
void setCapStyle( Qt::PenCapStyle style );
/**
* @brief Return the current pen cap style
* @return the current pen cap style
*/
Qt::PenCapStyle capStyle() const;
/**
* @brief Set pen cap style
* @param style cap style
*/
void setPenStyle( Qt::PenStyle style );
/**
* @brief Return the current pen cap style
* @return the current pen cap style
*/
Qt::PenStyle penStyle() const;
/**
* @brief Set whether to draw the solid background
* @param bool
*/
void setBackground( bool background );
/**
* @brief Return true if background get drawn
* @return
*/
bool background() const;
/**
* @brief Sets the dash pattern
* @param pattern dash pattern
*/
void setDashPattern( const QVector<qreal>& pattern );
/**
* @brief Return the current dash pattern
* @return the current dash pattern
*/
QVector<qreal> dashPattern() const;
/**
* @brief Serialize the style to a stream.
* @param stream the stream
*/
void pack( QDataStream& stream ) const override;
/**
* @brief Unserialize the style from a stream
* @param stream the stream
*/
void unpack( QDataStream& stream ) override;
private:
GeoDataLineStylePrivate * const d;
};
}
#endif
|