Skip to content

Commit

Permalink
Don't copy docs from another class, that's pretty poor form...
Browse files Browse the repository at this point in the history
(cherry picked from commit 4caecdc)
  • Loading branch information
nyalldawson committed Jan 19, 2021
1 parent 9888802 commit 9bc9edd
Showing 1 changed file with 27 additions and 5 deletions.
32 changes: 27 additions & 5 deletions src/quickgui/qgsquickmapsettings.h
Expand Up @@ -79,7 +79,7 @@ class QUICK_EXPORT QgsQuickMapSettings : public QObject
/**
* The background color used to render the map
*
* The value is set to the project's bacckground color setting on QgsProject::readProject
* The value is set to the project's background color setting on QgsProject::readProject
*/
Q_PROPERTY( QColor backgroundColor READ backgroundColor WRITE setBackgroundColor NOTIFY backgroundColorChanged )

Expand Down Expand Up @@ -180,10 +180,18 @@ class QUICK_EXPORT QgsQuickMapSettings : public QObject
//! \copydoc QgsQuickMapSettings::backgroundColor
void setBackgroundColor( const QColor &color );

//! \copydoc QgsMapSettings::outputSize()
/**
* Returns the size of the resulting map image, in pixels.
*
* \see setOutputSize()
*/
QSize outputSize() const;

//! \copydoc QgsMapSettings::setOutputSize()
/**
* Sets the size of the resulting map image, in pixels.
*
* \see outputSize()
*/
void setOutputSize( const QSize &outputSize );

//! \copydoc QgsMapSettings::outputDpi()
Expand All @@ -198,10 +206,24 @@ class QUICK_EXPORT QgsQuickMapSettings : public QObject
//! \copydoc QgsMapSettings::setDestinationCrs()
void setDestinationCrs( const QgsCoordinateReferenceSystem &destinationCrs );

//! \copydoc QgsMapSettings::layers()
/**
* Returns the list of layers which will be rendered in the map.
*
* The layers are stored in the reverse order of how they are rendered (layer with index 0 will be on top)
*
* \see setLayers()
*/
QList<QgsMapLayer *> layers() const;

//! \copydoc QgsMapSettings::setLayers()
/**
* Sets the list of \a layers to render in the map.
*
* The layers are stored in the reverse order of how they are rendered (layer with index 0 will be on top)
*
* \note Any non-spatial layers will be automatically stripped from the list (since they cannot be rendered!).
*
* \see layers()
*/
void setLayers( const QList<QgsMapLayer *> &layers );

signals:
Expand Down

0 comments on commit 9bc9edd

Please sign in to comment.