QGIS API Documentation
3.34.0-Prizren (ffbdd678812)
Toggle main menu visibility
Main Page
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
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
i
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 Symbols
3
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
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
x
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
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
x
y
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
src
core
qgsfieldproxymodel.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsfieldproxymodel.h
3
--------------------------------------
4
Date : 01.04.2014
5
Copyright : (C) 2014 Denis Rouzaud
6
Email : denis.rouzaud@gmail.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 QGSFIELDPROXYMODEL_H
17
#define QGSFIELDPROXYMODEL_H
18
19
#include <QSortFilterProxyModel>
20
21
#include "qgis_core.h"
22
23
#include "
qgis_sip.h
"
24
25
class
QgsFieldModel
;
26
32
class
CORE_EXPORT
QgsFieldProxyModel
:
public
QSortFilterProxyModel
33
{
34
Q_OBJECT
35
36
public
:
37
39
enum
Filter
40
{
41
String = 1,
42
Int = 2,
43
LongLong = 4,
44
Double = 8,
45
Numeric = Int | LongLong | Double,
46
Date = 16,
47
Time = 32,
48
HideReadOnly = 64,
49
DateTime = 128,
50
Binary = 256,
51
Boolean = 512,
52
AllTypes = Numeric | Date | String | Time | DateTime | Binary | Boolean,
53
};
39
enum
Filter
{
…
};
54
Q_DECLARE_FLAGS( Filters, Filter )
55
Q_FLAG( Filters )
56
57
61
explicit
QgsFieldProxyModel
( QObject *parent
SIP_TRANSFERTHIS
=
nullptr
);
62
64
QgsFieldModel
*
sourceFieldModel
() {
return
mModel; }
65
71
QgsFieldProxyModel
*setFilters( QgsFieldProxyModel::Filters filters );
72
77
const
Filters &
filters
()
const
{
return
mFilters; }
78
79
private
:
80
Filters mFilters;
81
QgsFieldModel
*mModel =
nullptr
;
82
84
bool
isReadOnly(
const
QModelIndex &index )
const
;
85
86
// QSortFilterProxyModel interface
87
public
:
88
bool
filterAcceptsRow(
int
source_row,
const
QModelIndex &source_parent )
const override
;
89
bool
lessThan(
const
QModelIndex &left,
const
QModelIndex &right )
const override
;
90
};
32
class
CORE_EXPORT
QgsFieldProxyModel
:
public
QSortFilterProxyModel {
…
};
91
92
Q_DECLARE_OPERATORS_FOR_FLAGS
( QgsFieldProxyModel::Filters )
93
94
#endif
// QGSFIELDPROXYMODEL_H
QgsFieldModel
The QgsFieldModel class is a model to display the list of fields in widgets (optionally associated wi...
Definition
qgsfieldmodel.h:39
QgsFieldProxyModel
The QgsFieldProxyModel class provides an easy to use model to display the list of fields of a layer.
Definition
qgsfieldproxymodel.h:33
QgsFieldProxyModel::sourceFieldModel
QgsFieldModel * sourceFieldModel()
Returns the QgsFieldModel used in this QSortFilterProxyModel.
Definition
qgsfieldproxymodel.h:64
QgsFieldProxyModel::Filter
Filter
Field type filters.
Definition
qgsfieldproxymodel.h:40
QgsFieldProxyModel::filters
const Filters & filters() const
Returns the filters controlling displayed fields.
Definition
qgsfieldproxymodel.h:77
qgis_sip.h
SIP_TRANSFERTHIS
#define SIP_TRANSFERTHIS
Definition
qgis_sip.h:53
Q_DECLARE_OPERATORS_FOR_FLAGS
Q_DECLARE_OPERATORS_FOR_FLAGS(QgsTextRendererUtils::CurvedTextFlags)
Generated on Mon Oct 30 2023 18:42:25 for QGIS API Documentation by
1.9.8