Robin Gareus
4716f34c28
Clean up internal API confusion - can_add_channels_proxy () -- checks presence of io - can_add_channel_proxy () -- checks io->can_add_port() UserBundle don't have a PortGroup::_bundle reference that can be used to lookup the IO via io_from_bundle(). While BundleEditorMatrix::can_add_channels_proxy() was overriden to allow adding I/Os, can_add_channel_proxy() later prevented that. This further prevents removing the last port, preventing empty bundles.
141 lines
3.6 KiB
C++
141 lines
3.6 KiB
C++
/*
|
|
* Copyright (C) 2007-2012 Carl Hetherington <carl@carlh.net>
|
|
* Copyright (C) 2008-2010 Paul Davis <paul@linuxaudiosystems.com>
|
|
* Copyright (C) 2009-2014 David Robillard <d@drobilla.net>
|
|
*
|
|
* 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_ui_bundle_manager_h__
|
|
#define __ardour_ui_bundle_manager_h__
|
|
|
|
#include <gtkmm/entry.h>
|
|
#include <gtkmm/liststore.h>
|
|
#include <gtkmm/treeview.h>
|
|
|
|
#include "ardour/user_bundle.h"
|
|
|
|
#include "ardour_dialog.h"
|
|
#include "port_matrix.h"
|
|
|
|
namespace ARDOUR {
|
|
class Session;
|
|
class Bundle;
|
|
}
|
|
|
|
class BundleEditorMatrix : public PortMatrix
|
|
{
|
|
public:
|
|
BundleEditorMatrix (Gtk::Window *, ARDOUR::Session *, boost::shared_ptr<ARDOUR::Bundle>);
|
|
|
|
void set_state (ARDOUR::BundleChannel c[2], bool s);
|
|
PortMatrixNode::State get_state (ARDOUR::BundleChannel c[2]) const;
|
|
|
|
bool can_add_channels (boost::shared_ptr<ARDOUR::Bundle>) const;
|
|
bool can_add_port (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::DataType t) const;
|
|
|
|
void add_channel (boost::shared_ptr<ARDOUR::Bundle>, ARDOUR::DataType);
|
|
bool can_remove_channels (boost::shared_ptr<ARDOUR::Bundle>) const;
|
|
void remove_channel (ARDOUR::BundleChannel);
|
|
bool can_rename_channels (boost::shared_ptr<ARDOUR::Bundle>) const;
|
|
void rename_channel (ARDOUR::BundleChannel);
|
|
void setup_ports (int);
|
|
bool list_is_global (int) const;
|
|
|
|
std::string disassociation_verb () const;
|
|
|
|
private:
|
|
enum {
|
|
OTHER = 0,
|
|
OURS = 1
|
|
};
|
|
|
|
boost::shared_ptr<PortGroup> _port_group;
|
|
boost::shared_ptr<ARDOUR::Bundle> _bundle;
|
|
};
|
|
|
|
class BundleEditor : public ArdourDialog
|
|
{
|
|
public:
|
|
BundleEditor (ARDOUR::Session *, boost::shared_ptr<ARDOUR::UserBundle>);
|
|
|
|
protected:
|
|
void on_map ();
|
|
|
|
private:
|
|
void name_changed ();
|
|
void input_or_output_changed ();
|
|
void on_show ();
|
|
|
|
BundleEditorMatrix _matrix;
|
|
boost::shared_ptr<ARDOUR::UserBundle> _bundle;
|
|
Gtk::Entry _name;
|
|
Gtk::ComboBoxText _input_or_output;
|
|
};
|
|
|
|
class BundleManager : public ArdourDialog
|
|
{
|
|
public:
|
|
BundleManager (ARDOUR::Session *);
|
|
|
|
private:
|
|
|
|
void new_clicked ();
|
|
void edit_clicked ();
|
|
void delete_clicked ();
|
|
void add_bundle (boost::shared_ptr<ARDOUR::Bundle>);
|
|
void bundle_changed (ARDOUR::Bundle::Change, boost::weak_ptr<ARDOUR::UserBundle>);
|
|
void set_button_sensitivity ();
|
|
void row_activated (Gtk::TreeModel::Path const & p, Gtk::TreeViewColumn* c);
|
|
|
|
class ModelColumns : public Gtk::TreeModelColumnRecord
|
|
{
|
|
public:
|
|
ModelColumns () {
|
|
add (name);
|
|
add (bundle);
|
|
}
|
|
|
|
Gtk::TreeModelColumn<std::string> name;
|
|
Gtk::TreeModelColumn<boost::shared_ptr<ARDOUR::UserBundle> > bundle;
|
|
};
|
|
|
|
Gtk::TreeView _tree_view;
|
|
Glib::RefPtr<Gtk::ListStore> _list_model;
|
|
ModelColumns _list_model_columns;
|
|
Gtk::Button edit_button;
|
|
Gtk::Button delete_button;
|
|
PBD::ScopedConnectionList bundle_connections;
|
|
};
|
|
|
|
class NameChannelDialog : public ArdourDialog
|
|
{
|
|
public:
|
|
NameChannelDialog ();
|
|
NameChannelDialog (boost::shared_ptr<ARDOUR::Bundle>, uint32_t);
|
|
|
|
std::string get_name () const;
|
|
|
|
private:
|
|
|
|
void setup ();
|
|
|
|
boost::shared_ptr<ARDOUR::Bundle> _bundle;
|
|
Gtk::Entry _name;
|
|
bool _adding;
|
|
};
|
|
|
|
#endif
|