QGIS/python/analysis/network/qgsgraphdirector.sip

83 lines
2.4 KiB
Plaintext
Raw Normal View History

/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/network/qgsgraphdirector.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
%ModuleHeaderCode
#include <qgsvectorlayerdirector.h>
2011-06-02 19:02:20 +06:00
%End
class QgsGraphDirector : QObject
{
%Docstring
Determine making the graph. QgsGraphBuilder and QgsGraphDirector implemented
using "builder" design patter.
%End
2011-06-02 19:02:20 +06:00
%TypeHeaderCode
#include "qgsgraphdirector.h"
2011-06-02 19:02:20 +06:00
%End
%ConvertToSubClassCode
if ( dynamic_cast< QgsVectorLayerDirector * >( sipCpp ) != NULL )
sipType = sipType_QgsVectorLayerDirector;
else
sipType = NULL;
2011-06-02 19:02:20 +06:00
%End
2017-05-04 07:57:07 +02:00
signals:
void buildProgress( int, int ) const;
%Docstring
Emitted to report graph building progress
%End
void buildMessage( const QString & ) const;
%Docstring
Emitted to report information about graph building
%End
2011-06-02 19:02:20 +06:00
public:
2011-06-02 19:02:20 +06:00
virtual ~QgsGraphDirector();
virtual void makeGraph( QgsGraphBuilderInterface *builder,
const QVector< QgsPoint > &additionalPoints,
QVector< QgsPoint > &snappedPoints /Out/ ) const;
%Docstring
Make a graph using QgsGraphBuilder
\param builder the graph builder
\param additionalPoints list of points that should be snapped to the graph
\param snappedPoints list of snapped points
.. note::
if snappedPoints[i] == QgsPoint(0.0,0.0) then snapping failed.
%End
void addStrategy( QgsNetworkStrategy *prop /Transfer/ );
%Docstring
Add optimization strategy
%End
2011-06-02 19:02:20 +06:00
virtual QString name() const = 0;
%Docstring
Returns director name
:rtype: str
%End
protected:
2011-06-02 19:02:20 +06:00
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/analysis/network/qgsgraphdirector.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/