score-plugin-remotecontrol/RemoteControl/Settings/View.hpp
1 #pragma once
2 #include <score/plugins/settingsdelegate/SettingsDelegateView.hpp>
3 
4 #include <RemoteControl/Settings/Model.hpp>
5 class QCheckBox;
6 
7 namespace score
8 {
9 class FormWidget;
10 }
11 namespace RemoteControl
12 {
13 namespace Settings
14 {
15 
17 {
18  W_OBJECT(View)
19 public:
20  View();
21  void setEnabled(bool);
22 
23  void enabledChanged(bool b) W_SIGNAL(enabledChanged, b);
24 
25 private:
26  QWidget* getWidget() override;
27  score::FormWidget* m_widg{};
28 
29  QCheckBox* m_enabled{};
30 };
31 
32 }
33 }
Definition: score-plugin-remotecontrol/RemoteControl/Settings/View.hpp:17
Definition: FormWidget.hpp:11
Definition: SettingsDelegateView.hpp:18
Base toolkit upon which the software is built.
Definition: Application.cpp:90