extend Triggerbox GUI with a window (for now)

This commit is contained in:
Paul Davis 2021-07-22 10:33:47 -06:00
parent aed9adceee
commit f00e5f3c16
2 changed files with 24 additions and 2 deletions

View file

@ -21,6 +21,8 @@
#include <map>
#include <gtkmm/window.h>
#include "canvas/box.h"
#include "canvas/canvas.h"
#include "canvas/rectangle.h"
@ -65,4 +67,12 @@ class TriggerBoxWidget : public ArdourCanvas::GtkCanvas
TriggerBoxUI* ui;
};
/* XXX probably for testing only */
class TriggerBoxWindow : public Gtk::Window
{
public:
TriggerBoxWindow (ARDOUR::TriggerBox&);
};
#endif /* __ardour_gtk_triggerbox_ui_h__ */