mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-08 00:02:35 -05:00
Rationale: - there was a lot of large objects passed by value, so potentially there's a speed bump from this - even for implicitly shared classes like QString/QList there's still a (small) cost for copying the objects when there's no reason to - it's the right thing to do!
37 lines
1.5 KiB
Plaintext
37 lines
1.5 KiB
Plaintext
/** \ingroup gui
|
|
* \class QgsDataDefinedSymbolDialog
|
|
* \deprecated no longer used and will be removed in QGIS 3.0
|
|
*/
|
|
class QgsDataDefinedSymbolDialog : QDialog
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsdatadefinedsymboldialog.h>
|
|
%End
|
|
public:
|
|
class DataDefinedSymbolEntry
|
|
{
|
|
public:
|
|
DataDefinedSymbolEntry( const QString& p, const QString& t, const QString& v, const QString& h );
|
|
};
|
|
|
|
QgsDataDefinedSymbolDialog( const QList< QgsDataDefinedSymbolDialog::DataDefinedSymbolEntry >& entries, const QgsVectorLayer* vl, QWidget * parent /TransferThis/ = 0, const Qt::WindowFlags& f = 0 ) /Deprecated/;
|
|
~QgsDataDefinedSymbolDialog();
|
|
QMap< QString, QString > dataDefinedProperties() const /Deprecated/;
|
|
|
|
//common help texts
|
|
static QString doubleHelpText() /Deprecated/;
|
|
static QString colorHelpText() /Deprecated/;
|
|
static QString offsetHelpText() /Deprecated/;
|
|
static QString fileNameHelpText() /Deprecated/;
|
|
static QString horizontalAnchorHelpText() /Deprecated/;
|
|
static QString verticalAnchorHelpText() /Deprecated/;
|
|
static QString gradientTypeHelpText() /Deprecated/;
|
|
static QString gradientCoordModeHelpText() /Deprecated/;
|
|
static QString gradientSpreadHelpText() /Deprecated/;
|
|
static QString boolHelpText() /Deprecated/;
|
|
static QString lineStyleHelpText() /Deprecated/;
|
|
static QString joinStyleHelpText() /Deprecated/;
|
|
static QString capStyleHelpText() /Deprecated/;
|
|
static QString fillStyleHelpText() /Deprecated/;
|
|
};
|