2007-04-14 14:39:01 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2000-2007 Paul Davis
|
2007-04-14 14:39:01 -04:00
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2005-09-25 14:42:24 -04:00
|
|
|
#ifndef __gtk_ardour_add_route_dialog_h__
|
|
|
|
#define __gtk_ardour_add_route_dialog_h__
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/entry.h>
|
2005-11-27 16:17:41 -05:00
|
|
|
#include <gtkmm/dialog.h>
|
2006-04-19 16:42:17 -04:00
|
|
|
#include <gtkmm/frame.h>
|
2005-09-25 16:33:00 -04:00
|
|
|
#include <gtkmm/radiobutton.h>
|
|
|
|
#include <gtkmm/adjustment.h>
|
|
|
|
#include <gtkmm/spinbutton.h>
|
|
|
|
#include <gtkmm/button.h>
|
2012-02-01 23:12:23 -05:00
|
|
|
#include <gtkmm/combobox.h>
|
2005-09-26 10:33:53 -04:00
|
|
|
#include <gtkmm/comboboxtext.h>
|
2009-06-28 20:39:44 -04:00
|
|
|
#include <gtkmm/treemodel.h>
|
2012-02-01 23:12:23 -05:00
|
|
|
#include <gtkmm/liststore.h>
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2012-02-01 23:12:23 -05:00
|
|
|
#include "ardour/plugin.h"
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2009-03-02 13:08:15 -05:00
|
|
|
#include "ardour/template_utils.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2009-06-28 20:39:44 -04:00
|
|
|
#include "ardour_dialog.h"
|
|
|
|
|
|
|
|
class Editor;
|
|
|
|
|
|
|
|
class AddRouteDialog : public ArdourDialog
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
|
|
|
public:
|
2013-05-04 22:02:05 -04:00
|
|
|
AddRouteDialog ();
|
2005-09-25 14:42:24 -04:00
|
|
|
~AddRouteDialog ();
|
|
|
|
|
2012-06-21 21:45:16 -04:00
|
|
|
enum TypeWanted {
|
|
|
|
AudioTrack,
|
|
|
|
MidiTrack,
|
|
|
|
MixedTrack,
|
|
|
|
AudioBus
|
|
|
|
};
|
|
|
|
TypeWanted type_wanted() const;
|
|
|
|
|
|
|
|
ARDOUR::ChanCount channels ();
|
2005-09-25 14:42:24 -04:00
|
|
|
int count ();
|
2009-03-02 13:08:15 -05:00
|
|
|
|
2013-04-01 20:45:57 -04:00
|
|
|
std::string name_template () const;
|
|
|
|
bool name_template_is_default () const;
|
2009-03-02 13:08:15 -05:00
|
|
|
std::string track_template ();
|
2012-02-01 23:12:23 -05:00
|
|
|
ARDOUR::PluginInfoPtr requested_instrument ();
|
|
|
|
|
2006-01-19 00:01:43 -05:00
|
|
|
ARDOUR::TrackMode mode();
|
2009-06-21 15:59:56 -04:00
|
|
|
ARDOUR::RouteGroup* route_group ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
Gtk::Entry name_template_entry;
|
2009-06-28 20:39:44 -04:00
|
|
|
Gtk::ComboBoxText track_bus_combo;
|
2005-09-25 14:42:24 -04:00
|
|
|
Gtk::Adjustment routes_adjustment;
|
|
|
|
Gtk::SpinButton routes_spinner;
|
2005-09-26 10:33:53 -04:00
|
|
|
Gtk::ComboBoxText channel_combo;
|
2012-02-01 23:12:23 -05:00
|
|
|
Gtk::Label configuration_label;
|
2009-11-18 23:25:46 -05:00
|
|
|
Gtk::Label mode_label;
|
2012-02-01 23:12:23 -05:00
|
|
|
Gtk::Label instrument_label;
|
2009-11-18 23:25:46 -05:00
|
|
|
Gtk::ComboBoxText mode_combo;
|
2009-06-21 15:59:56 -04:00
|
|
|
Gtk::ComboBoxText route_group_combo;
|
2012-02-01 23:12:23 -05:00
|
|
|
Gtk::ComboBox instrument_combo;
|
2006-01-19 00:01:43 -05:00
|
|
|
|
2009-04-21 21:35:31 -04:00
|
|
|
std::vector<ARDOUR::TemplateInfo> route_templates;
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2006-01-19 00:01:43 -05:00
|
|
|
void track_type_chosen ();
|
2009-06-11 11:06:00 -04:00
|
|
|
void refill_channel_setups ();
|
2009-06-22 17:05:14 -04:00
|
|
|
void refill_route_groups ();
|
2011-11-04 11:47:41 -04:00
|
|
|
void refill_track_modes ();
|
2009-06-21 15:59:56 -04:00
|
|
|
void add_route_group (ARDOUR::RouteGroup *);
|
2009-06-28 20:39:44 -04:00
|
|
|
void group_changed ();
|
2011-11-04 11:47:41 -04:00
|
|
|
void channel_combo_changed ();
|
2009-06-28 20:39:44 -04:00
|
|
|
bool channel_separator (const Glib::RefPtr<Gtk::TreeModel> &m, const Gtk::TreeModel::iterator &i);
|
|
|
|
bool route_separator (const Glib::RefPtr<Gtk::TreeModel> &m, const Gtk::TreeModel::iterator &i);
|
2011-02-26 20:59:04 -05:00
|
|
|
void maybe_update_name_template_entry ();
|
2009-03-02 13:08:15 -05:00
|
|
|
|
|
|
|
void reset_template_option_visibility ();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2009-03-02 13:08:15 -05:00
|
|
|
void on_show ();
|
2009-06-11 11:06:00 -04:00
|
|
|
|
|
|
|
struct ChannelSetup {
|
|
|
|
std::string name;
|
|
|
|
std::string template_path;
|
|
|
|
uint32_t channels;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::vector<ChannelSetup> ChannelSetups;
|
|
|
|
ChannelSetups channel_setups;
|
|
|
|
|
2009-11-18 23:25:46 -05:00
|
|
|
static std::vector<std::string> channel_combo_strings;
|
|
|
|
static std::vector<std::string> bus_mode_strings;
|
2012-02-01 23:12:23 -05:00
|
|
|
|
|
|
|
struct InstrumentListColumns : public Gtk::TreeModel::ColumnRecord {
|
|
|
|
InstrumentListColumns () {
|
|
|
|
add (name);
|
|
|
|
add (info_ptr);
|
|
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
|
|
Gtk::TreeModelColumn<ARDOUR::PluginInfoPtr> info_ptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
Glib::RefPtr<Gtk::ListStore> instrument_list;
|
|
|
|
InstrumentListColumns instrument_list_columns;
|
|
|
|
|
|
|
|
void build_instrument_list ();
|
2014-01-03 14:24:23 -05:00
|
|
|
uint32_t reasonable_synth_id;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __gtk_ardour_add_route_dialog_h__ */
|