Loading...
Searching...
No Matches
score-plugin-remotecontrol/RemoteControl/Settings/View.hpp
1#pragma once
2#include <score/plugins/settingsdelegate/SettingsDelegateView.hpp>
3
4#include <RemoteControl/Settings/Model.hpp>
5class QCheckBox;
6
7namespace score
8{
9class FormWidget;
10}
11namespace RemoteControl
12{
13namespace Settings
14{
15
17{
18 W_OBJECT(View)
19public:
20 View();
21 void setEnabled(bool);
22
23 void enabledChanged(bool b) W_SIGNAL(enabledChanged, b);
24
25private:
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:97