/usr/include/qgis/qgsmapcanvasmap.h is in libqgis-dev 2.8.6+dfsg-1build1.
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 | /***************************************************************************
qgsmapcanvasmap.h - draws the map in map canvas
----------------------
begin : February 2006
copyright : (C) 2006 by Martin Dobias
email : wonder.sk at gmail dot 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. *
* *
***************************************************************************/
#ifndef QGSMAPCANVASMAP_H
#define QGSMAPCANVASMAP_H
#include <QGraphicsRectItem>
#include <QPixmap>
#include <QTimer>
#include <qgis.h>
#include <qgsmaptopixel.h>
#include <qgsmapcanvasitem.h>
class QgsMapSettings;
class QgsMapCanvas;
/** \ingroup gui
* A rectangular graphics item representing the map on the canvas.
*/
class GUI_EXPORT QgsMapCanvasMap : public QgsMapCanvasItem // public QObject, public QGraphicsRectItem
{
public:
//! constructor
QgsMapCanvasMap( QgsMapCanvas* canvas );
~QgsMapCanvasMap();
//! @note added in 2.4
void setContent( const QImage& image, const QgsRectangle& rect );
//! @note added in 2.4
QImage contentImage() const { return mImage; }
virtual void paint( QPainter * painter ) override;
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
Q_DECL_DEPRECATED void refresh() {}
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
Q_DECL_DEPRECATED void resize( QSize size ) { Q_UNUSED( size ); }
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
Q_DECL_DEPRECATED void enableAntiAliasing( bool flag ) { Q_UNUSED( flag ); }
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
Q_DECL_DEPRECATED void render() {}
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
Q_DECL_DEPRECATED void setBackgroundColor( const QColor& color ) { Q_UNUSED( color ); }
//! @deprecated in 2.4 - not called by QgsMapCanvas anymore
Q_DECL_DEPRECATED void setPanningOffset( const QPoint& point ) { Q_UNUSED( point ); }
//! @deprecated in 2.4
Q_DECL_DEPRECATED QPaintDevice& paintDevice();
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
Q_DECL_DEPRECATED void updateContents() {}
private:
QImage mImage;
};
#endif
|