mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
new mini, standalone MIDI beatbox/live looper
This is for experiments with loop sequencing, MIDI region generation and superclock stuff
This commit is contained in:
parent
cec84d242d
commit
70def122de
5 changed files with 617 additions and 0 deletions
43
tools/bb/gui.h
Normal file
43
tools/bb/gui.h
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
#ifndef __bb_gui_h__
|
||||
#define __bb_gui_h__
|
||||
|
||||
#include <gtkmm.h>
|
||||
#include <jack/jack.h>
|
||||
|
||||
class BeatBox;
|
||||
|
||||
class BBGUI {
|
||||
public:
|
||||
BBGUI (int*, char** [], jack_client_t* jack, BeatBox* bb);
|
||||
~BBGUI ();
|
||||
|
||||
void run ();
|
||||
|
||||
private:
|
||||
jack_client_t* jack;
|
||||
BeatBox* bbox;
|
||||
Gtk::Main main;
|
||||
Gtk::Window window;
|
||||
|
||||
Gtk::RadioButtonGroup quantize_group;
|
||||
Gtk::RadioButton quantize_off;
|
||||
Gtk::RadioButton quantize_32nd;
|
||||
Gtk::RadioButton quantize_16th;
|
||||
Gtk::RadioButton quantize_8th;
|
||||
Gtk::RadioButton quantize_quarter;
|
||||
Gtk::RadioButton quantize_half;
|
||||
Gtk::RadioButton quantize_whole;
|
||||
|
||||
Gtk::ToggleButton play_button;
|
||||
Gtk::Button clear_button;
|
||||
|
||||
Gtk::VBox global_vbox;
|
||||
Gtk::VBox quantize_button_box;
|
||||
Gtk::HBox misc_button_box;
|
||||
|
||||
void set_quantize (int divisor);
|
||||
void toggle_play ();
|
||||
void clear ();
|
||||
};
|
||||
|
||||
#endif /* __bb_gui_h__ */
|
||||
Loading…
Add table
Add a link
Reference in a new issue