90 lines
2.3 KiB
C++
90 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2023 Holger Dehnhardt <holger@dehnhardt.org>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#ifndef __ardour_console1_gui_h__
|
|
#define __ardour_console1_gui_h__
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include <gtkmm/box.h>
|
|
#include <gtkmm/combobox.h>
|
|
#include <gtkmm/checkbutton.h>
|
|
#include <gtkmm/image.h>
|
|
#include <gtkmm/table.h>
|
|
#include <gtkmm/treestore.h>
|
|
#include <gtkmm/spinbutton.h>
|
|
#include <gtkmm/notebook.h>
|
|
|
|
namespace Gtk {
|
|
class CellRendererCombo;
|
|
class ListStore;
|
|
}
|
|
|
|
#include "ardour/mode.h"
|
|
|
|
#include "console1.h"
|
|
|
|
namespace ArdourSurface {
|
|
|
|
class C1GUI : public Gtk::VBox
|
|
{
|
|
public:
|
|
C1GUI (Console1&);
|
|
~C1GUI ();
|
|
|
|
private:
|
|
Console1& c1;
|
|
PBD::ScopedConnectionList lcxl_connections;
|
|
Gtk::VBox hpacker;
|
|
Gtk::Table table;
|
|
Gtk::ComboBox input_combo;
|
|
Gtk::ComboBox output_combo;
|
|
Gtk::Image image;
|
|
Gtk::CheckButton swap_solo_mute_cb;
|
|
Gtk::CheckButton create_plugin_stubs_btn;
|
|
|
|
void update_port_combos ();
|
|
PBD::ScopedConnection connection_change_connection;
|
|
void connection_handler ();
|
|
PBD::ScopedConnectionList _port_connections;
|
|
|
|
struct MidiPortColumns : public Gtk::TreeModel::ColumnRecord {
|
|
MidiPortColumns() {
|
|
add (short_name);
|
|
add (full_name);
|
|
}
|
|
Gtk::TreeModelColumn<std::string> short_name;
|
|
Gtk::TreeModelColumn<std::string> full_name;
|
|
};
|
|
|
|
MidiPortColumns midi_port_columns;
|
|
bool ignore_active_change;
|
|
|
|
Glib::RefPtr<Gtk::ListStore> build_midi_port_list (std::vector<std::string> const & ports, bool for_input);
|
|
void active_port_changed (Gtk::ComboBox*,bool for_input);
|
|
|
|
void set_swap_solo_mute ();
|
|
void set_create_mapping_stubs ();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* __ardour_console1_gui_h__ */
|