mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-27 00:33:48 -05:00
23 lines
720 B
Plaintext
23 lines
720 B
Plaintext
class QgsArrowSymbolLayerWidget: QgsSymbolLayerWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsarrowsymbollayerwidget.h>
|
|
%End
|
|
public:
|
|
/** Constructor
|
|
* @param layer the layer where this symbol layer is applied
|
|
* @param parent the parent widget
|
|
*/
|
|
QgsArrowSymbolLayerWidget( const QgsVectorLayer *layer, QWidget *parent /TransferThis/ = 0 );
|
|
|
|
/** Static creation method
|
|
* @param layer the layer where this symbol layer is applied
|
|
*/
|
|
static QgsSymbolLayerWidget *create( const QgsVectorLayer *layer ) /Factory/;
|
|
|
|
/** Set the symbol layer */
|
|
virtual void setSymbolLayer( QgsSymbolLayer *layer );
|
|
/** Get the current symbol layer */
|
|
virtual QgsSymbolLayer *symbolLayer();
|
|
};
|