QGIS API Documentation 3.43.0-Master (37eec98dbf6)
qgssublayersdialog.h
Go to the documentation of this file.
1/***************************************************************************
2 qgssublayersdialog.h - dialog for selecting sublayers
3 ---------------------
4 begin : January 2009
5 copyright : (C) 2009 by Florian El Ahdab
6 email : felahdab at gmail dot com
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 QGSSUBLAYERSDIALOG_H
17#define QGSSUBLAYERSDIALOG_H
18
19#include <QDialog>
20#include <QCheckBox>
21#include "ui_qgssublayersdialogbase.h"
22#include "qgis_sip.h"
23#include "qgis_gui.h"
24#include "qgis.h"
25
32class GUI_EXPORT QgsSublayersDialog : public QDialog, private Ui::QgsSublayersDialogBase
33{
34 Q_OBJECT
35 public:
41 {
42
47
52
57
61 PromptLoadAll
62 };
63 Q_ENUM( PromptMode )
64
66 {
70 Mdal
71 };
72
77 {
79 int layerId = -1;
80
82 QString layerName;
83
85 int count = -1;
86
88 QString type;
89
95 QString description;
96 };
97
101 typedef QList<QgsSublayersDialog::LayerDefinition> LayerDefinitionList;
102
104
116 Q_DECL_DEPRECATED QgsSublayersDialog( ProviderType providerType, const QString &name, QWidget *parent SIP_TRANSFERTHIS = nullptr, Qt::WindowFlags fl = Qt::WindowFlags(), const QString &dataSourceUri = QString() ) SIP_DEPRECATED;
117
118 ~QgsSublayersDialog() override;
119
123 void populateLayerTable( const LayerDefinitionList &list );
124
128 LayerDefinitionList selection();
129
133 void setShowAddToGroupCheckbox( bool showAddToGroupCheckbox ) { mShowAddToGroupCheckbox = showAddToGroupCheckbox; }
134
138 bool showAddToGroupCheckbox() const { return mShowAddToGroupCheckbox; }
139
143 bool addToGroupCheckbox() const { return mCbxAddToGroup->isChecked(); }
144
148 int countColumn() const { return mShowCount ? 2 : -1; }
149
150 public slots:
151 int exec() override;
152
153 private slots:
154 void layersTable_selectionChanged( const QItemSelection &, const QItemSelection & );
155 void mBtnDeselectAll_pressed();
156
157 protected:
161 QString mName;
163
165 bool mShowCount = false;
167 bool mShowType = false;
169 bool mShowDescription = false;
170
171 private:
173 bool mShowAddToGroupCheckbox = false;
174};
175
176#endif
Presents a choice of sublayers.
QList< QgsSublayersDialog::LayerDefinition > LayerDefinitionList
List of layer definitions for the purpose of this dialog.
PromptMode
Prompt behavior of the QgsSublayersDialog.
@ PromptNever
never prompt, will not load anything
@ PromptAlways
always ask if there are existing sublayers
@ PromptIfNeeded
always ask if there are existing sublayers, but skip if there are bands for rasters
bool showAddToGroupCheckbox() const
If we should display the add to group checkbox.
int countColumn() const
Returns column with count or -1.
bool addToGroupCheckbox() const
If we should add layers in a group.
QString mName
Provider type name.
#define SIP_DEPRECATED
Definition qgis_sip.h:106
#define SIP_TRANSFERTHIS
Definition qgis_sip.h:53
A structure that defines layers for the purpose of this dialog.
QString layerName
Name of the layer (not necessarily unique)
QString type
Extra type depending on the use (e.g. geometry type for vector sublayers)