mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
23 lines
585 B
Plaintext
23 lines
585 B
Plaintext
/**
|
|
* @brief The QgsMapLayerStyleManagerWidget class which is used to visually manage
|
|
* the layer styles.
|
|
*/
|
|
class QgsMapLayerStyleManagerWidget : QgsMapLayerConfigWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgsmaplayerstylemanagerwidget.h"
|
|
%End
|
|
public:
|
|
|
|
/**
|
|
* @brief Style manager widget to manage the layers styles.
|
|
* @param layer The layer for the widget
|
|
* @param canvas The canvas object.
|
|
* @param parent The parent.
|
|
*/
|
|
QgsMapLayerStyleManagerWidget( QgsMapLayer* layer, QgsMapCanvas* canvas, QWidget *parent = 0 );
|
|
|
|
public slots:
|
|
void apply();
|
|
};
|