/usr/include/marble/ScreenGraphicsItem.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 | //
// 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 2009 Bastian Holst <bastianholst@gmx.de>
//
#ifndef MARBLE_SCREENGRAPHICSITEM_H
#define MARBLE_SCREENGRAPHICSITEM_H
// Marble
#include "MarbleGraphicsItem.h"
#include "marble_export.h"
// Qt
#include <QVector>
namespace Marble
{
class ScreenGraphicsItemPrivate;
class MARBLE_EXPORT ScreenGraphicsItem : public MarbleGraphicsItem
{
public:
enum GraphicsItemFlag {
ItemIsMovable = 0x1,
ItemIsHideable = 0x2
};
Q_DECLARE_FLAGS(GraphicsItemFlags, GraphicsItemFlag)
explicit ScreenGraphicsItem( MarbleGraphicsItem *parent = 0 );
~ScreenGraphicsItem() override;
/**
* @brief Set the position of the ScreenGraphicsItem
* @param pos Position
*
* Positive x-coordinates are counted left-aligned from the left border of the parent item.
* Negative x-coordinates are counted right-aligned from the right border of the parent item.
*
* Positive y-coordinates are counted top-aligned from the top border of the parent item.
* Negative y-coordinates are counted right-aligned from the bottom border of the parent item.
*/
void setPosition( const QPointF& position );
/**
* @brief Return the position of the ScreenGraphicsItem
*
* Positive x-coordinates are counted left-aligned from the left border of the parent item.
* Negative x-coordinates are counted right-aligned from the right border of the parent item.
*
* Positive y-coordinates are counted top-aligned from the top border of the parent item.
* Negative y-coordinates are counted right-aligned from the bottom border of the parent item.
*/
QPointF position() const;
/**
* @brief Return the positive position of the ScreenGraphicsItem
*
* All coordinates are counted positive and depend on the current viewport.
*
* Positive x-coordinates are counted left-aligned from the left border of the parent item.
* Positive y-coordinates are counted top-aligned from the top border of the parent item.
*/
QPointF positivePosition() const;
/**
* @brief Return the absolute position of the ScreenGraphicsItem
*
* All coordinates are counted positive and depend on the current viewport.
*
* Positive x-coordinates are counted left-aligned from the left border of the map.
* Positive y-coordinates are counted top-aligned from the top border of the map.
* @since 0.26.0
*/
QVector<QPointF> absolutePositions() const;
/**
* Returns the flags of the item.
*/
GraphicsItemFlags flags() const;
/**
* Sets the flags to flags. All flags in flags will be enabled and all other flags will
* be disabled. By default all flags are disabled.
*/
void setFlags( GraphicsItemFlags flags );
protected:
explicit ScreenGraphicsItem(ScreenGraphicsItemPrivate *dd);
bool eventFilter( QObject *, QEvent * ) override;
private:
Q_DECLARE_PRIVATE(ScreenGraphicsItem)
};
} // Namespace Marble
#endif
|