~vcs-imports/triceratops/master

« back to all changes in this revision

Viewing changes to modifier_gui.h

  • Committer: ThunderOx laptop #1
  • Date: 2015-03-02 23:57:36 UTC
  • Revision ID: git-v1:334d2dacae9814fe365d06ffc558e9ea78f032ce
Triceratops V0.3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
 
 
3
#include <string>
 
4
#include <iostream>
 
5
#include <gtkmm.h>
 
6
 
 
7
// include the URI and global data of this plugin
 
8
#include "triceratops.hpp"
 
9
 
 
10
// these are our custom widget includes
 
11
#include "fader_widget.h"
 
12
#include "wave_widget.h"
 
13
#include "filter_widget.h"
 
14
#include "knob_widget.h"
 
15
#include "volume_widget.h"
 
16
#include "toggle_widget.h"
 
17
#include "spacer_widget.h"
 
18
 
 
19
using namespace std;
 
20
 
 
21
//--------------------------------------------------------
 
22
 
 
23
class modifier_gui
 
24
{
 
25
        public:
 
26
 
 
27
        modifier_gui(int,string,string);
 
28
        virtual ~modifier_gui();
 
29
        void set_controller(LV2UI_Controller,LV2UI_Write_Function);
 
30
 
 
31
        Gtk::HBox* tab;
 
32
 
 
33
        fader* gui_modifier_dirt;
 
34
        toggle* gui_modifier_stereo_mode;
 
35
        toggle* gui_modifier_ring;
 
36
        fader* gui_pitch_bend_range;
 
37
        fader* gui_midi_channel;
 
38
 
 
39
        private:
 
40
 
 
41
};
 
42
 
 
43
 
 
44