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
gps
qgsgpsdetector.h
Go to the documentation of this file.
1
/***************************************************************************
2
qgsgpsdetector.h - description
3
-------------------
4
begin : January 13th, 2009
5
copyright : (C) 2009 by Juergen E. Fischer
6
email : jef at norbit dot de
7
***************************************************************************/
8
9
/***************************************************************************
10
* *
11
* This program is free software; you can redistribute it and/or modify *
12
* it under the terms of the GNU General Public License as published by *
13
* the Free Software Foundation; either version 2 of the License, or *
14
* (at your option) any later version. *
15
* *
16
***************************************************************************/
17
18
#ifndef QGSGPSDETECTOR_H
19
#define QGSGPSDETECTOR_H
20
21
#include "qgsconfig.h"
22
23
#include <QObject>
24
#include <QList>
25
#include <QPair>
26
#if defined( HAVE_QTSERIALPORT )
27
#include <QSerialPort>
28
#endif
29
#include <memory>
30
31
#include "qgis_core.h"
32
#include "
qgis_sip.h
"
33
34
#ifndef SIP_RUN
35
template
<
class
T>
36
class
QgsSettingsEntryEnumFlag
;
37
#endif
38
39
class
QgsGpsConnection
;
40
class
QgsGpsInformation
;
41
46
class
CORE_EXPORT
QgsGpsDetector
:
public
QObject
47
{
48
Q_OBJECT
49
public
:
50
QgsGpsDetector
(
const
QString &portName );
51
52
#if defined( HAVE_QTSERIALPORT )
53
static
const
QgsSettingsEntryEnumFlag<QSerialPort::StopBits>
*settingsGpsStopBits
SIP_SKIP
;
54
static
const
QgsSettingsEntryEnumFlag<QSerialPort::DataBits>
*settingsGpsDataBits
SIP_SKIP
;
55
static
const
QgsSettingsEntryEnumFlag<QSerialPort::Parity>
*settingsGpsParity
SIP_SKIP
;
56
static
const
QgsSettingsEntryEnumFlag<QSerialPort::FlowControl>
*settingsGpsFlowControl
SIP_SKIP
;
57
#endif
58
59
~QgsGpsDetector
()
override
;
60
61
static
QList< QPair<QString, QString> > availablePorts();
62
63
public
slots:
64
void
advance();
65
void
detected(
const
QgsGpsInformation
& );
66
void
connDestroyed( QObject * );
67
68
signals:
69
70
// TODO QGIS 4.0 - this is horrible, fragile, leaky and crash prone API.
71
// don't transfer ownership with this signal, and add an explicit takeConnection member!
72
77
void
detected
(
QgsGpsConnection
*connection );
78
79
void
detectionFailed
();
80
81
private
:
82
int
mPortIndex = 0;
83
int
mBaudIndex = -1;
84
QList< QPair< QString, QString > > mPortList;
85
QList<qint32> mBaudList;
86
87
std::unique_ptr< QgsGpsConnection > mConn;
88
};
46
class
CORE_EXPORT
QgsGpsDetector
:
public
QObject {
…
};
89
90
#endif
// QGSGPSDETECTOR_H
QgsGpsConnection
Abstract base class for connection to a GPS device.
Definition
qgsgpsconnection.h:50
QgsGpsDetector
Class to detect the GPS port.
Definition
qgsgpsdetector.h:47
QgsGpsDetector::~QgsGpsDetector
~QgsGpsDetector() override
QgsGpsDetector::detected
void detected(QgsGpsConnection *connection)
Emitted when the GPS connection has been detected.
QgsGpsDetector::detectionFailed
void detectionFailed()
QgsGpsInformation
Encapsulates information relating to a GPS position fix.
Definition
qgsgpsinformation.h:36
QgsSettingsEntryEnumFlag
A template class for enum and flag settings entry.
Definition
qgssettingsentryenumflag.h:36
qgis_sip.h
SIP_SKIP
#define SIP_SKIP
Definition
qgis_sip.h:126
Generated on Mon Oct 30 2023 18:42:25 for QGIS API Documentation by
1.9.8