mirror of
https://github.com/qgis/QGIS.git
synced 2025-03-12 00:02:25 -04:00
22 lines
397 B
Plaintext
22 lines
397 B
Plaintext
/** \ingroup gui
|
|
* \note added in 2.1
|
|
*/
|
|
|
|
/**
|
|
* @brief Base class for custom vector layer property pages
|
|
*/
|
|
class QgsVectorLayerPropertiesPage : QWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsvectorlayerpropertiespage.h>
|
|
%End
|
|
|
|
public:
|
|
/** Constructor */
|
|
explicit QgsVectorLayerPropertiesPage( QWidget *parent = 0 );
|
|
|
|
public slots:
|
|
/** Apply changes */
|
|
virtual void apply() = 0;
|
|
};
|