wireshark/ui/qt/filter_action.h

95 lines
2.4 KiB
C++

/* filter_action.h
*
* 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, 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_;
private slots:
void groupTriggered(QAction *);
void copyActionTriggered();
};
#endif // FILTER_ACTION_H