VKeybd: Pass on primary (Ctrl/Cmd) shortcuts
[ardour.git] / gtk2_ardour / midi_channel_dialog.cc
1 /*
2  * Copyright (C) 2011-2016 Paul Davis <paul@linuxaudiosystems.com>
3  *
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.
8  *
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.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18
19 #include <gtkmm/stock.h>
20
21 #include "midi_channel_dialog.h"
22
23 #include "pbd/i18n.h"
24
25 using namespace Gtk;
26
27 MidiChannelDialog::MidiChannelDialog (uint8_t active_channel)
28         : ArdourDialog (X_("MIDI Channel Chooser"), true)
29         , selector (active_channel)
30 {
31         selector.show_all ();
32         get_vbox()->pack_start (selector);
33         add_button (Stock::CANCEL, RESPONSE_CANCEL);
34         add_button (Stock::OK, RESPONSE_OK);
35 }
36
37 uint8_t
38 MidiChannelDialog::active_channel () const
39 {
40         return selector.get_active_channel();
41 }