time_axis_view now compiles
[ardour.git] / gtk2_ardour / enums.h
1 #ifndef __ardour_gtk_enums_h__
2 #define __ardour_gtk_enums_h__
3
4 #include <ardour/types.h>
5
6 enum WaveformShape {
7         Traditional,
8         Rectified
9 };
10
11
12 enum Width {
13         Wide,
14         Narrow,
15 };
16
17 namespace Gnome {
18         namespace Canvas {
19                 class SimpleRect;
20         }
21 }
22
23 struct SelectionRect {
24     Gnome::Canvas::SimpleRect *rect;
25     Gnome::Canvas::SimpleRect *end_trim;
26     Gnome::Canvas::SimpleRect *start_trim;
27     uint32_t id;
28 };
29
30 #endif /* __ardour_gtk_enums_h__ */