Remove unused code.
[ardour.git] / gtk2_ardour / midi_tracer.h
1 #ifndef __ardour_gtk_midi_tracer_h__
2 #define __ardour_gtk_midi_tracer_h__
3
4 #include <gtkmm/textview.h>
5 #include <gtkmm/scrolledwindow.h>
6 #include <gtkmm/togglebutton.h>
7 #include <gtkmm/adjustment.h>
8 #include <gtkmm/spinbutton.h>
9 #include <gtkmm/label.h>
10 #include <gtkmm/comboboxtext.h>
11 #include <gtkmm/box.h>
12
13 #include "pbd/signals.h"
14 #include "pbd/ringbuffer.h"
15 #include "pbd/pool.h"
16 #include "midi++/types.h"
17 #include "ardour_window.h"
18
19 namespace MIDI {
20         class Parser;
21 }
22
23 class MidiTracer : public ArdourWindow
24 {
25   public:
26         MidiTracer ();
27         ~MidiTracer();
28
29   private:
30         MIDI::Parser* parser;
31         Gtk::TextView text;
32         Gtk::ScrolledWindow scroller;
33         Gtk::Adjustment line_count_adjustment;
34         Gtk::SpinButton line_count_spinner;
35         Gtk::Label line_count_label;
36         Gtk::HBox line_count_box;
37
38         bool autoscroll;
39         bool show_hex;
40         bool collect;
41
42         /** Incremented when an update is requested, decremented when one is handled; hence
43          *  equal to 0 when an update is not queued.  May temporarily be negative if a
44          *  update is handled before it was noted that it had just been queued.
45          */
46         volatile gint _update_queued;
47
48         RingBuffer<char *> fifo;
49         Pool buffer_pool;
50         static const size_t buffer_size = 256;
51
52         void tracer (MIDI::Parser&, MIDI::byte*, size_t);
53         void update ();
54
55         Gtk::CheckButton autoscroll_button;
56         Gtk::CheckButton base_button;
57         Gtk::CheckButton collect_button;
58         Gtk::ComboBoxText _port_combo;
59
60         void base_toggle ();
61         void autoscroll_toggle ();
62         void collect_toggle ();
63
64         void port_changed ();
65         void ports_changed ();
66         void disconnect ();
67         PBD::ScopedConnection _parser_connection;
68         PBD::ScopedConnection _manager_connection;
69 };
70
71 #endif /* __ardour_gtk_midi_tracer_h__ */