/usr/include/marble/GeoGraphicsScene.h is in libmarble-dev 4:4.8.2-0ubuntu2.
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 | //
// This file is part of the Marble Desktop 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 2010 Bastian Holst <bastianholst@gmx.de>
// Copyright 2011 Konstantin Oblaukhov <oblaukhov.konstantin@gmail.com>
//
#ifndef MARBLE_GEOGRAPHICSSCENE_H
#define MARBLE_GEOGRAPHICSSCENE_H
#include "marble_export.h"
#include "global.h"
#include <QtCore/QObject>
#include <QtCore/QList>
namespace Marble
{
class GeoGraphicsItem;
class GeoDataLatLonAltBox;
class GeoGraphicsScenePrivate;
/**
* @short This is the home of all GeoGraphicsItems to be shown on the map.
*/
class MARBLE_EXPORT GeoGraphicsScene : public QObject
{
Q_OBJECT
public:
/**
* Creates a new instance of GeoGraphicsScene
* @param parent the QObject parent of the Scene
*/
GeoGraphicsScene( QObject *parent = 0 );
~GeoGraphicsScene();
/**
* @brief Add an item to the GeoGraphicsScene
* Adds the item @p item to the GeoGraphicsScene
*/
void addIdem( GeoGraphicsItem *item );
/**
* @brief Remove an item from the GeoGraphicsScene
* Removes the item @p item from the GeoGraphicsScene
*/
void removeItem( GeoGraphicsItem *item );
/**
* @brief Remove all items from the GeoGraphicsScene
* Removes all items from the GeoGraphicsScene
*/
void clear();
/**
* @brief Get all items in the GeoGraphicsScene
* Returns all items in the GeoGraphicsScene.
* The items will be returned in no specific order.
*
* @return The list of all GeoGraphicsItems
*/
QList<GeoGraphicsItem *> items() const;
/**
* @brief Get the list of items in the specified Box
*
* @param box The box around the items.
* @param maxZoomLevel The max zoom level of tiling
* @return The list of items in the specified box in no specific order.
*/
QList<GeoGraphicsItem *> items( const GeoDataLatLonAltBox& box, int maxZoomLevel ) const;
/**
* @brief default zoom level used for tiling
*/
static int s_tileZoomLevel;
private:
GeoGraphicsScenePrivate * const d;
};
}
#endif // MARBLE_GEOGRAPHICSSCENE_H
|