summaryrefslogtreecommitdiff
path: root/gtk2_ardour/enums.h
blob: 15ba8743664c398a927a74eb71dc8ce4e97698e9 (plain)
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
#ifndef __ardour_gtk_enums_h__
#define __ardour_gtk_enums_h__

#include <ardour/types.h>

enum WaveformShape {
	Traditional,
	Rectified
};


enum Width {
	Wide,
	Narrow,
};

namespace Gnome {
	namespace Canvas {
		class SimpleRect;
	}
}

struct SelectionRect {
    Gnome::Canvas::SimpleRect *rect;
    Gnome::Canvas::SimpleRect *end_trim;
    Gnome::Canvas::SimpleRect *start_trim;
    uint32_t id;
};

#endif /* __ardour_gtk_enums_h__ */