summaryrefslogtreecommitdiffstats
path: root/ui/qt/follow_stream_dialog.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-10 20:34:10 +0000
commite4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc (patch)
tree68cb5ef9081156392f1dd62a00c6ccc1451b93df /ui/qt/follow_stream_dialog.h
parentInitial commit. (diff)
downloadwireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.tar.xz
wireshark-e4ba6dbc3f1e76890b22773807ea37fe8fa2b1bc.zip
Adding upstream version 4.2.2.upstream/4.2.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ui/qt/follow_stream_dialog.h')
-rw-r--r--ui/qt/follow_stream_dialog.h128
1 files changed, 128 insertions, 0 deletions
diff --git a/ui/qt/follow_stream_dialog.h b/ui/qt/follow_stream_dialog.h
new file mode 100644
index 0000000..e56023d
--- /dev/null
+++ b/ui/qt/follow_stream_dialog.h
@@ -0,0 +1,128 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef FOLLOW_STREAM_DIALOG_H
+#define FOLLOW_STREAM_DIALOG_H
+
+#include <config.h>
+
+#include <glib.h>
+
+#include <stdio.h>
+
+#ifdef HAVE_UNISTD_H
+#include <unistd.h>
+#endif
+
+#include "file.h"
+
+#include "epan/follow.h"
+
+#include "wireshark_dialog.h"
+
+#include <QFile>
+#include <QMap>
+#include <QPushButton>
+#include <QTextCodec>
+
+namespace Ui {
+class FollowStreamDialog;
+}
+
+class FollowStreamDialog : public WiresharkDialog
+{
+ Q_OBJECT
+
+public:
+ explicit FollowStreamDialog(QWidget &parent, CaptureFile &cf, int proto_id);
+ ~FollowStreamDialog();
+
+ void addCodecs(const QMap<QString, QTextCodec *> &codecMap);
+ bool follow(QString previous_filter = QString(), bool use_stream_index = false, guint stream_num = 0, guint sub_stream_num = 0);
+
+protected:
+ bool eventFilter(QObject *obj, QEvent *event);
+ void keyPressEvent(QKeyEvent *event);
+ void captureFileClosed();
+
+private slots:
+ void on_cbCharset_currentIndexChanged(int idx);
+ void on_cbDirections_currentIndexChanged(int idx);
+ void on_bFind_clicked();
+ void on_leFind_returnPressed();
+
+ void helpButton();
+ void backButton();
+ void close();
+ void filterOut();
+ void useRegexFind(bool use_regex);
+ void findText(bool go_back = true);
+ void saveAs();
+ void printStream();
+ void fillHintLabel(int text_pos);
+ void goToPacketForTextPos(int text_pos);
+
+ void on_streamNumberSpinBox_valueChanged(int stream_num);
+ void on_subStreamNumberSpinBox_valueChanged(int sub_stream_num);
+
+ void on_buttonBox_rejected();
+
+signals:
+ void updateFilter(QString filter, bool force);
+ void goToPacket(int packet_num);
+
+private:
+ void removeStreamControls();
+ void resetStream(void);
+ void updateWidgets(bool follow_in_progress);
+ void updateWidgets() { updateWidgets(false); } // Needed for WiresharkDialog?
+ frs_return_t
+ showBuffer(char *buffer, size_t nchars, gboolean is_from_server,
+ guint32 packet_num, nstime_t abs_ts, guint32 *global_pos);
+
+ frs_return_t readStream();
+ frs_return_t readFollowStream();
+ frs_return_t readSslStream();
+
+ void followStream();
+ void addText(QString text, gboolean is_from_server, guint32 packet_num, gboolean colorize = true);
+
+ Ui::FollowStreamDialog *ui;
+
+ QPushButton *b_filter_out_;
+ QPushButton *b_find_;
+ QPushButton *b_print_;
+ QPushButton *b_save_;
+ QPushButton *b_back_;
+
+ follow_info_t follow_info_;
+ register_follow_t* follower_;
+ QString data_out_filename_;
+ static const int max_document_length_;
+ bool truncated_;
+ QString previous_filter_;
+ QString filter_out_filter_;
+ QString output_filter_;
+ int client_buffer_count_;
+ int server_buffer_count_;
+ int client_packet_count_;
+ int server_packet_count_;
+ guint32 last_packet_;
+ gboolean last_from_server_;
+ int turns_;
+ QMap<int,guint32> text_pos_to_packet_;
+
+ bool use_regex_find_;
+
+ bool terminating_;
+
+ int previous_sub_stream_num_;
+};
+
+#endif // FOLLOW_STREAM_DIALOG_H