mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
27 lines
608 B
Plaintext
27 lines
608 B
Plaintext
class QgsSymbolLevelsV2Dialog : QDialog
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgssymbollevelsv2dialog.h>
|
|
%End
|
|
|
|
public:
|
|
// QgsSymbolLevelsV2Dialog( QList< QPair<QString, QgsSymbolV2*> > list, bool usingSymbolLevels, QWidget* parent = NULL );
|
|
|
|
bool usingLevels() const;
|
|
|
|
// used by rule-based renderer (to hide checkbox to enable/disable ordering)
|
|
void setForceOrderingEnabled( bool enabled );
|
|
|
|
public slots:
|
|
void updateUi();
|
|
|
|
void renderingPassChanged( int row, int column );
|
|
|
|
protected:
|
|
void populateTable();
|
|
void setDefaultLevels();
|
|
|
|
private:
|
|
QgsSymbolLevelsV2Dialog();
|
|
};
|