Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
plot_action.h
Go to the documentation of this file.
1
13#ifndef PLOT_ACTION_H
14#define PLOT_ACTION_H
15
17
18#include <QAction>
19
20class PlotAction : public QAction
21{
22 Q_OBJECT
23public:
24 explicit PlotAction(QObject* parent, const QString& y_field, bool filtered);
25 static QMenu* createMenu(const FieldInformation::HeaderInfo& headerinfo, QWidget* parent);
26
27signals:
28 void openPlotDialog(const QString&, bool);
29
30private:
31 QString y_field_;
32};
33
34#endif // PLOT_ACTION_H
Definition plot_action.h:21
Definition field_information.h:30