Skip to content

Commit

Permalink
[layout] Disable ref images generation and added docs
Browse files Browse the repository at this point in the history
  • Loading branch information
elpaso committed Jan 9, 2018
1 parent dd0cce2 commit 51a4607
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 6 deletions.
33 changes: 28 additions & 5 deletions src/core/layout/qgscompositionconverter.h
Expand Up @@ -16,11 +16,15 @@
#ifndef QGSCOMPOSITIONCONVERTER_H
#define QGSCOMPOSITIONCONVERTER_H


#include <QDomDocument>
#include <QDomElement>


#include "qgis.h"
#include "qgis_sip.h"

#define SIP_NO_FILE

#include "qgspropertycollection.h"

class QgsLayout;
Expand All @@ -38,6 +42,13 @@ class QgsLayoutItemMap;
class QgsLayoutItemScaleBar;
class QgsLayoutItemLegend;


/**
* QgsCompositionConverter class converts a QGIS 2.x composition to a QGIS 3.x layout
* \since QGIS 3.0
* \note Not available in Python bindings.
* \ingroup core
*/
class CORE_EXPORT QgsCompositionConverter
{
public:
Expand Down Expand Up @@ -97,7 +108,7 @@ class CORE_EXPORT QgsCompositionConverter
};

/**
* The MarkerMode enum is the old 2.x arrow marker mode
* The MarkerMode enum is the old QGIS 2.x arrow marker mode
*/
enum MarkerMode
{
Expand All @@ -109,16 +120,28 @@ class CORE_EXPORT QgsCompositionConverter

/**
* \brief createLayoutFromCompositionXml is a factory that creates layout instances from a
* QGIS 2.x XML composition \a document
* QGIS 2.x XML composition \a document
* \param parentElement is the Composition element
* \param document
* \param context
* \param project the QGIS project
* \return a QgsLayout instance
* \since QGIS 3.0
* \note Not available in Python bindings.
*/
static QgsLayout *createLayoutFromCompositionXml( const QDomElement &parentElement,
QgsProject *project ) SIP_FACTORY;


/**
* addItemsFromCompositionXml parse a QGIS 2.x composition XML in the \a parentElement,
* converts the 2.x items to the new layout elements and add them to the \a layout
* \param layout the lay
* \param parentElement
* \param position for pasting
* \param pasteInPlace if true element position is translated to \a position
* \return a list of layout items
* \since QGIS 3.0
* \note Not available in Python bindings.
*/
static QList<QgsLayoutItem *> addItemsFromCompositionXml( QgsLayout *layout,
const QDomElement &parentElement,
QPointF *position = nullptr,
Expand Down
2 changes: 1 addition & 1 deletion tests/src/core/testqgscompositionconverter.cpp
Expand Up @@ -402,7 +402,7 @@ void TestQgsCompositionConverter::checkRenderedImage( QgsLayout *layout, const Q
QSize size( layout->pageCollection()->page( pageNumber )->sizeWithUnits().width() * 3.77, layout->pageCollection()->page( pageNumber )->sizeWithUnits().height() * 3.77 );
checker.setSize( size );
checker.setControlPathPrefix( QStringLiteral( "compositionconverter" ) );
QVERIFY( checker.testLayout( mReport, pageNumber, 0, true ) );
QVERIFY( checker.testLayout( mReport, pageNumber ) );
}

void TestQgsCompositionConverter::exportLayout( QgsLayout *layout, const QString testName )
Expand Down

0 comments on commit 51a4607

Please sign in to comment.