blob: 517606990a77842c330d64bb02b6e5b1d0a6ddcc (
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
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
|
/** @file
*
* Wireshark - Network traffic analyzer
* By Gerald Combs <gerald@wireshark.org>
* Copyright 1998 Gerald Combs
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef PREFERENCES_DIALOG_H
#define PREFERENCES_DIALOG_H
#include <config.h>
#include <epan/prefs.h>
#include <ui/qt/models/pref_models.h>
#include <ui/qt/models/pref_delegate.h>
#include "geometry_state_dialog.h"
class QComboBox;
namespace Ui {
class PreferencesDialog;
}
class PreferencesDialog : public GeometryStateDialog
{
Q_OBJECT
public:
explicit PreferencesDialog(QWidget *parent = 0);
~PreferencesDialog();
/**
* Show the preference pane corresponding to the a preference module name.
* @param module_name A preference module name, e.g. the "name" parameter passed
* to prefs_register_module or a protocol name.
*/
void setPane(const QString module_name);
protected:
void showEvent(QShowEvent *evt);
private:
Ui::PreferencesDialog *pd_ui_;
QHash<QString, QWidget*> prefs_pane_to_item_;
PrefsModel model_;
AdvancedPrefsModel advancedPrefsModel_;
AdvancedPrefDelegate advancedPrefsDelegate_;
ModulePrefsModel modulePrefsModel_;
gboolean saved_capture_no_extcap_;
QTimer *searchLineEditTimer;
QString searchLineEditText;
private slots:
void selectPane(QString pane);
void on_advancedSearchLineEdit_textEdited(const QString &search_re);
void on_showChangedValuesCheckBox_toggled(bool checked);
void on_buttonBox_accepted();
void on_buttonBox_rejected();
void on_buttonBox_helpRequested();
/**
* Update search results from the advancedSearchLineEdit field
*
* This is performed separately from on_advancedSearchLineEdit_textEdited
* to support debouncing.
*/
void updateSearchLineEdit();
};
#endif // PREFERENCES_DIALOG_H
|