Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
stratoshark_follow_stream_dialog.h
Go to the documentation of this file.
1
9
10#ifndef STRATOSHARK_FOLLOW_STREAM_DIALOG_H
11#define STRATOSHARK_FOLLOW_STREAM_DIALOG_H
12
13#include <config.h>
14
16
17namespace Ui {
18class StratosharkFollowStreamDialog;
19}
20
25{
26 Q_OBJECT
27
28public:
36 explicit StratosharkFollowStreamDialog(QWidget &parent, CaptureFile &cf, int proto_id, const QString& previous_filter);
37
42
43protected:
49 virtual QString labelHint(int pkt = 0) override;
50
55 virtual QString serverToClientString() const override;
56
61 virtual QString clientToServerString() const override;
62
67 virtual QString bothDirectionsString() const override;
68
69};
70
71#endif // STRATOSHARK_FOLLOW_STREAM_DIALOG_H
Manages a capture file and its associated state and operations.
Definition capture_file.h:27
FollowStreamDialog(QWidget &parent, CaptureFile &cf, int proto_id, const QString &previous_filter)
Constructs a new FollowStreamDialog.
Definition follow_stream_dialog.cpp:65
virtual QString clientToServerString() const override
Retrieves the string representing the client-to-server direction.
Definition stratoshark_follow_stream_dialog.cpp:56
virtual QString bothDirectionsString() const override
Retrieves the string representing both directions combined.
Definition stratoshark_follow_stream_dialog.cpp:65
virtual QString serverToClientString() const override
Retrieves the string representing the server-to-client direction.
Definition stratoshark_follow_stream_dialog.cpp:47
StratosharkFollowStreamDialog(QWidget &parent, CaptureFile &cf, int proto_id, const QString &previous_filter)
Constructs a new StratosharkFollowStreamDialog object.
Definition stratoshark_follow_stream_dialog.cpp:15
virtual QString labelHint(int pkt=0) override
Generates a hint label for the stream.
Definition stratoshark_follow_stream_dialog.cpp:24
virtual ~StratosharkFollowStreamDialog()
Destroys the StratosharkFollowStreamDialog object.
Definition stratoshark_follow_stream_dialog.cpp:20