Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsrasterviewport.h - description 3 : : ------------------- 4 : : begin : Fri Jun 28 2002 5 : : copyright : (C) 2005 by T.Sutton 6 : : email : tim@linfiniti.com 7 : : ***************************************************************************/ 8 : : 9 : : /*************************************************************************** 10 : : * * 11 : : * This program is free software; you can redistribute it and/or modify * 12 : : * it under the terms of the GNU General Public License as published by * 13 : : * the Free Software Foundation; either version 2 of the License, or * 14 : : * (at your option) any later version. * 15 : : * * 16 : : ***************************************************************************/ 17 : : #ifndef QGSRASTERVIEWPORT_H 18 : : #define QGSRASTERVIEWPORT_H 19 : : 20 : : #include "qgspointxy.h" 21 : : #include "qgscoordinatereferencesystem.h" 22 : : #include "qgscoordinatetransformcontext.h" 23 : : #include "qgsrectangle.h" 24 : : 25 : : /** 26 : : * \ingroup core 27 : : * This class provides details of the viewable area that a raster will 28 : : * be rendered into. 29 : : * 30 : : * The qgsrasterviewport class sets up a viewport / area of interest to be used 31 : : * by rasterlayer draw functions at the point of drawing to the screen. 32 : : */ 33 : : 34 : 0 : struct CORE_EXPORT QgsRasterViewPort 35 : : { 36 : : #ifdef SIP_RUN 37 : : % TypeHeaderCode 38 : : #include <qgsrasterviewport.h> 39 : : % End 40 : : #endif 41 : : 42 : : /** 43 : : * \brief Coordinate (in output device coordinate system) of top left corner 44 : : * of the part of the raster that is to be rendered. 45 : : */ 46 : : QgsPointXY mTopLeftPoint; 47 : : 48 : : /** 49 : : * \brief Coordinate (in output device coordinate system) of bottom right corner 50 : : * of the part of the raster that is to be rendered. 51 : : */ 52 : : QgsPointXY mBottomRightPoint; 53 : : 54 : : //! \brief Width, number of columns to be rendered 55 : : qgssize mWidth; 56 : : 57 : : //! \brief Height, number of rows to be rendered 58 : : qgssize mHeight; 59 : : 60 : : //! \brief Intersection of current map extent and layer extent 61 : : QgsRectangle mDrawnExtent; 62 : : 63 : : //! \brief Source coordinate system 64 : : QgsCoordinateReferenceSystem mSrcCRS; 65 : : 66 : : //! \brief Target coordinate system 67 : : QgsCoordinateReferenceSystem mDestCRS; 68 : : 69 : : /** 70 : : * Coordinate transform context 71 : : */ 72 : : QgsCoordinateTransformContext mTransformContext; 73 : : }; 74 : : 75 : : #endif //QGSRASTERVIEWPORT_H