From 05bcdd1d4c583c68ed977164913ff47e94df7adb Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 27 Jun 2007 20:23:48 +0000 Subject: Renamed Insert to Processor and Redirect to IOProcessor. git-svn-id: svn://localhost/ardour2/trunk@2071 d708f5d6-7413-0410-9779-e7cbd77b26cf --- ardour.rc.in | 2 +- gtk2_ardour/SConscript | 8 +- gtk2_ardour/ardour_ui_dependents.cc | 2 +- gtk2_ardour/au_pluginui.cc | 4 +- gtk2_ardour/au_pluginui.h | 4 +- gtk2_ardour/audio_time_axis.cc | 6 +- gtk2_ardour/audio_time_axis.h | 4 +- gtk2_ardour/editor_canvas_events.cc | 8 +- gtk2_ardour/editor_items.h | 2 +- gtk2_ardour/editor_mouse.cc | 14 +- gtk2_ardour/io_selector.h | 2 +- gtk2_ardour/ladspa_pluginui.cc | 14 +- gtk2_ardour/midi_time_axis.cc | 10 +- gtk2_ardour/midi_time_axis.h | 5 +- gtk2_ardour/mixer_strip.cc | 32 +- gtk2_ardour/mixer_strip.h | 14 +- gtk2_ardour/mixer_ui.h | 2 +- gtk2_ardour/pan_automation_time_axis.h | 2 +- gtk2_ardour/plugin_automation_line.cc | 90 ++ gtk2_ardour/plugin_automation_line.h | 56 + gtk2_ardour/plugin_ui.h | 4 +- gtk2_ardour/processor_automation_time_axis.cc | 174 +++ gtk2_ardour/processor_automation_time_axis.h | 65 ++ gtk2_ardour/processor_box.cc | 1440 +++++++++++++++++++++++++ gtk2_ardour/processor_box.h | 229 ++++ gtk2_ardour/processor_selection.h | 32 + gtk2_ardour/redirect_automation_line.cc | 95 -- gtk2_ardour/redirect_automation_line.h | 57 - gtk2_ardour/redirect_automation_time_axis.cc | 173 --- gtk2_ardour/redirect_automation_time_axis.h | 65 -- gtk2_ardour/redirect_box.cc | 1440 ------------------------- gtk2_ardour/redirect_box.h | 230 ---- gtk2_ardour/redirect_selection.h | 32 - gtk2_ardour/route_params_ui.cc | 72 +- gtk2_ardour/route_params_ui.h | 30 +- gtk2_ardour/route_processor_selection.cc | 176 +++ gtk2_ardour/route_processor_selection.h | 63 ++ gtk2_ardour/route_redirect_selection.cc | 176 --- gtk2_ardour/route_redirect_selection.h | 63 -- gtk2_ardour/route_time_axis.cc | 144 ++- gtk2_ardour/route_time_axis.h | 48 +- gtk2_ardour/route_ui.h | 2 +- gtk2_ardour/selection.cc | 48 +- gtk2_ardour/selection.h | 18 +- gtk2_ardour/send_ui.h | 2 +- gtk2_ardour/time_axis_view.cc | 2 +- gtk2_ardour/visual_time_axis.cc | 2 +- gtk2_ardour/vst_pluginui.cc | 2 +- libs/ardour/SConscript | 4 +- libs/ardour/ardour/automation_event.h | 2 +- libs/ardour/ardour/canvas_vars.h | 2 +- libs/ardour/ardour/insert.h | 113 -- libs/ardour/ardour/io_processor.h | 85 ++ libs/ardour/ardour/meter.h | 6 +- libs/ardour/ardour/plugin_insert.h | 4 +- libs/ardour/ardour/port_insert.h | 6 +- libs/ardour/ardour/processor.h | 113 ++ libs/ardour/ardour/redirect.h | 85 -- libs/ardour/ardour/route.h | 114 +- libs/ardour/ardour/send.h | 4 +- libs/ardour/ardour/session.h | 8 +- libs/ardour/ardour/track.h | 29 +- libs/ardour/audio_track.cc | 80 +- libs/ardour/automatable.cc | 7 +- libs/ardour/automation_event.cc | 2 - libs/ardour/insert.cc | 261 ----- libs/ardour/io_processor.cc | 107 ++ libs/ardour/meter.cc | 2 +- libs/ardour/midi_track.cc | 34 +- libs/ardour/plugin_insert.cc | 20 +- libs/ardour/port_insert.cc | 22 +- libs/ardour/processor.cc | 255 +++++ libs/ardour/redirect.cc | 107 -- libs/ardour/route.cc | 493 ++++----- libs/ardour/send.cc | 20 +- libs/ardour/session.cc | 24 +- libs/ardour/session_state.cc | 6 +- libs/ardour/session_transport.cc | 2 +- libs/ardour/track.cc | 8 +- 79 files changed, 3584 insertions(+), 3606 deletions(-) create mode 100644 gtk2_ardour/plugin_automation_line.cc create mode 100644 gtk2_ardour/plugin_automation_line.h create mode 100644 gtk2_ardour/processor_automation_time_axis.cc create mode 100644 gtk2_ardour/processor_automation_time_axis.h create mode 100644 gtk2_ardour/processor_box.cc create mode 100644 gtk2_ardour/processor_box.h create mode 100644 gtk2_ardour/processor_selection.h delete mode 100644 gtk2_ardour/redirect_automation_line.cc delete mode 100644 gtk2_ardour/redirect_automation_line.h delete mode 100644 gtk2_ardour/redirect_automation_time_axis.cc delete mode 100644 gtk2_ardour/redirect_automation_time_axis.h delete mode 100644 gtk2_ardour/redirect_box.cc delete mode 100644 gtk2_ardour/redirect_box.h delete mode 100644 gtk2_ardour/redirect_selection.h create mode 100644 gtk2_ardour/route_processor_selection.cc create mode 100644 gtk2_ardour/route_processor_selection.h delete mode 100644 gtk2_ardour/route_redirect_selection.cc delete mode 100644 gtk2_ardour/route_redirect_selection.h delete mode 100644 libs/ardour/ardour/insert.h create mode 100644 libs/ardour/ardour/io_processor.h create mode 100644 libs/ardour/ardour/processor.h delete mode 100644 libs/ardour/ardour/redirect.h delete mode 100644 libs/ardour/insert.cc create mode 100644 libs/ardour/io_processor.cc create mode 100644 libs/ardour/processor.cc delete mode 100644 libs/ardour/redirect.cc diff --git a/ardour.rc.in b/ardour.rc.in index 662fdeed40..ecda2ed0d0 100644 --- a/ardour.rc.in +++ b/ardour.rc.in @@ -51,7 +51,7 @@