Mercurial > hg > tweakathon2ios
comparison PresetView.h @ 6:92850a2b099c
set up preset slots from init file.
PD synth has metronome, recieves ticks but doesn't do anything with them.
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Fri, 17 Oct 2014 14:50:50 +0100 |
parents | |
children | af71bf84660f |
comparison
equal
deleted
inserted
replaced
5:213df0baed47 | 6:92850a2b099c |
---|---|
1 // | |
2 // PresetView.h | |
3 // riftathon | |
4 // | |
5 // Created by Robert Tubb on 17/10/2014. | |
6 // | |
7 // | |
8 | |
9 #ifndef __riftathon__PresetView__ | |
10 #define __riftathon__PresetView__ | |
11 | |
12 #include <iostream> | |
13 | |
14 #include "presetManager.h" | |
15 #include "UIElement.h" | |
16 | |
17 class PresetIconView : public UIElement { | |
18 string imageFileName; | |
19 | |
20 ofImage image; | |
21 string name; | |
22 | |
23 | |
24 | |
25 void draw(); | |
26 | |
27 | |
28 }; | |
29 | |
30 #endif /* defined(__riftathon__PresetView__) */ |