New UDP message SwitchConfiguration(14) to switch to an existing configuration

The Status(1) message also acquires  the current configuration name as
a new  field. See  NetworkMessage.hpp for  details. The  UDP reference
example program message_aggregator acquires the ability to display and
change  the configuration  of a  WSJT-X client  to exercise  these new
features.
This commit is contained in:
Bill Somerville
2019-06-13 01:44:28 +01:00
parent fc07bd9287
commit 3f5a996842
12 changed files with 171 additions and 77 deletions
@@ -256,6 +256,7 @@ void MessageAggregatorMainWindow::add_client (QString const& id, QString const&
connect (dock, &ClientWidget::location, server_, &MessageServer::location);
connect (view_action, &QAction::toggled, dock, &ClientWidget::setVisible);
connect (dock, &ClientWidget::highlight_callsign, server_, &MessageServer::highlight_callsign);
connect (dock, &ClientWidget::switch_configuration, server_, &MessageServer::switch_configuration);
dock_widgets_[id] = dock;
server_->replay (id); // request decodes and status
}