Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Q
qgroundcontrol
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Valentin Platzgummer
qgroundcontrol
Commits
6a84a9a9
Commit
6a84a9a9
authored
Jan 05, 2016
by
Tomaz Canabrava
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More conversions from old to new Connect syntax
Signed-off-by:
Tomaz Canabrava
<
tomaz.canabrava@intel.com
>
parent
8e9f8ede
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
48 additions
and
40 deletions
+48
-40
QGCXPlaneLink.cc
src/comm/QGCXPlaneLink.cc
+1
-1
SerialLink.cc
src/comm/SerialLink.cc
+2
-1
TCPLink.cc
src/comm/TCPLink.cc
+7
-3
UDPLink.cc
src/comm/UDPLink.cc
+1
-1
UAS.cc
src/uas/UAS.cc
+2
-2
UASMessageHandler.cc
src/uas/UASMessageHandler.cc
+2
-2
MAVLinkDecoder.cc
src/ui/MAVLinkDecoder.cc
+1
-1
MAVLinkSettingsWidget.cc
src/ui/MAVLinkSettingsWidget.cc
+32
-29
No files found.
src/comm/QGCXPlaneLink.cc
View file @
6a84a9a9
...
@@ -248,7 +248,7 @@ void QGCXPlaneLink::run()
...
@@ -248,7 +248,7 @@ void QGCXPlaneLink::run()
disconnect
(
this
,
&
QGCXPlaneLink
::
sensorHilRawImuChanged
,
_vehicle
->
uas
(),
&
UAS
::
sendHilSensors
);
disconnect
(
this
,
&
QGCXPlaneLink
::
sensorHilRawImuChanged
,
_vehicle
->
uas
(),
&
UAS
::
sendHilSensors
);
connectState
=
false
;
connectState
=
false
;
disconnect
(
socket
,
SIGNAL
(
readyRead
()),
this
,
SLOT
(
readBytes
())
);
disconnect
(
socket
,
&
QUdpSocket
::
readyRead
,
this
,
&
QGCXPlaneLink
::
readBytes
);
socket
->
close
();
socket
->
close
();
socket
->
deleteLater
();
socket
->
deleteLater
();
...
...
src/comm/SerialLink.cc
View file @
6a84a9a9
...
@@ -215,7 +215,8 @@ bool SerialLink::_hardwareConnect(QSerialPort::SerialPortError& error, QString&
...
@@ -215,7 +215,8 @@ bool SerialLink::_hardwareConnect(QSerialPort::SerialPortError& error, QString&
return
false
;
// couldn't create serial port.
return
false
;
// couldn't create serial port.
}
}
QObject
::
connect
(
_port
,
SIGNAL
(
error
(
QSerialPort
::
SerialPortError
)),
this
,
SLOT
(
linkError
(
QSerialPort
::
SerialPortError
)));
QObject
::
connect
(
_port
,
static_cast
<
void
(
QSerialPort
::*
)(
QSerialPort
::
SerialPortError
)
>
(
&
QSerialPort
::
error
),
this
,
&
SerialLink
::
linkError
);
QObject
::
connect
(
_port
,
&
QIODevice
::
readyRead
,
this
,
&
SerialLink
::
_readBytes
);
QObject
::
connect
(
_port
,
&
QIODevice
::
readyRead
,
this
,
&
SerialLink
::
_readBytes
);
// port->setCommTimeouts(QSerialPort::CtScheme_NonBlockingRead);
// port->setCommTimeouts(QSerialPort::CtScheme_NonBlockingRead);
...
...
src/comm/TCPLink.cc
View file @
6a84a9a9
...
@@ -156,10 +156,14 @@ bool TCPLink::_hardwareConnect()
...
@@ -156,10 +156,14 @@ bool TCPLink::_hardwareConnect()
{
{
Q_ASSERT
(
_socket
==
NULL
);
Q_ASSERT
(
_socket
==
NULL
);
_socket
=
new
QTcpSocket
();
_socket
=
new
QTcpSocket
();
QSignalSpy
errorSpy
(
_socket
,
SIGNAL
(
error
(
QAbstractSocket
::
SocketError
)));
QSignalSpy
errorSpy
(
_socket
,
static_cast
<
void
(
QTcpSocket
::*
)(
QAbstractSocket
::
SocketError
)
>
(
&
QTcpSocket
::
error
));
_socket
->
connectToHost
(
_config
->
address
(),
_config
->
port
());
_socket
->
connectToHost
(
_config
->
address
(),
_config
->
port
());
QObject
::
connect
(
_socket
,
SIGNAL
(
readyRead
()),
this
,
SLOT
(
readBytes
()));
QObject
::
connect
(
_socket
,
&
QTcpSocket
::
readyRead
,
this
,
&
TCPLink
::
readBytes
);
QObject
::
connect
(
_socket
,
SIGNAL
(
error
(
QAbstractSocket
::
SocketError
)),
this
,
SLOT
(
_socketError
(
QAbstractSocket
::
SocketError
)));
QObject
::
connect
(
_socket
,
static_cast
<
void
(
QTcpSocket
::*
)(
QAbstractSocket
::
SocketError
)
>
(
&
QTcpSocket
::
error
),
this
,
&
TCPLink
::
_socketError
);
// Give the socket a second to connect to the other side otherwise error out
// Give the socket a second to connect to the other side otherwise error out
if
(
!
_socket
->
waitForConnected
(
1000
))
if
(
!
_socket
->
waitForConnected
(
1000
))
{
{
...
...
src/comm/UDPLink.cc
View file @
6a84a9a9
...
@@ -327,7 +327,7 @@ bool UDPLink::_hardwareConnect()
...
@@ -327,7 +327,7 @@ bool UDPLink::_hardwareConnect()
_registerZeroconf
(
_config
->
localPort
(),
kZeroconfRegistration
);
_registerZeroconf
(
_config
->
localPort
(),
kZeroconfRegistration
);
//-- Connect signal if this version of Qt is not broken
//-- Connect signal if this version of Qt is not broken
if
(
!
UDP_BROKEN_SIGNAL
)
{
if
(
!
UDP_BROKEN_SIGNAL
)
{
QObject
::
connect
(
_socket
,
SIGNAL
(
readyRead
()),
this
,
SLOT
(
readBytes
())
);
QObject
::
connect
(
_socket
,
&
QUdpSocket
::
readyRead
,
this
,
&
UDPLink
::
readBytes
);
}
}
emit
connected
();
emit
connected
();
}
else
{
}
else
{
...
...
src/uas/UAS.cc
View file @
6a84a9a9
...
@@ -185,11 +185,11 @@ UAS::UAS(MAVLinkProtocol* protocol, Vehicle* vehicle, FirmwarePluginManager * fi
...
@@ -185,11 +185,11 @@ UAS::UAS(MAVLinkProtocol* protocol, Vehicle* vehicle, FirmwarePluginManager * fi
}
}
#ifndef __mobile__
#ifndef __mobile__
connect
(
mavlink
,
SIGNAL
(
messageReceived
(
LinkInterface
*
,
mavlink_message_t
)),
&
fileManager
,
SLOT
(
receiveMessage
(
LinkInterface
*
,
mavlink_message_t
))
);
connect
(
mavlink
,
&
MAVLinkProtocol
::
messageReceived
,
&
fileManager
,
&
FileManager
::
receiveMessage
);
#endif
#endif
color
=
UASInterface
::
getNextColor
();
color
=
UASInterface
::
getNextColor
();
connect
(
&
statusTimeout
,
SIGNAL
(
timeout
()),
this
,
SLOT
(
updateState
())
);
connect
(
&
statusTimeout
,
&
QTimer
::
timeout
,
this
,
&
UAS
::
updateState
);
statusTimeout
.
start
(
500
);
statusTimeout
.
start
(
500
);
}
}
...
...
src/uas/UASMessageHandler.cc
View file @
6a84a9a9
...
@@ -100,7 +100,7 @@ void UASMessageHandler::_activeVehicleChanged(Vehicle* vehicle)
...
@@ -100,7 +100,7 @@ void UASMessageHandler::_activeVehicleChanged(Vehicle* vehicle)
// If we were already attached to an autopilot, disconnect it.
// If we were already attached to an autopilot, disconnect it.
if
(
_activeUAS
)
if
(
_activeUAS
)
{
{
disconnect
(
_activeUAS
,
SIGNAL
(
textMessageReceived
(
int
,
int
,
int
,
QString
)),
this
,
SLOT
(
handleTextMessage
(
int
,
int
,
int
,
QString
))
);
disconnect
(
_activeUAS
,
&
UASInterface
::
textMessageReceived
,
this
,
&
UASMessageHandler
::
handleTextMessage
);
_activeUAS
=
NULL
;
_activeUAS
=
NULL
;
clearMessages
();
clearMessages
();
emit
textMessageReceived
(
NULL
);
emit
textMessageReceived
(
NULL
);
...
@@ -113,7 +113,7 @@ void UASMessageHandler::_activeVehicleChanged(Vehicle* vehicle)
...
@@ -113,7 +113,7 @@ void UASMessageHandler::_activeVehicleChanged(Vehicle* vehicle)
// Connect to the new UAS.
// Connect to the new UAS.
clearMessages
();
clearMessages
();
_activeUAS
=
uas
;
_activeUAS
=
uas
;
connect
(
uas
,
SIGNAL
(
textMessageReceived
(
int
,
int
,
int
,
QString
)),
this
,
SLOT
(
handleTextMessage
(
int
,
int
,
int
,
QString
))
);
connect
(
uas
,
&
UASInterface
::
textMessageReceived
,
this
,
&
UASMessageHandler
::
handleTextMessage
);
}
}
}
}
...
...
src/ui/MAVLinkDecoder.cc
View file @
6a84a9a9
...
@@ -52,7 +52,7 @@ MAVLinkDecoder::MAVLinkDecoder(MAVLinkProtocol* protocol, QObject *parent) :
...
@@ -52,7 +52,7 @@ MAVLinkDecoder::MAVLinkDecoder(MAVLinkProtocol* protocol, QObject *parent) :
textMessageFilter
.
insert
(
MAVLINK_MSG_ID_NAMED_VALUE_INT
,
false
);
textMessageFilter
.
insert
(
MAVLINK_MSG_ID_NAMED_VALUE_INT
,
false
);
// textMessageFilter.insert(MAVLINK_MSG_ID_HIGHRES_IMU, false);
// textMessageFilter.insert(MAVLINK_MSG_ID_HIGHRES_IMU, false);
connect
(
protocol
,
SIGNAL
(
messageReceived
(
LinkInterface
*
,
mavlink_message_t
)),
this
,
SLOT
(
receiveMessage
(
LinkInterface
*
,
mavlink_message_t
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
messageReceived
,
this
,
&
MAVLinkDecoder
::
receiveMessage
);
start
(
LowPriority
);
start
(
LowPriority
);
}
}
...
...
src/ui/MAVLinkSettingsWidget.cc
View file @
6a84a9a9
...
@@ -67,37 +67,38 @@ MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget
...
@@ -67,37 +67,38 @@ MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget
// Connect actions
// Connect actions
// Heartbeat
// Heartbeat
connect
(
protocol
,
SIGNAL
(
heartbeatChanged
(
bool
)),
m_ui
->
heartbeatCheckBox
,
SLOT
(
setChecked
(
bool
)));
connect
(
protocol
,
&
MAVLinkProtocol
::
heartbeatChanged
,
m_ui
->
heartbeatCheckBox
,
&
QCheckBox
::
setChecked
);
connect
(
m_ui
->
heartbeatCheckBox
,
SIGNAL
(
toggled
(
bool
)),
protocol
,
SLOT
(
enableHeartbeats
(
bool
)));
connect
(
m_ui
->
heartbeatCheckBox
,
&
QCheckBox
::
toggled
,
protocol
,
&
MAVLinkProtocol
::
enableHeartbeats
);
// Version check
// Version check
connect
(
protocol
,
SIGNAL
(
versionCheckChanged
(
bool
)),
m_ui
->
versionCheckBox
,
SLOT
(
setChecked
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
versionCheckChanged
,
m_ui
->
versionCheckBox
,
&
QCheckBox
::
setChecked
);
connect
(
m_ui
->
versionCheckBox
,
SIGNAL
(
toggled
(
bool
)),
protocol
,
SLOT
(
enableVersionCheck
(
bool
))
);
connect
(
m_ui
->
versionCheckBox
,
&
QCheckBox
::
toggled
,
protocol
,
&
MAVLinkProtocol
::
enableVersionCheck
);
// System ID
// System ID
connect
(
protocol
,
SIGNAL
(
systemIdChanged
(
int
)),
m_ui
->
systemIdSpinBox
,
SLOT
(
setValue
(
int
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
systemIdChanged
,
m_ui
->
systemIdSpinBox
,
&
QSpinBox
::
setValue
);
connect
(
m_ui
->
systemIdSpinBox
,
SIGNAL
(
valueChanged
(
int
)),
protocol
,
SLOT
(
setSystemId
(
int
))
);
connect
(
m_ui
->
systemIdSpinBox
,
static_cast
<
void
(
QSpinBox
::*
)(
int
)
>
(
&
QSpinBox
::
valueChanged
),
protocol
,
&
MAVLinkProtocol
::
setSystemId
);
// Multiplexing
// Multiplexing
connect
(
protocol
,
SIGNAL
(
multiplexingChanged
(
bool
)),
m_ui
->
multiplexingCheckBox
,
SLOT
(
setChecked
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
multiplexingChanged
,
m_ui
->
multiplexingCheckBox
,
&
QCheckBox
::
setChecked
);
connect
(
m_ui
->
multiplexingCheckBox
,
SIGNAL
(
toggled
(
bool
)),
protocol
,
SLOT
(
enableMultiplexing
(
bool
)));
connect
(
m_ui
->
multiplexingCheckBox
,
SIGNAL
(
toggled
(
bool
)),
protocol
,
SLOT
(
enableMultiplexing
(
bool
)));
// Parameter guard
// Parameter guard
connect
(
protocol
,
SIGNAL
(
paramGuardChanged
(
bool
)),
m_ui
->
paramGuardCheckBox
,
SLOT
(
setChecked
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramGuardChanged
,
m_ui
->
paramGuardCheckBox
,
&
QCheckBox
::
setChecked
);
connect
(
m_ui
->
paramGuardCheckBox
,
SIGNAL
(
toggled
(
bool
)),
protocol
,
SLOT
(
enableParamGuard
(
bool
))
);
connect
(
m_ui
->
paramGuardCheckBox
,
&
QCheckBox
::
toggled
,
protocol
,
&
MAVLinkProtocol
::
enableParamGuard
);
connect
(
protocol
,
SIGNAL
(
paramRetransmissionTimeoutChanged
(
int
)),
m_ui
->
paramRetransmissionSpinBox
,
SLOT
(
setValue
(
int
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramRetransmissionTimeoutChanged
,
m_ui
->
paramRetransmissionSpinBox
,
&
QSpinBox
::
setValue
);
connect
(
m_ui
->
paramRetransmissionSpinBox
,
SIGNAL
(
valueChanged
(
int
)),
protocol
,
SLOT
(
setParamRetransmissionTimeout
(
int
))
);
connect
(
m_ui
->
paramRetransmissionSpinBox
,
static_cast
<
void
(
QSpinBox
::*
)(
int
)
>
(
&
QSpinBox
::
valueChanged
),
protocol
,
&
MAVLinkProtocol
::
setParamRetransmissionTimeout
);
connect
(
protocol
,
SIGNAL
(
paramRewriteTimeoutChanged
(
int
)),
m_ui
->
paramRewriteSpinBox
,
SLOT
(
setValue
(
int
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramRewriteTimeoutChanged
,
m_ui
->
paramRewriteSpinBox
,
&
QSpinBox
::
setValue
);
connect
(
m_ui
->
paramRewriteSpinBox
,
SIGNAL
(
valueChanged
(
int
)),
protocol
,
SLOT
(
setParamRewriteTimeout
(
int
))
);
connect
(
m_ui
->
paramRewriteSpinBox
,
static_cast
<
void
(
QSpinBox
::*
)(
int
)
>
(
&
QSpinBox
::
valueChanged
),
protocol
,
&
MAVLinkProtocol
::
setParamRewriteTimeout
);
// Action guard
// Action guard
connect
(
protocol
,
SIGNAL
(
actionGuardChanged
(
bool
)),
m_ui
->
actionGuardCheckBox
,
SLOT
(
setChecked
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
actionGuardChanged
,
m_ui
->
actionGuardCheckBox
,
&
QCheckBox
::
setChecked
);
connect
(
m_ui
->
actionGuardCheckBox
,
SIGNAL
(
toggled
(
bool
)),
protocol
,
SLOT
(
enableActionGuard
(
bool
))
);
connect
(
m_ui
->
actionGuardCheckBox
,
&
QCheckBox
::
toggled
,
protocol
,
&
MAVLinkProtocol
::
enableActionGuard
);
connect
(
protocol
,
SIGNAL
(
actionRetransmissionTimeoutChanged
(
int
)),
m_ui
->
actionRetransmissionSpinBox
,
SLOT
(
setValue
(
int
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
actionRetransmissionTimeoutChanged
,
m_ui
->
actionRetransmissionSpinBox
,
&
QSpinBox
::
setValue
);
connect
(
m_ui
->
actionRetransmissionSpinBox
,
SIGNAL
(
valueChanged
(
int
)),
protocol
,
SLOT
(
setActionRetransmissionTimeout
(
int
))
);
connect
(
m_ui
->
actionRetransmissionSpinBox
,
static_cast
<
void
(
QSpinBox
::*
)(
int
)
>
(
&
QSpinBox
::
valueChanged
),
protocol
,
&
MAVLinkProtocol
::
setActionRetransmissionTimeout
);
// MAVLink AUTH
// MAVLink AUTH
connect
(
protocol
,
SIGNAL
(
authChanged
(
bool
)),
m_ui
->
droneOSCheckBox
,
SLOT
(
setChecked
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
authChanged
,
m_ui
->
droneOSCheckBox
,
&
QCheckBox
::
setChecked
);
connect
(
m_ui
->
droneOSCheckBox
,
SIGNAL
(
toggled
(
bool
)),
this
,
SLOT
(
enableDroneOS
(
bool
))
);
connect
(
m_ui
->
droneOSCheckBox
,
&
QCheckBox
::
toggled
,
this
,
&
MAVLinkSettingsWidget
::
enableDroneOS
);
connect
(
protocol
,
SIGNAL
(
authKeyChanged
(
QString
)),
m_ui
->
droneOSLineEdit
,
SLOT
(
setText
(
QString
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
authKeyChanged
,
m_ui
->
droneOSLineEdit
,
&
QLineEdit
::
setText
);
connect
(
m_ui
->
droneOSLineEdit
,
SIGNAL
(
textChanged
(
QString
)),
this
,
SLOT
(
setDroneOSKey
(
QString
))
);
connect
(
m_ui
->
droneOSLineEdit
,
&
QLineEdit
::
textChanged
,
this
,
&
MAVLinkSettingsWidget
::
setDroneOSKey
);
// Drone OS
// Drone OS
connect
(
m_ui
->
droneOSComboBox
,
SIGNAL
(
currentIndexChanged
(
QString
)),
this
,
SLOT
(
setDroneOSHost
(
QString
))
);
connect
(
m_ui
->
droneOSComboBox
,
static_cast
<
void
(
QComboBox
::*
)(
const
QString
&
)
>
(
&
QComboBox
::
currentIndexChanged
),
this
,
&
MAVLinkSettingsWidget
::
setDroneOSHost
);
// FIXME Manually trigger this action here, this brings control code to UI = BAD!
// FIXME Manually trigger this action here, this brings control code to UI = BAD!
setDroneOSHost
(
m_ui
->
droneOSComboBox
->
currentText
());
setDroneOSHost
(
m_ui
->
droneOSComboBox
->
currentText
());
...
@@ -105,26 +106,28 @@ MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget
...
@@ -105,26 +106,28 @@ MAVLinkSettingsWidget::MAVLinkSettingsWidget(MAVLinkProtocol* protocol, QWidget
m_ui
->
versionLabel
->
setText
(
tr
(
"MAVLINK_VERSION: %1"
).
arg
(
protocol
->
getVersion
()));
m_ui
->
versionLabel
->
setText
(
tr
(
"MAVLINK_VERSION: %1"
).
arg
(
protocol
->
getVersion
()));
// Connect visibility updates
// Connect visibility updates
connect
(
protocol
,
SIGNAL
(
versionCheckChanged
(
bool
)),
m_ui
->
versionLabel
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
versionCheckChanged
,
m_ui
->
versionLabel
,
&
QWidget
::
setVisible
);
m_ui
->
versionLabel
->
setVisible
(
protocol
->
versionCheckEnabled
());
m_ui
->
versionLabel
->
setVisible
(
protocol
->
versionCheckEnabled
());
// // Multiplexing visibility
// // Multiplexing visibility
// connect(protocol, SIGNAL(multiplexingChanged(bool)), m_ui->multiplexingFilterCheckBox, SLOT(setVisible(bool)));
// connect(protocol, SIGNAL(multiplexingChanged(bool)), m_ui->multiplexingFilterCheckBox, SLOT(setVisible(bool)));
// m_ui->multiplexingFilterCheckBox->setVisible(protocol->multiplexingEnabled());
// m_ui->multiplexingFilterCheckBox->setVisible(protocol->multiplexingEnabled());
// connect(protocol, SIGNAL(multiplexingChanged(bool)), m_ui->multiplexingFilterLineEdit, SLOT(setVisible(bool)));
// connect(protocol, SIGNAL(multiplexingChanged(bool)), m_ui->multiplexingFilterLineEdit, SLOT(setVisible(bool)));
// m_ui->multiplexingFilterLineEdit->setVisible(protocol->multiplexingEnabled());
// m_ui->multiplexingFilterLineEdit->setVisible(protocol->multiplexingEnabled());
// Param guard visibility
// Param guard visibility
connect
(
protocol
,
SIGNAL
(
paramGuardChanged
(
bool
)),
m_ui
->
paramRetransmissionSpinBox
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramGuardChanged
,
m_ui
->
paramRetransmissionSpinBox
,
&
QWidget
::
setVisible
);
m_ui
->
paramRetransmissionSpinBox
->
setVisible
(
protocol
->
paramGuardEnabled
());
m_ui
->
paramRetransmissionSpinBox
->
setVisible
(
protocol
->
paramGuardEnabled
());
connect
(
protocol
,
SIGNAL
(
paramGuardChanged
(
bool
)),
m_ui
->
paramRetransmissionLabel
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramGuardChanged
,
m_ui
->
paramRetransmissionLabel
,
&
QWidget
::
setVisible
);
m_ui
->
paramRetransmissionLabel
->
setVisible
(
protocol
->
paramGuardEnabled
());
m_ui
->
paramRetransmissionLabel
->
setVisible
(
protocol
->
paramGuardEnabled
());
connect
(
protocol
,
SIGNAL
(
paramGuardChanged
(
bool
)),
m_ui
->
paramRewriteSpinBox
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramGuardChanged
,
m_ui
->
paramRewriteSpinBox
,
&
QWidget
::
setVisible
);
m_ui
->
paramRewriteSpinBox
->
setVisible
(
protocol
->
paramGuardEnabled
());
m_ui
->
paramRewriteSpinBox
->
setVisible
(
protocol
->
paramGuardEnabled
());
connect
(
protocol
,
SIGNAL
(
paramGuardChanged
(
bool
)),
m_ui
->
paramRewriteLabel
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
paramGuardChanged
,
m_ui
->
paramRewriteLabel
,
&
QWidget
::
setVisible
);
m_ui
->
paramRewriteLabel
->
setVisible
(
protocol
->
paramGuardEnabled
());
m_ui
->
paramRewriteLabel
->
setVisible
(
protocol
->
paramGuardEnabled
());
// Action guard visibility
// Action guard visibility
connect
(
protocol
,
SIGNAL
(
actionGuardChanged
(
bool
)),
m_ui
->
actionRetransmissionSpinBox
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
actionGuardChanged
,
m_ui
->
actionRetransmissionSpinBox
,
&
QWidget
::
setVisible
);
m_ui
->
actionRetransmissionSpinBox
->
setVisible
(
protocol
->
actionGuardEnabled
());
m_ui
->
actionRetransmissionSpinBox
->
setVisible
(
protocol
->
actionGuardEnabled
());
connect
(
protocol
,
SIGNAL
(
actionGuardChanged
(
bool
)),
m_ui
->
actionRetransmissionLabel
,
SLOT
(
setVisible
(
bool
))
);
connect
(
protocol
,
&
MAVLinkProtocol
::
actionGuardChanged
,
m_ui
->
actionRetransmissionLabel
,
&
QWidget
::
setVisible
);
m_ui
->
actionRetransmissionLabel
->
setVisible
(
protocol
->
actionGuardEnabled
());
m_ui
->
actionRetransmissionLabel
->
setVisible
(
protocol
->
actionGuardEnabled
());
// TODO implement filtering
// TODO implement filtering
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment