1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgs3dsymbolwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
class Qgs3DSymbolWidget : QWidget
{
%Docstring(signature="appended")
Base class for 3D symbol configuration widgets.
.. versionadded:: 3.16
%End
%TypeHeaderCode
#include "qgs3dsymbolwidget.h"
%End
public:
Qgs3DSymbolWidget( QWidget *parent );
%Docstring
Constructor for Qgs3DSymbolWidget with the specified ``parent`` widget.
%End
virtual void setSymbol( const QgsAbstract3DSymbol *symbol, QgsVectorLayer *layer ) = 0;
%Docstring
Sets the ``symbol`` to show in the widget.
%End
virtual QgsAbstract3DSymbol *symbol() = 0 /Factory/;
%Docstring
Returns a new instance of the symbol defined by the widget.
Caller takes ownership of the returned symbol.
%End
virtual QString symbolType() const = 0;
%Docstring
Returns the symbol type handled by the widget.
%End
signals:
void changed();
%Docstring
Emitted when the symbol is changed.
%End
};
class Qgs3DSymbolDialog : QDialog
{
%Docstring(signature="appended")
A dialog for configuring a 3D symbol.
.. versionadded:: 3.16
%End
%TypeHeaderCode
#include "qgs3dsymbolwidget.h"
%End
public:
Qgs3DSymbolDialog( const QgsAbstract3DSymbol *symbol, QWidget *parent /TransferThis/ = 0 );
%Docstring
Constructor for Qgs3DSymbolDialog, initially showing the specified ``symbol``.
%End
QgsAbstract3DSymbol *symbol() const /Factory/;
%Docstring
Returns a new instance of the symbol defined by the dialog.
Caller takes ownership of the returned symbol.
%End
QDialogButtonBox *buttonBox() const;
%Docstring
Returns a reference to the dialog's button box.
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgs3dsymbolwidget.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
|