blob: 91054e9ac12dcbbd6202f17a7f86c004cd55044c (
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
|
/** @file
*
* Delegates for editing prefereneces.
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PREF_DELEGATE_H
#define PREF_DELEGATE_H
#include <config.h>
#include <ui/qt/models/pref_models.h>
#include <QStyledItemDelegate>
#include <QModelIndex>
class AdvancedPrefDelegate : public QStyledItemDelegate
{
public:
AdvancedPrefDelegate(QObject *parent = 0);
QWidget *createEditor(QWidget *parent, const QStyleOptionViewItem &option,
const QModelIndex &index) const;
void setEditorData(QWidget *editor, const QModelIndex &index) const;
void setModelData(QWidget *editor, QAbstractItemModel *model,
const QModelIndex &index) const;
private:
PrefsItem* indexToPref(const QModelIndex &index) const;
};
#endif // PREF_DELEGATE_H
|