Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
welcome_page_preferences_frame.h
Go to the documentation of this file.
1
10#ifndef WELCOME_PAGE_PREFERENCES_FRAME_H
11#define WELCOME_PAGE_PREFERENCES_FRAME_H
12
13#include <QFrame>
14#include <QAbstractButton>
15
16namespace Ui {
18}
19
20class WelcomePagePreferencesFrame : public QFrame
21{
22 Q_OBJECT
23
24public:
25 explicit WelcomePagePreferencesFrame(QWidget *parent = 0);
27
28 void unstash();
29
30private:
31 Ui::WelcomePagePreferencesFrame *ui;
32
33 bool stashed_learn_visible_;
34 bool stashed_tips_visible_;
35 bool stashed_tips_events_;
36 bool stashed_tips_sponsorship_;
37 bool stashed_tips_tips_;
38 unsigned stashed_tips_interval_;
39
40 void updateTipsSubCheckboxes();
41
42private slots:
43 void learnVisibleToggled(bool checked);
44 void tipsVisibleToggled(bool checked);
45 void tipsEventsToggled(bool checked);
46 void tipsSponsorshipToggled(bool checked);
47 void tipsTipsToggled(bool checked);
48 void tipsIntervalValueChanged(int value);
49 void restoreButtonBoxClicked(QAbstractButton *button);
50};
51
52#endif // WELCOME_PAGE_PREFERENCES_FRAME_H
Definition welcome_page_preferences_frame.h:21