Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
module_preferences_scroll_area.h
Go to the documentation of this file.
1
10#ifndef MODULE_PREFERENCES_SCROLL_AREA_H
11#define MODULE_PREFERENCES_SCROLL_AREA_H
12
13#include <config.h>
14
15#include <epan/prefs.h>
16
17#include <QScrollArea>
18
19namespace Ui {
21}
22
23class ModulePreferencesScrollArea : public QScrollArea
24{
25 Q_OBJECT
26
27public:
28 explicit ModulePreferencesScrollArea(module_t *module, QWidget *parent = 0);
30 const QString name() const;
31
32protected:
33 void showEvent(QShowEvent *);
34 void resizeEvent(QResizeEvent *evt);
35
36private:
37 Ui::ModulePreferencesScrollArea *ui;
38
39 module_t *module_;
40 void updateWidgets();
41
42private slots:
43 void uintLineEditTextEdited(const QString &new_str);
44 void boolCheckBoxToggled(bool checked);
45 void enumRadioButtonToggled(bool checked);
46 void enumComboBoxCurrentIndexChanged(int index);
47 void stringLineEditTextEdited(const QString &new_str);
48 void rangeSyntaxLineEditTextEdited(const QString &new_str);
49 void uatPushButtonClicked();
50 void saveFilenamePushButtonClicked();
51 void openFilenamePushButtonClicked();
52 void dirnamePushButtonClicked();
53 void enumComboBoxCurrentIndexChanged_PROTO_TCP(int index);
54};
55
56#endif // MODULE_PREFERENCES_SCROLL_AREA_H
Definition module_preferences_scroll_area.h:24
Definition prefs-int.h:27