aboutsummaryrefslogtreecommitdiffstats
path: root/ui/qt/manager/wireshark_preference.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2017-12-29 11:23:07 -0500
committerRoland Knall <rknall@gmail.com>2018-01-05 11:13:21 +0000
commit1a07d97fd70d1d0f2f22ccf41d09a1a5e0050666 (patch)
treef8fe54f0e9bb0b9fdcc3656e836c8c2cb48d10f7 /ui/qt/manager/wireshark_preference.h
parent1e16be7556eddc913fb1d5410a22f95a77cb37ff (diff)
Qt: Add manager for preference dialog
Abstract out the different types of preferences into a visitor and factory pattern to handle the preference dialog. Change-Id: Ia611ec192dcc1ad638a997182cec1ab5bdb7859c Reviewed-on: https://code.wireshark.org/review/25142 Petri-Dish: Roland Knall <rknall@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Roland Knall <rknall@gmail.com>
Diffstat (limited to 'ui/qt/manager/wireshark_preference.h')
-rw-r--r--ui/qt/manager/wireshark_preference.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/ui/qt/manager/wireshark_preference.h b/ui/qt/manager/wireshark_preference.h
new file mode 100644
index 0000000000..d8f124190d
--- /dev/null
+++ b/ui/qt/manager/wireshark_preference.h
@@ -0,0 +1,39 @@
+/* wireshark_preference.h
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0+
+ */
+
+#ifndef WIRESHARK_PREFERENCE_H
+#define WIRESHARK_PREFERENCE_H
+
+#include <ui/qt/models/pref_models.h>
+
+#include <QStyleOptionViewItem>
+#include <QModelIndex>
+#include <QWidget>
+
+class WiresharkPreference : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Q_INVOKABLE WiresharkPreference(QObject * parent = Q_NULLPTR);
+
+ virtual QWidget * editor(QWidget *parent, const QStyleOptionViewItem &option, const QModelIndex &index);
+ virtual void setData(QWidget *editor, const QModelIndex &index);
+ virtual void setModelData(QWidget *editor, QAbstractItemModel *model, const QModelIndex &index);
+
+ void setPrefsItem(PrefsItem *);
+
+protected:
+ PrefsItem * prefsItem() const;
+
+private:
+ PrefsItem * _prefsItem;
+
+};
+
+#endif // WIRESHARK_PREFERENCE_H