summaryrefslogtreecommitdiffstats
path: root/ui/qt/models/numeric_value_chooser_delegate.h
blob: ceda8746d0fe59a42ad3eb639f1931cbb10cba3c (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
/** @file
 *
 * Delegate to select a numeric value for a treeview entry
 *
 * Wireshark - Network traffic analyzer
 * By Gerald Combs <gerald@wireshark.org>
 * Copyright 1998 Gerald Combs
 *
 * SPDX-License-Identifier: GPL-2.0-or-later
 */

#ifndef NUMERIC_VALUE_CHOOSER_DELEGATE_H_
#define NUMERIC_VALUE_CHOOSER_DELEGATE_H_


#include <QStyledItemDelegate>

class NumericValueChooserDelegate : public QStyledItemDelegate
{
    Q_OBJECT

public:
    NumericValueChooserDelegate(int min = 0, int max = 0, QObject *parent = 0);
    ~NumericValueChooserDelegate();

    void setMinMaxRange(int min, int max);
    void setDefaultValue(int defValue, QVariant defaultReturn);

protected:
    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:

    int _min;
    int _max;
    int _default;
    QVariant _defReturn;

private slots:
    void onValueChanged(int i);
};

#endif /* NUMERIC_VALUE_CHOOSER_DELEGATE_H_ */