summaryrefslogtreecommitdiffstats
path: root/ui/qt/utils/profile_switcher.h
blob: 57dfd25591d9644a06d5649ddd2d8058fa4c9849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @file
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#pragma once

#include <config.h>

#include "capture_event.h"
#include "cfile.h"

#include <QObject>
#include <QVector>

struct profile_switch_filter {
    QString name;
    dfilter_t *dfcode;
};

class PacketListModel;

class ProfileSwitcher : public QObject
{
    Q_OBJECT
public:
    explicit ProfileSwitcher(QObject *parent = nullptr);

public slots:
    void captureEventHandler(CaptureEvent ev);
    void checkPacket(capture_file *cap_file, frame_data *fdata, qsizetype row);

private:
    PacketListModel *packet_list_model_;
    QVector<struct profile_switch_filter> profile_filters_;
    bool capture_file_changed_;
    bool profile_changed_;
    QString previous_cap_file_;

    void clearProfileFilters();

private slots:
    void disableSwitching();
};