QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsmaplayerconfigwidgetfactory.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsmaplayerconfigwidgetfactoryfactory.h
3 --------------------------------------
4 Date : 9.7.2013
5 Copyright : (C) 2013 Matthias Kuhn
6 Email : matthias dot kuhn at gmx dot ch
7 ***************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 ***************************************************************************/
15
16#ifndef QGSMAPLAYERCONFIGWIDGETFACTORY_H
17#define QGSMAPLAYERCONFIGWIDGETFACTORY_H
18
19#include <QListWidgetItem>
20#include "qgis_gui.h"
21#include "qgis_sip.h"
22
23class QgsMapLayer;
25class QgsMapCanvas;
27
34{
35 public:
42 enum class ParentPage : int
43 {
44 NoParent,
45 Temporal,
46 };
47
49
51 QgsMapLayerConfigWidgetFactory( const QString &title, const QIcon &icon );
52
54
59 virtual QIcon icon() const { return mIcon; }
60
65 void setIcon( const QIcon &icon ) { mIcon = icon; }
66
72 virtual QString title() const { return mTitle; }
73
80 void setTitle( const QString &title ) { mTitle = title; }
81
87 virtual bool supportsStyleDock() const { return false; }
88
93 void setSupportsStyleDock( bool supports ) { mSupportsDock = supports; }
94
100 virtual bool supportLayerPropertiesDialog() const { return false; }
101
114 virtual QString layerPropertiesPagePositionHint() const;
115
120 void setSupportLayerPropertiesDialog( bool supports ) { mSupportsProperties = supports; }
121
126 virtual bool supportsLayer( QgsMapLayer *layer ) const;
127
133 virtual bool supportsLayerTreeGroup( QgsLayerTreeGroup *group ) const;
134
143 virtual ParentPage parentPage() const;
144
154 virtual QgsMapLayerConfigWidget *createWidget( QgsMapLayer *layer, QgsMapCanvas *canvas, bool dockWidget = true, QWidget *parent = nullptr ) const = 0 SIP_FACTORY;
155
156 private:
157 QIcon mIcon;
158 QString mTitle;
159 bool mSupportsDock = true;
160 bool mSupportsProperties = true;
161};
162
163#endif // QGSMAPLAYERCONFIGWIDGETFACTORY_H
Layer tree group node serves as a container for layers and further groups.
Map canvas is a class for displaying all GIS data types on a canvas.
Factory class for creating custom map layer property pages.
virtual QIcon icon() const
The icon that will be shown in the UI for the panel.
virtual ~QgsMapLayerConfigWidgetFactory()=default
virtual QgsMapLayerConfigWidget * createWidget(QgsMapLayer *layer, QgsMapCanvas *canvas, bool dockWidget=true, QWidget *parent=nullptr) const =0
Factory function to create the widget on demand as needed by the dock.
void setIcon(const QIcon &icon)
Set the icon for the factory object.
virtual QString title() const
The title of the panel.
void setTitle(const QString &title)
Set the title for the interface.
virtual bool supportLayerPropertiesDialog() const
Flag if widget is supported for use in layer properties dialog.
void setSupportsStyleDock(bool supports)
Set support flag for style dock.
virtual bool supportsStyleDock() const
Flag if widget is supported for use in style dock.
ParentPage
Available parent pages, for factories which create a widget which is a sub-component of a standard pa...
void setSupportLayerPropertiesDialog(bool supports)
Set support flag for style dock.
A panel widget that can be shown in the map style dock.
Base class for all map layer types.
Definition qgsmaplayer.h:76
#define SIP_FACTORY
Definition qgis_sip.h:76