mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 12:19:33 +01:00
Renamed Insert to Processor and Redirect to IOProcessor.
git-svn-id: svn://localhost/ardour2/trunk@2071 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
09264537c4
commit
05bcdd1d4c
68 changed files with 2525 additions and 2547 deletions
|
|
@ -43,8 +43,8 @@
|
|||
#include <ardour/types.h>
|
||||
#include <ardour/ardour.h>
|
||||
#include <ardour/io.h>
|
||||
#include <ardour/insert.h>
|
||||
#include <ardour/redirect.h>
|
||||
#include <ardour/processor.h>
|
||||
#include <ardour/io_processor.h>
|
||||
|
||||
#include <pbd/fastlog.h>
|
||||
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
#include "gain_meter.h"
|
||||
#include "panner_ui.h"
|
||||
#include "enums.h"
|
||||
#include "redirect_box.h"
|
||||
#include "processor_box.h"
|
||||
#include "ardour_dialog.h"
|
||||
|
||||
class MotionController;
|
||||
|
|
@ -66,7 +66,7 @@ namespace Gtkmm2ext {
|
|||
namespace ARDOUR {
|
||||
class Route;
|
||||
class Send;
|
||||
class Insert;
|
||||
class Processor;
|
||||
class Session;
|
||||
class PortInsert;
|
||||
class Bundle;
|
||||
|
|
@ -121,8 +121,8 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
|
|||
Gtk::Frame global_frame;
|
||||
Gtk::VBox global_vpacker;
|
||||
|
||||
RedirectBox pre_redirect_box;
|
||||
RedirectBox post_redirect_box;
|
||||
ProcessorBox pre_processor_box;
|
||||
ProcessorBox post_processor_box;
|
||||
GainMeter gpm;
|
||||
PannerUI panners;
|
||||
|
||||
|
|
@ -239,7 +239,7 @@ class MixerStrip : public RouteUI, public Gtk::EventBox
|
|||
void name_changed ();
|
||||
void update_speed_display ();
|
||||
void map_frozen ();
|
||||
void hide_insert_editor (boost::shared_ptr<ARDOUR::Insert> insert);
|
||||
void hide_processor_editor (boost::shared_ptr<ARDOUR::Processor> processor);
|
||||
|
||||
bool ignore_speed_adjustment;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue