AusweisApp2
DeveloperSettingsWidget.h
gehe zur Dokumentation dieser Datei
1 
7 #pragma once
8 
9 #include <QScopedPointer>
10 #include <QWidget>
11 
12 
13 namespace Ui
14 {
15 class DeveloperSettingsWidget;
16 } // namespace Ui
17 
18 namespace governikus
19 {
20 
22  : public QWidget
23 {
24  Q_OBJECT
25 
26  private:
27  QScopedPointer<Ui::DeveloperSettingsWidget> mUi;
28 
29  private Q_SLOTS:
30  void onCheckBoxStateChanged();
31  virtual void showEvent(QShowEvent*) override;
32 
33  protected:
34  virtual void changeEvent(QEvent* pEvent) override;
35 
36  public:
37  DeveloperSettingsWidget(QWidget* pParent = nullptr);
38  virtual ~DeveloperSettingsWidget() override;
39 
40  void apply();
41 
42  public Q_SLOTS:
43  void reset();
44 
45  Q_SIGNALS:
47 };
48 
49 } // namespace governikus
Definition: DeveloperSettingsWidget.h:23
virtual void changeEvent(QEvent *pEvent) override
Definition: DeveloperSettingsWidget.cpp:73
void apply()
Definition: DeveloperSettingsWidget.cpp:54
virtual ~DeveloperSettingsWidget() override
Definition: DeveloperSettingsWidget.cpp:37
DeveloperSettingsWidget(QWidget *pParent=nullptr)
Definition: DeveloperSettingsWidget.cpp:14
void reset()
Definition: DeveloperSettingsWidget.cpp:63
Dialog to display information about the application.
Definition: AboutDialog.h:13
Implementation of ActivationContext for Intent based activation on Android systems.
Definition: ActivationContext.h:15