aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/main_window.h
diff options
context:
space:
mode:
authorj.novak@netsystem.cz <j.novak@netsystem.cz>2021-04-07 05:40:09 +0000
committerWireshark GitLab Utility <6629907-ws-gitlab-utility@users.noreply.gitlab.com>2021-04-07 05:40:09 +0000
commit2b072b8e76c37f9db67a9f37e4b964c9eadeec8e (patch)
tree45be6df3e8cba219e1a924de95cde0e9c21b665a /ui/qt/main_window.h
parentfe7bf413fca8e5aca1e5124a34fe09a2f819be9c (diff)
RTP Stream Analysis: Process more streams than two, audio save removed
Diffstat (limited to 'ui/qt/main_window.h')
-rw-r--r--ui/qt/main_window.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/ui/qt/main_window.h b/ui/qt/main_window.h
index cad88cf6cd..3a8353c6fa 100644
--- a/ui/qt/main_window.h
+++ b/ui/qt/main_window.h
@@ -77,6 +77,7 @@
#include <ui/qt/models/pref_models.h>
#include "rtp_stream_dialog.h"
#include "voip_calls_dialog.h"
+#include "rtp_analysis_dialog.h"
class AccordionFrame;
class ByteViewTab;
@@ -250,6 +251,7 @@ private:
QPointer<VoipCallsDialog> voip_calls_dialog_; // Singleton pattern used
QPointer<VoipCallsDialog> sip_calls_dialog_; // Singleton pattern used
QPointer<RtpPlayerDialog> rtp_player_dialog_; // Singleton pattern used
+ QPointer<RtpAnalysisDialog> rtp_analysis_dialog_; // Singleton pattern used
void freeze();
void thaw();
@@ -312,9 +314,6 @@ signals:
void framesSelected(QList<int>);
void captureActive(int);
- void replaceRtpStreams(QVector<rtpstream_info_t *> stream_infos);
- void addRtpStreams(QVector<rtpstream_info_t *> stream_infos);
- void removeRtpStreams(QVector<rtpstream_info_t *> stream_infos);
void selectRtpStream(rtpstream_id_t *id);
void deselectRtpStream(rtpstream_id_t *id);
@@ -367,6 +366,9 @@ public slots:
void rtpPlayerDialogReplaceRtpStreams(QVector<rtpstream_info_t *> stream_infos);
void rtpPlayerDialogAddRtpStreams(QVector<rtpstream_info_t *> stream_infos);
void rtpPlayerDialogRemoveRtpStreams(QVector<rtpstream_info_t *> stream_infos);
+ void rtpAnalysisDialogReplaceRtpStreams(QVector<rtpstream_info_t *> stream_infos);
+ void rtpAnalysisDialogAddRtpStreams(QVector<rtpstream_info_t *> stream_infos);
+ void rtpAnalysisDialogRemoveRtpStreams(QVector<rtpstream_info_t *> stream_infos);
void rtpStreamsDialogSelectRtpStream(rtpstream_id_t *id);
void rtpStreamsDialogDeselectRtpStream(rtpstream_id_t *id);
@@ -686,6 +688,7 @@ private slots:
void openTelephonyRtpStreamsDialog();
void openTelephonyRtpPlayerDialog();
void openTelephonyVoipCallsDialog(bool all_flows);
+ void openTelephonyRtpAnalysisDialog();
void on_actionTelephonyVoipCalls_triggered();
void on_actionTelephonyGsmMapSummary_triggered();
void statCommandLteMacStatistics(const char *arg, void *);