2024-11-13 04:06:04 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2021 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
|
* Copyright (C) 2024 Ben Loftis <ben@harrisonconsoles.com>
|
2024-11-19 17:20:57 +01:00
|
|
|
* Copyright (C) 2024 Robin Gareus <robin@gareus.org>
|
2024-11-13 04:06:04 +01: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.,
|
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-11-19 17:20:57 +01:00
|
|
|
#include <vector>
|
2024-11-13 04:06:04 +01:00
|
|
|
|
2025-02-01 15:15:02 +01:00
|
|
|
#include <ytkmm/box.h>
|
|
|
|
|
#include <ytkmm/scrolledwindow.h>
|
2024-11-13 04:06:04 +01:00
|
|
|
|
|
|
|
|
#include "ardour/ardour.h"
|
|
|
|
|
#include "ardour/session_handle.h"
|
|
|
|
|
|
2025-08-14 00:04:19 +02:00
|
|
|
#include "widgets/frame.h"
|
|
|
|
|
|
2024-11-19 17:20:57 +01:00
|
|
|
namespace ARDOUR {
|
|
|
|
|
class Route;
|
|
|
|
|
class Processor;
|
2024-11-13 04:06:04 +01:00
|
|
|
class Session;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-19 17:20:57 +01:00
|
|
|
class GenericPluginUI;
|
2025-08-14 00:04:19 +02:00
|
|
|
class ProcessorBox;
|
2024-11-19 17:20:57 +01:00
|
|
|
|
2024-11-13 04:06:04 +01:00
|
|
|
class RoutePropertiesBox : public Gtk::HBox, public ARDOUR::SessionHandlePtr
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
RoutePropertiesBox ();
|
|
|
|
|
~RoutePropertiesBox ();
|
|
|
|
|
|
2025-08-14 00:04:19 +02:00
|
|
|
void set_session (ARDOUR::Session*);
|
2025-09-01 17:07:45 +02:00
|
|
|
void set_route (std::shared_ptr<ARDOUR::Route>, bool force = false);
|
2024-11-13 04:06:04 +01:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void property_changed (const PBD::PropertyChange& what_changed);
|
2025-08-14 00:04:19 +02:00
|
|
|
void map_frozen ();
|
|
|
|
|
void ui_actions_ready ();
|
|
|
|
|
void update_processor_box_visibility ();
|
2024-11-19 17:20:57 +01:00
|
|
|
void session_going_away ();
|
|
|
|
|
void drop_route ();
|
|
|
|
|
void drop_plugin_uis ();
|
|
|
|
|
void refill_processors ();
|
|
|
|
|
void add_processor_to_display (std::weak_ptr<ARDOUR::Processor> w);
|
2024-11-27 01:07:52 +01:00
|
|
|
void idle_refill_processors ();
|
2025-09-01 17:07:45 +02:00
|
|
|
void surround_master_added_or_removed ();
|
2024-11-27 01:07:52 +01:00
|
|
|
|
|
|
|
|
static int _idle_refill_processors (gpointer);
|
2024-11-19 17:20:57 +01:00
|
|
|
|
|
|
|
|
Gtk::ScrolledWindow _scroller;
|
|
|
|
|
Gtk::HBox _box;
|
|
|
|
|
|
|
|
|
|
std::shared_ptr<ARDOUR::Route> _route;
|
|
|
|
|
std::vector <GenericPluginUI*> _proc_uis;
|
2024-11-13 04:06:04 +01:00
|
|
|
|
2025-08-14 00:04:19 +02:00
|
|
|
ArdourWidgets::Frame _insert_frame;
|
|
|
|
|
ProcessorBox* _insert_box;
|
|
|
|
|
bool _show_insert;
|
|
|
|
|
|
2024-11-27 01:07:52 +01:00
|
|
|
int _idle_refill_processors_id;
|
|
|
|
|
|
2024-11-19 17:20:57 +01:00
|
|
|
PBD::ScopedConnectionList _processor_connections;
|
|
|
|
|
PBD::ScopedConnectionList _route_connections;
|
2025-08-14 00:04:19 +02:00
|
|
|
PBD::ScopedConnectionList _forever_connections;
|
2024-11-13 04:06:04 +01:00
|
|
|
};
|
|
|
|
|
|