Added query msgs to the menu
This commit is contained in:
parent
33227a648d
commit
9b29c8c722
@ -7401,6 +7401,17 @@ void MainWindow::buildQueryMenu(QMenu * menu, QString call){
|
|||||||
addMessageText(QString("%1 QUERY CALL [CALLSIGN]?").arg(selectedCall), true, true);
|
addMessageText(QString("%1 QUERY CALL [CALLSIGN]?").arg(selectedCall), true, true);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
auto qsoQueryMsgAction = menu->addAction(QString("%1 QUERY MSGS - Please deliver any messages you have for me").arg(call).trimmed());
|
||||||
|
connect(qsoQueryMsgAction, &QAction::triggered, this, [this](){
|
||||||
|
|
||||||
|
QString selectedCall = callsignSelected();
|
||||||
|
if(selectedCall.isEmpty()){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
addMessageText(QString("%1 QUERY MSGS").arg(selectedCall), true, true);
|
||||||
|
});
|
||||||
|
|
||||||
auto agnAction = menu->addAction(QString("%1 AGN? - Please automatically repeat your last transmission").arg(call).trimmed());
|
auto agnAction = menu->addAction(QString("%1 AGN? - Please automatically repeat your last transmission").arg(call).trimmed());
|
||||||
connect(agnAction, &QAction::triggered, this, [this](){
|
connect(agnAction, &QAction::triggered, this, [this](){
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user