score
Home
Classes
Namespaces
Files
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>
5
class
QCheckBox;
6
7
namespace
score
8
{
9
class
FormWidget;
10
}
11
namespace
RemoteControl
12
{
13
namespace
Settings
14
{
15
16
class
View
:
public
score::GlobalSettingsView
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
}
RemoteControl::Settings::View
Definition
score-plugin-remotecontrol/RemoteControl/Settings/View.hpp:17
score::FormWidget
Definition
FormWidget.hpp:11
score::SettingsDelegateView
Definition
SettingsDelegateView.hpp:18
score
Base toolkit upon which the software is built.
Definition
Application.cpp:97