mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
26 lines
375 B
C
26 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__ */
|