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
|
%ModuleHeaderCode
// fix to allow compilation with sip 4.7 that for some reason
// doesn't add this include to the file where the code from
// ConvertToSubClassCode goes.
#include <qgsmapcanvasmap.h>
%End
class QgsMapCanvasMap : QgsMapCanvasItem
{
%TypeHeaderCode
#include <qgsmapcanvasmap.h>
%End
%ConvertToSubClassCode
if (dynamic_cast<QgsMapCanvasMap*>(sipCpp) != NULL)
{
sipClass = sipClass_QgsMapCanvasMap;
}
else
{
sipClass = NULL;
}
%End
public:
//! constructor
QgsMapCanvasMap( QgsMapCanvas* canvas /TransferThis/ );
//! @note added in 2.4
void setContent( const QImage& image, const QgsRectangle& rect );
//! @note added in 2.4
QImage contentImage() const;
virtual void paint( QPainter * painter );
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
void refresh() /Deprecated/;
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
void resize( QSize size ) /Deprecated/;
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
void enableAntiAliasing( bool flag ) /Deprecated/;
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
void render() /Deprecated/;
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
void setBackgroundColor( const QColor& color ) /Deprecated/;
//! @deprecated in 2.4 - not called by QgsMapCanvas anymore
void setPanningOffset( const QPoint& point ) /Deprecated/;
//! @deprecated in 2.4
QPaintDevice& paintDevice() /Deprecated/;
//! @deprecated in 2.4 - does nothing. Kept for API compatibility
void updateContents() /Deprecated/;
};
|