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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef SUPPORTED_PROTOCOLS_MODEL_H
#define SUPPORTED_PROTOCOLS_MODEL_H
#include <config.h>
#include <ui/qt/models/tree_model_helpers.h>
#include <epan/proto.h>
#include <QSortFilterProxyModel>
class SupportedProtocolsItem : public ModelHelperTreeItem<SupportedProtocolsItem>
{
public:
SupportedProtocolsItem(protocol_t* proto, const char *name, const char* filter, ftenum_t ftype, const char* descr, SupportedProtocolsItem* parent);
virtual ~SupportedProtocolsItem();
protocol_t* protocol() const {return proto_; }
QString name() const { return name_; }
ftenum_t type() const {return ftype_; }
QString filter() const { return filter_; }
QString description() const { return descr_; }
private:
protocol_t* proto_;
QString name_;
QString filter_;
ftenum_t ftype_;
QString descr_;
};
class SupportedProtocolsModel : public QAbstractItemModel
{
Q_OBJECT
public:
explicit SupportedProtocolsModel(QObject * parent = Q_NULLPTR);
virtual ~SupportedProtocolsModel();
enum SupportedProtocolsColumn {
colName = 0,
colFilter,
colType,
colDescription,
colLast
};
int fieldCount() {return field_count_;}
QModelIndex index(int row, int column,
const QModelIndex & = QModelIndex()) const;
QModelIndex parent(const QModelIndex &) const;
QVariant data(const QModelIndex &index, int role) const;
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
void populate();
private:
SupportedProtocolsItem* root_;
int field_count_;
};
class SupportedProtocolsProxyModel : public QSortFilterProxyModel
{
public:
explicit SupportedProtocolsProxyModel(QObject * parent = Q_NULLPTR);
virtual bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const;
void setFilter(const QString& filter);
protected:
bool lessThan(const QModelIndex &source_left, const QModelIndex &source_right) const;
bool filterAcceptItem(SupportedProtocolsItem& item) const;
private:
QString filter_;
};
#endif // SUPPORTED_PROTOCOLS_MODEL_H
|