QGIS/python/core/raster/qgsrasterdrawer.sip

23 lines
780 B
Plaintext
Raw Normal View History

class QgsRasterDrawer
{
%TypeHeaderCode
#include <qgsrasterdrawer.h>
%End
public:
QgsRasterDrawer( QgsRasterIterator *iterator );
void draw( QPainter* p, QgsRasterViewPort* viewPort, const QgsMapToPixel* theQgsMapToPixel );
protected:
2015-07-29 11:52:14 +02:00
/** Draws raster part
@param p the painter to draw to
@param viewPort view port to draw to
@param img image to draw
@param topLeftCol Left position relative to left border of viewport
2015-02-03 20:47:20 +11:00
@param topLeftRow Top position relative to top border of viewport
2015-02-03 02:21:52 +01:00
@param mapToPixel map to device coordinate transformation info
@note not available in python bindings
*/
2015-02-03 20:47:20 +11:00
//void drawImage( QPainter* p, QgsRasterViewPort* viewPort, const QImage& img, int topLeftCol, int topLeftRow ) const;
};