summaryrefslogtreecommitdiffstats
path: root/ui/qt/filter_action.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/filter_action.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/filter_action.h')
-rw-r--r--ui/qt/filter_action.h97
1 files changed, 97 insertions, 0 deletions
diff --git a/ui/qt/filter_action.h b/ui/qt/filter_action.h
new file mode 100644
index 0000000..82ff29c
--- /dev/null
+++ b/ui/qt/filter_action.h
@@ -0,0 +1,97 @@
+/** @file
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+/* Derived from gtk/filter_utils.h */
+
+#ifndef FILTER_ACTION_H
+#define FILTER_ACTION_H
+
+#include <wsutil/utf8_entities.h>
+
+#include <QAction>
+#include <QActionGroup>
+
+class FilterAction : public QAction
+{
+ Q_OBJECT
+public:
+ /* Filter actions */
+ enum Action {
+ ActionApply,
+ ActionColorize,
+ ActionCopy,
+ ActionFind,
+ ActionPrepare,
+ ActionWebLookup
+ };
+ Q_ENUM(Action)
+
+ /* Action type - says what to do with the filter */
+ enum ActionType {
+ ActionTypePlain,
+ ActionTypeNot,
+ ActionTypeAnd,
+ ActionTypeOr,
+ ActionTypeAndNot,
+ ActionTypeOrNot
+ };
+ Q_ENUM(ActionType)
+
+ /* Action direction */
+ enum ActionDirection {
+ ActionDirectionAToFromB,
+ ActionDirectionAToB,
+ ActionDirectionAFromB,
+ ActionDirectionAToFromAny,
+ ActionDirectionAToAny,
+ ActionDirectionAFromAny,
+ ActionDirectionAnyToFromB,
+ ActionDirectionAnyToB,
+ ActionDirectionAnyFromB
+ };
+
+ explicit FilterAction(QObject *parent, Action action, ActionType type, QString actionName);
+ explicit FilterAction(QObject *parent, Action action, ActionType type, ActionDirection direction);
+ explicit FilterAction(QObject *parent, Action action, ActionType type);
+ explicit FilterAction(QObject *parent, Action action);
+
+ Action action() { return action_; }
+ static const QList<Action> actions();
+ static const QString actionName(Action action);
+
+ ActionType actionType() { return type_; }
+ static const QList<ActionType> actionTypes(Action filter_action = ActionApply);
+ static const QString actionTypeName(ActionType type);
+
+ ActionDirection actionDirection() { return direction_; }
+ static const QList<ActionDirection> actionDirections();
+ static const QString actionDirectionName(ActionDirection direction);
+
+ static QActionGroup * createFilterGroup(QString filter, bool prepare, bool enabled, QWidget * parent);
+ static QMenu * createFilterMenu(FilterAction::Action act, QString filter, bool enabled, QWidget * parent);
+ static QAction * copyFilterAction(QString filter, QWidget *par);
+
+signals:
+
+public slots:
+
+private:
+ Action action_;
+ ActionType type_;
+ ActionDirection direction_;
+
+ QString actionName_;
+
+private slots:
+ void groupTriggered(QAction *);
+ void copyActionTriggered();
+
+};
+
+#endif // FILTER_ACTION_H