Vkeybd: add a mod-wheel
[ardour.git] / gtk2_ardour / note_select_dialog.cc
1 /*
2  * Copyright (C) 2014 David Robillard <d@drobilla.net>
3  * Copyright (C) 2016 Paul Davis <paul@linuxaudiosystems.com>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18  */
19
20 #include <gtkmm/stock.h>
21
22 #include "note_select_dialog.h"
23
24 #include "pbd/i18n.h"
25
26 NoteSelectDialog::NoteSelectDialog ()
27         : ArdourDialog (_("Select Note"))
28         , _note_number(60)
29 {
30         _piano.set_flags(Gtk::CAN_FOCUS);
31         _piano.show();
32         _piano.NoteOn.connect (sigc::mem_fun (*this, &NoteSelectDialog::note_on_event_handler));
33
34         _piano.set_monophonic (true);
35         _piano.sustain_press ();
36
37         get_vbox()->pack_start(_piano);
38
39         add_button(Gtk::Stock::CANCEL, Gtk::RESPONSE_CANCEL);
40         add_button(Gtk::Stock::OK, Gtk::RESPONSE_ACCEPT);
41         set_default_response(Gtk::RESPONSE_ACCEPT);
42 }
43
44 void
45 NoteSelectDialog::note_on_event_handler(int note, int)
46 {
47         _note_number = note;
48 }