mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
27 lines
375 B
C
27 lines
375 B
C
|
|
#ifndef __ardour_gtk_enums_h__
|
||
|
|
#define __ardour_gtk_enums_h__
|
||
|
|
|
||
|
|
#include <ardour/types.h>
|
||
|
|
|
||
|
|
enum WaveformShape {
|
||
|
|
Traditional,
|
||
|
|
Rectified
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
enum Width {
|
||
|
|
Wide,
|
||
|
|
Narrow,
|
||
|
|
};
|
||
|
|
|
||
|
|
#include <gtk-canvas/gtk-canvas.h>
|
||
|
|
|
||
|
|
struct SelectionRect {
|
||
|
|
GtkCanvasItem *rect;
|
||
|
|
GtkCanvasItem *end_trim;
|
||
|
|
GtkCanvasItem *start_trim;
|
||
|
|
uint32_t id;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif /* __ardour_gtk_enums_h__ */
|