mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-11 00:04:27 -04:00
16 lines
425 B
Plaintext
16 lines
425 B
Plaintext
/** \ingroup gui
|
|
* \note added in 2.1
|
|
*/
|
|
class QgsMapLayerPropertiesFactory
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsmaplayerpropertiesfactory.h>
|
|
%End
|
|
|
|
public:
|
|
QgsMapLayerPropertiesFactory();
|
|
|
|
virtual QgsVectorLayerPropertiesPage* createVectorLayerPropertiesPage( QgsVectorLayer* layer, QWidget* parent ) = 0;
|
|
virtual QListWidgetItem* createVectorLayerPropertiesItem( QgsVectorLayer* layer, QListWidget* view ) = 0;
|
|
};
|