forked from thunderox/triceratops-old-version-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amp_gui.h
executable file
·56 lines (37 loc) · 897 Bytes
/
amp_gui.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <string>
#include <iostream>
#include <gtkmm.h>
// include the URI and global data of this plugin
#include "triceratops.hpp"
// these are our custom widget includes
#include "fader_widget.h"
#include "wave_widget.h"
#include "filter_widget.h"
#include "knob_widget.h"
#include "volume_widget.h"
#include "toggle_widget.h"
#include "spacer_widget.h"
using namespace std;
//--------------------------------------------------------
class amp_gui
{
public:
amp_gui(int,string,string);
virtual ~amp_gui();
void set_controller(LV2UI_Controller,LV2UI_Write_Function);
Gtk::HBox* tab;
volume* gui_volume;
knob* gui_drive;
fader* gui_cutoff;
fader* gui_resonance;
fader* gui_key_follow;
fader* gui_tune;
filter_widget* gui_filter_type;
toggle* gui_legato;
toggle* gui_sync;
toggle* gui_warmth;
toggle* gui_fm;
toggle* gui_panic;
void nix_press();
private:
};