aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorMartin Mathieson <martin.r.mathieson@googlemail.com>2021-10-05 11:52:40 +0100
committerMartin Mathieson <martin.r.mathieson@googlemail.com>2021-10-06 09:26:42 +0000
commitaf19fc795a40a5ef01e1457ec043081c2395422a (patch)
treec2a7202f72232934dceac0ed13a68d3a076edbf2 /ui
parentb240d5baa062a475ff0943b91205eb2aee2a0471 (diff)
Add NGAP Stats.
Diffstat (limited to 'ui')
-rw-r--r--ui/qt/main_window.h1
-rw-r--r--ui/qt/main_window.ui9
-rw-r--r--ui/qt/main_window_slots.cpp5
3 files changed, 15 insertions, 0 deletions
diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h
index 617de26b9b..e9f7b58e24 100644
--- a/ui/qt/main_window.h
+++ b/ui/qt/main_window.h
@@ -708,6 +708,7 @@ private slots:
void on_actionTelephonySMPPOperations_triggered();
void on_actionTelephonyUCPMessages_triggered();
void on_actionTelephonyF1APMessages_triggered();
+ void on_actionTelephonyNGAPMessages_triggered();
void on_actionTelephonySipFlows_triggered();
void on_actionBluetoothATT_Server_Attributes_triggered();
diff --git a/ui/qt/main_window.ui b/ui/qt/main_window.ui
index 235aae0490..560b2f1b7c 100644
--- a/ui/qt/main_window.ui
+++ b/ui/qt/main_window.ui
@@ -623,6 +623,7 @@
<addaction name="actionTelephonySMPPOperations"/>
<addaction name="actionTelephonyUCPMessages"/>
<addaction name="actionTelephonyF1APMessages"/>
+ <addaction name="actionTelephonyNGAPMessages"/>
</widget>
<widget class="QMenu" name="menuEdit">
<property name="title">
@@ -1975,6 +1976,14 @@
<string>F1AP Messages</string>
</property>
</action>
+ <action name="actionTelephonyNGAPMessages">
+ <property name="text">
+ <string>NGAP</string>
+ </property>
+ <property name="toolTip">
+ <string>NGAP Messages</string>
+ </property>
+ </action>
<action name="actionAnalyzeDecodeAs">
<property name="text">
<string>Decode &amp;As…</string>
diff --git a/ui/qt/main_window_slots.cpp b/ui/qt/main_window_slots.cpp
index b2b15c912a..7322670e9f 100644
--- a/ui/qt/main_window_slots.cpp
+++ b/ui/qt/main_window_slots.cpp
@@ -3602,6 +3602,11 @@ void MainWindow::on_actionTelephonyF1APMessages_triggered()
openStatisticsTreeDialog("f1ap");
}
+void MainWindow::on_actionTelephonyNGAPMessages_triggered()
+{
+ openStatisticsTreeDialog("ngap");
+}
+
void MainWindow::on_actionTelephonySipFlows_triggered()
{
openTelephonyVoipCallsDialogSip();