Control Surface
main
MIDI Control Surface library for Arduino
Toggle main menu visibility
Main Page
User Manual
Related Pages
Topics
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
u
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
Typedefs
a
b
c
k
m
n
p
t
Enumerations
Enumerator
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
~
Variables
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
i
l
m
p
r
s
t
v
w
Enumerations
Enumerator
a
b
d
f
h
i
l
m
n
o
p
r
s
v
w
Related Symbols
Files
File List
File Members
All
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
Functions
a
b
c
d
e
g
i
l
m
o
p
s
u
v
Variables
c
e
f
h
i
l
m
n
o
p
s
u
v
Typedefs
a
b
c
e
f
i
k
m
n
p
s
t
u
v
Enumerations
Enumerator
Macros
a
b
c
d
e
f
h
i
n
u
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Modules
Pages
Loading...
Searching...
No Matches
src
Selectors
Selectable.hpp
Go to the documentation of this file.
1
#pragma once
2
3
#include <
AH/Error/Error.hpp
>
4
#include <AH/STL/type_traits>
5
#include <
Def/Def.hpp
>
6
#include <stdint.h>
7
8
BEGIN_CS_NAMESPACE
9
10
template
<setting_t N>
// TODO: check bounds here?
11
class
Selectable
{
12
protected
:
13
Selectable
(
setting_t
initialSelection
= 0)
14
:
initialSelection
(
initialSelection
) {}
13
Selectable
(
setting_t
initialSelection
= 0) {
…
}
15
16
public
:
17
virtual
void
select
(
setting_t
setting) = 0;
18
19
static
setting_t
validateSetting
(
setting_t
setting) {
20
static_assert
(std::is_unsigned<setting_t>::value,
21
"Error: setting_t should be an unsigned integer type."
);
22
if
(setting >= N) {
23
ERROR
(F(
"Error: Setting "
)
24
<< setting
25
<< F(
" is not less than the number of settings ("
) << N
26
<<
')'
,
27
0xFFFE);
28
return
N - 1;
29
}
30
return
setting;
31
}
19
static
setting_t
validateSetting
(
setting_t
setting) {
…
}
32
33
setting_t
getInitialSelection
()
const
{
return
initialSelection
; }
34
35
void
setInitialSelection
(
setting_t
initialSelection
) {
36
this->initialSelection =
validateSetting
(
initialSelection
);
37
}
35
void
setInitialSelection
(
setting_t
initialSelection
) {
…
}
38
39
private
:
40
setting_t
initialSelection
;
41
};
11
class
Selectable
{
…
};
42
43
END_CS_NAMESPACE
Def.hpp
setting_t
uint8_t setting_t
The type used for Selectors.
Definition
Def.hpp:53
Error.hpp
ERROR
#define ERROR(msg, errc)
Definition
Error.hpp:19
END_CS_NAMESPACE
#define END_CS_NAMESPACE
Definition
Settings/NamespaceSettings.hpp:14
BEGIN_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
Definition
Settings/NamespaceSettings.hpp:11
Selectable
Definition
Selectable.hpp:11
Selectable::initialSelection
setting_t initialSelection
Definition
Selectable.hpp:40
Selectable::getInitialSelection
setting_t getInitialSelection() const
Definition
Selectable.hpp:33
Selectable::Selectable
Selectable(setting_t initialSelection=0)
Definition
Selectable.hpp:13
Selectable::setInitialSelection
void setInitialSelection(setting_t initialSelection)
Definition
Selectable.hpp:35
Selectable::validateSetting
static setting_t validateSetting(setting_t setting)
Definition
Selectable.hpp:19
Selectable::select
virtual void select(setting_t setting)=0
Generated by
1.10.0