Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsdxpaintdevice.cpp 3 : : -------------------- 4 : : begin : November 2013 5 : : copyright : (C) 2013 by Marco Hugentobler 6 : : email : marco at sourcepole dot ch 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 : : 18 : : #include "qgsdxfpaintdevice.h" 19 : : #include "qgsdxfpaintengine.h" 20 : : #include "qgspoint.h" 21 : : 22 : 0 : QgsDxfPaintDevice::QgsDxfPaintDevice( QgsDxfExport *dxf ) 23 : 0 : { 24 : 0 : mPaintEngine = new QgsDxfPaintEngine( this, dxf ); 25 : 0 : } 26 : : 27 : 0 : QgsDxfPaintDevice::~QgsDxfPaintDevice() 28 : 0 : { 29 : 0 : delete mPaintEngine; 30 : 0 : } 31 : : 32 : 0 : QPaintEngine *QgsDxfPaintDevice::paintEngine() const 33 : : { 34 : 0 : return mPaintEngine; 35 : : } 36 : : 37 : 0 : int QgsDxfPaintDevice::metric( PaintDeviceMetric metric ) const 38 : : { 39 : 0 : switch ( metric ) 40 : : { 41 : : case QPaintDevice::PdmWidth: 42 : 0 : return mDrawingSize.width(); 43 : : case QPaintDevice::PdmHeight: 44 : 0 : return mDrawingSize.height(); 45 : : case QPaintDevice::PdmWidthMM: 46 : 0 : return mDrawingSize.width(); 47 : : case QPaintDevice::PdmHeightMM: 48 : 0 : return mDrawingSize.height(); 49 : : case QPaintDevice::PdmNumColors: 50 : 0 : return std::numeric_limits<int>::max(); 51 : : case QPaintDevice::PdmDepth: 52 : 0 : return 32; 53 : : case QPaintDevice::PdmDpiX: 54 : : case QPaintDevice::PdmDpiY: 55 : : case QPaintDevice::PdmPhysicalDpiX: 56 : : case QPaintDevice::PdmPhysicalDpiY: 57 : 0 : return 96; 58 : : case QPaintDevice::PdmDevicePixelRatio: 59 : 0 : return 1; 60 : : case QPaintDevice::PdmDevicePixelRatioScaled: 61 : 0 : return 1; 62 : : } 63 : 0 : return 0; 64 : 0 : } 65 : 0 : 66 : 0 : double QgsDxfPaintDevice::widthScaleFactor() const 67 : : { 68 : 0 : if ( !mDrawingSize.isValid() || mRectangle.isEmpty() ) 69 : : { 70 : 0 : return 1.0; 71 : : } 72 : : 73 : 0 : double widthFactor = mRectangle.width() / mDrawingSize.width(); 74 : 0 : double heightFactor = mRectangle.height() / mDrawingSize.height(); 75 : 0 : return ( widthFactor + heightFactor ) / 2.0; 76 : 0 : } 77 : : 78 : 0 : QPointF QgsDxfPaintDevice::dxfCoordinates( QPointF pt ) const 79 : : { 80 : 0 : if ( !mDrawingSize.isValid() || mRectangle.isEmpty() ) 81 : : { 82 : 0 : return QPointF( pt.x(), pt.y() ); 83 : : } 84 : : 85 : 0 : double x = mRectangle.left() + pt.x() * ( mRectangle.width() / mDrawingSize.width() ); 86 : 0 : double y = mRectangle.bottom() - pt.y() * ( mRectangle.height() / mDrawingSize.height() ); 87 : 0 : return QPointF( x, y ); 88 : 0 : } 89 : : 90 : 0 : void QgsDxfPaintDevice::setLayer( const QString &layer ) 91 : : { 92 : 0 : if ( mPaintEngine ) 93 : : { 94 : 0 : mPaintEngine->setLayer( layer ); 95 : 0 : } 96 : 0 : } 97 : : 98 : 0 : void QgsDxfPaintDevice::setShift( QPointF shift ) 99 : : { 100 : 0 : if ( mPaintEngine ) 101 : : { 102 : 0 : mPaintEngine->setShift( shift ); 103 : 0 : } 104 : 0 : } 105 : : 106 : :