various fixes to MidiRegionView selection handling, key handling, drawing of ghost...
[ardour2.git] / gtk2_ardour / midi_channel_dialog.cc
blobf827037817c84fa89b47356790a4159149c1837e
1 /*
2 Copyright (C) 2011 Paul Davis
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 #include <gtkmm/stock.h>
21 #include "midi_channel_dialog.h"
23 #include "i18n.h"
25 using namespace Gtk;
27 MidiChannelDialog::MidiChannelDialog (uint8_t active_channel)
28 : ArdourDialog (X_("MIDI Channel Chooser"), true)
29 , selector (active_channel)
31 selector.show_all ();
32 get_vbox()->pack_start (selector);
33 add_button (Stock::CANCEL, RESPONSE_CANCEL);
34 add_button (Stock::OK, RESPONSE_OK);
37 uint8_t
38 MidiChannelDialog::active_channel () const
40 return selector.get_active_channel();