Remove redundant call (there's no session, nothing to save)
[ardour.git] / gtk2_ardour / patch_change_dialog.h
1 /*
2     Copyright (C) 2010 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
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
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #include <gtkmm/spinbutton.h>
22 #include <gtkmm/comboboxtext.h>
23
24 #include "evoral/PatchChange.hpp"
25 #include "ardour_dialog.h"
26 #include "audio_clock.h"
27
28 namespace ARDOUR {
29         class BeatsSamplesConverter;
30         class Session;
31         class InstrumentInfo;
32 }
33
34 namespace MIDI {
35         namespace Name {
36                 class PatchBank;
37         }
38 }
39
40 class PatchChangeDialog : public ArdourDialog
41 {
42 public:
43         PatchChangeDialog (
44                 const ARDOUR::BeatsSamplesConverter *,
45                 ARDOUR::Session *,
46                 Evoral::PatchChange<Temporal::Beats> const &,
47                 ARDOUR::InstrumentInfo&,
48                 const Gtk::BuiltinStockID &,
49                 bool allow_delete = false,
50                 bool modal = true
51                 );
52
53         Evoral::PatchChange<Temporal::Beats> patch () const;
54
55 protected:
56         void on_response (int);
57
58 private:
59         void fill_bank_combo ();
60         void set_active_bank_combo ();
61         void fill_patch_combo ();
62         void set_active_patch_combo ();
63         void bank_combo_changed ();
64         void patch_combo_changed ();
65         void channel_changed ();
66         void bank_changed ();
67         void program_changed ();
68
69         int get_14bit_bank () const;
70
71         const ARDOUR::BeatsSamplesConverter* _time_converter;
72         ARDOUR::InstrumentInfo& _info;
73         AudioClock _time;
74         Gtk::SpinButton _channel;
75         Gtk::SpinButton _program;
76         Gtk::SpinButton _bank_msb;
77         Gtk::SpinButton _bank_lsb;
78         Gtk::ComboBoxText _bank_combo;
79         Gtk::ComboBoxText _patch_combo;
80
81         boost::shared_ptr<MIDI::Name::PatchBank> _current_patch_bank;
82         bool _ignore_signals;
83         bool _keep_open;
84
85         void instrument_info_changed ();
86         PBD::ScopedConnection _info_changed_connection;
87 };