Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
plot_action.h
1/* @file
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
5 * Copyright 1998 Gerald Combs
6 *
7 * Plots feature by Giovanni Musto <[email protected]>
8 * Copyright (c) 2025-2026
9 *
10 * SPDX-License-Identifier: GPL-2.0-or-later
11 */
12
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 bool filtered_;
33};
34
35#endif // PLOT_ACTION_H
Definition plot_action.h:21
Definition field_information.h:30