1 /*
2  * Copyright (C) 2014 Guitarix project MOD project
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  * --------------------------------------------------------------------------
18  */
19 
20 #pragma once
21 
22 #ifndef SRC_HEADERS_GXEFFECTS_H_
23 #define SRC_HEADERS_GXEFFECTS_H_
24 
25 #include <lv2.h>
26 #include <lv2/lv2plug.in/ns/ext/buf-size/buf-size.h>
27 #include <lv2/lv2plug.in/ns/ext/options/options.h>
28 #include <lv2/lv2plug.in/ns/ext/atom/atom.h>
29 #include <lv2/lv2plug.in/ns/ext/log/log.h>
30 #include <lv2/lv2plug.in/ns/ext/urid/urid.h>
31 #include <lv2/lv2plug.in/ns/ext/worker/worker.h>
32 
33 #define GXPLUGIN_URI "http://guitarix.sourceforge.net/plugins/gx_detune_"
34 #define GXPLUGIN_UI_URI "http://guitarix.sourceforge.net/plugins/gx_detune_#gui"
35 
36 
37 typedef enum
38 {
39    EFFECTS_OUTPUT,
40    EFFECTS_INPUT,
41    DETUNE,
42    OCTAVE,
43    COMPENSATE,
44    LATENCY,
45    WET,
46    DRY,
47    LOW,
48    MIDDLELOW,
49    MIDDLETREBLE,
50    TREBLE,
51    LATENCYREPORT,
52    BYPASS,
53 } PortIndex;
54 
55 #endif //SRC_HEADERS_GXEFFECTS_H_
56