QGIS API Documentation
3.16.0-Hannover (43b64b13f3)
Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
w
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
w
z
Variables
Typedefs
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
2
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
c
e
f
g
h
k
l
m
o
p
r
s
t
u
v
w
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Properties
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Related Functions
3
a
c
d
e
f
g
i
l
m
n
o
p
q
r
s
t
v
Files
File List
File Members
All
3
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
w
Typedefs
3
a
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
c
l
s
t
Macros
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
w
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
gui
attributetable
qgsgenericfeatureselectionmanager.cpp
Go to the documentation of this file.
1
/***************************************************************************
2
qgsgenericfeatureselectionmanager.cpp
3
--------------------------------------
4
Date : 11.6.2013
5
Copyright : (C) 2013 Matthias Kuhn
6
Email : matthias at opengis 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
#include "
qgsgenericfeatureselectionmanager.h
"
17
18
QgsGenericFeatureSelectionManager::QgsGenericFeatureSelectionManager
( QObject *parent )
19
:
QgsIFeatureSelectionManager
( parent )
20
{
21
}
22
23
QgsGenericFeatureSelectionManager::QgsGenericFeatureSelectionManager
(
const
QgsFeatureIds
&initialSelection, QObject *parent )
24
:
QgsIFeatureSelectionManager
( parent )
25
, mSelectedFeatures( initialSelection )
26
{
27
}
28
29
int
QgsGenericFeatureSelectionManager::selectedFeatureCount
()
30
{
31
return
mSelectedFeatures.size();
32
}
33
34
void
QgsGenericFeatureSelectionManager::select
(
const
QgsFeatureIds
&ids )
35
{
36
mSelectedFeatures += ids;
37
emit
selectionChanged
( ids,
QgsFeatureIds
(),
false
);
38
}
39
40
void
QgsGenericFeatureSelectionManager::deselect
(
const
QgsFeatureIds
&ids )
41
{
42
mSelectedFeatures -= ids;
43
emit
selectionChanged
(
QgsFeatureIds
(), ids,
false
);
44
}
45
46
void
QgsGenericFeatureSelectionManager::setSelectedFeatures
(
const
QgsFeatureIds
&ids )
47
{
48
QgsFeatureIds
selected = mSelectedFeatures - ids;
49
QgsFeatureIds
deselected = ids - mSelectedFeatures;
50
51
mSelectedFeatures = ids;
52
emit
selectionChanged
( selected, deselected,
true
);
53
}
54
55
const
QgsFeatureIds
&
QgsGenericFeatureSelectionManager::selectedFeatureIds
()
const
56
{
57
return
mSelectedFeatures;
58
}
QgsGenericFeatureSelectionManager::selectedFeatureIds
const QgsFeatureIds & selectedFeatureIds() const override
Returns reference to identifiers of selected features.
Definition:
qgsgenericfeatureselectionmanager.cpp:55
QgsGenericFeatureSelectionManager::QgsGenericFeatureSelectionManager
QgsGenericFeatureSelectionManager(QObject *parent=nullptr)
Definition:
qgsgenericfeatureselectionmanager.cpp:18
QgsIFeatureSelectionManager::selectionChanged
void selectionChanged(const QgsFeatureIds &selected, const QgsFeatureIds &deselected, bool clearAndSelect)
Emitted when selection was changed.
QgsGenericFeatureSelectionManager::deselect
void deselect(const QgsFeatureIds &ids) override
Deselect features by feature ids.
Definition:
qgsgenericfeatureselectionmanager.cpp:40
QgsGenericFeatureSelectionManager::setSelectedFeatures
void setSelectedFeatures(const QgsFeatureIds &ids) override
Change selection to the new set of features.
Definition:
qgsgenericfeatureselectionmanager.cpp:46
QgsFeatureIds
QSet< QgsFeatureId > QgsFeatureIds
Definition:
qgsfeatureid.h:37
QgsGenericFeatureSelectionManager::selectedFeatureCount
int selectedFeatureCount() override
Returns the number of features that are selected in this layer.
Definition:
qgsgenericfeatureselectionmanager.cpp:29
QgsGenericFeatureSelectionManager::select
void select(const QgsFeatureIds &ids) override
Select features by feature ids.
Definition:
qgsgenericfeatureselectionmanager.cpp:34
QgsIFeatureSelectionManager
Is an interface class to abstract feature selection handling.
Definition:
qgsifeatureselectionmanager.h:32
qgsgenericfeatureselectionmanager.h
Generated on Sat Oct 24 2020 17:43:09 for QGIS API Documentation by
1.8.20