2010-01-06 16:56:23 -05:00
|
|
|
#ifndef __ardour_gtk_midi_tracer_h__
|
|
|
|
#define __ardour_gtk_midi_tracer_h__
|
|
|
|
|
|
|
|
#include <gtkmm/textview.h>
|
|
|
|
#include <gtkmm/scrolledwindow.h>
|
|
|
|
#include <gtkmm/togglebutton.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/spinbutton.h>
|
|
|
|
#include <gtkmm/label.h>
|
2010-07-06 20:40:58 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
2010-01-06 16:56:23 -05:00
|
|
|
|
|
|
|
#include "pbd/signals.h"
|
2010-01-31 22:33:52 -05:00
|
|
|
#include "pbd/ringbuffer.h"
|
|
|
|
#include "pbd/pool.h"
|
2010-01-06 16:56:23 -05:00
|
|
|
#include "midi++/types.h"
|
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
|
|
namespace MIDI {
|
|
|
|
class Parser;
|
|
|
|
}
|
|
|
|
|
|
|
|
class MidiTracer : public ArdourDialog
|
|
|
|
{
|
|
|
|
public:
|
2010-07-06 20:40:58 -04:00
|
|
|
MidiTracer ();
|
2010-01-06 16:56:23 -05:00
|
|
|
~MidiTracer();
|
|
|
|
|
|
|
|
private:
|
2010-07-06 20:40:58 -04:00
|
|
|
MIDI::Parser* parser;
|
2010-01-06 16:56:23 -05:00
|
|
|
Gtk::TextView text;
|
|
|
|
Gtk::ScrolledWindow scroller;
|
|
|
|
Gtk::Adjustment line_count_adjustment;
|
|
|
|
Gtk::SpinButton line_count_spinner;
|
|
|
|
Gtk::Label line_count_label;
|
|
|
|
Gtk::HBox line_count_box;
|
|
|
|
|
|
|
|
bool autoscroll;
|
|
|
|
bool show_hex;
|
|
|
|
bool collect;
|
2010-06-28 19:07:05 -04:00
|
|
|
|
|
|
|
/** Incremented when an update is requested, decremented when one is handled; hence
|
|
|
|
* equal to 0 when an update is not queued. May temporarily be negative if a
|
|
|
|
* update is handled before it was noted that it had just been queued.
|
|
|
|
*/
|
|
|
|
volatile gint _update_queued;
|
|
|
|
|
2010-01-31 22:33:52 -05:00
|
|
|
RingBuffer<char *> fifo;
|
|
|
|
Pool buffer_pool;
|
|
|
|
static const size_t buffer_size = 256;
|
2010-01-06 16:56:23 -05:00
|
|
|
|
|
|
|
void tracer (MIDI::Parser&, MIDI::byte*, size_t);
|
2010-01-31 22:33:52 -05:00
|
|
|
void update ();
|
2010-01-06 16:56:23 -05:00
|
|
|
|
2010-03-14 21:41:01 -04:00
|
|
|
Gtk::CheckButton autoscroll_button;
|
|
|
|
Gtk::CheckButton base_button;
|
|
|
|
Gtk::CheckButton collect_button;
|
2010-07-06 20:40:58 -04:00
|
|
|
Gtk::ComboBoxText _port_combo;
|
2010-01-06 16:56:23 -05:00
|
|
|
|
|
|
|
void base_toggle ();
|
|
|
|
void autoscroll_toggle ();
|
|
|
|
void collect_toggle ();
|
|
|
|
|
2010-07-06 20:40:58 -04:00
|
|
|
void port_changed ();
|
|
|
|
void ports_changed ();
|
2010-01-06 16:56:23 -05:00
|
|
|
void disconnect ();
|
2010-07-06 20:40:58 -04:00
|
|
|
PBD::ScopedConnection _parser_connection;
|
|
|
|
PBD::ScopedConnection _manager_connection;
|
2010-01-06 16:56:23 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_midi_tracer_h__ */
|