mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-20 21:56:30 +01:00
83 lines
2.3 KiB
C++
83 lines
2.3 KiB
C++
/*
|
|
Copyright (C) 2014 Waves Audio Ltd.
|
|
|
|
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.
|
|
|
|
*/
|
|
#ifndef __ardour_mixer_bridge_view_h__
|
|
#define __ardour_mixer_bridge_view_h__
|
|
|
|
#include <glibmm/thread.h>
|
|
|
|
#include <gtkmm/box.h>
|
|
#include <gtkmm/scrolledwindow.h>
|
|
#include <gtkmm/label.h>
|
|
#include <gtkmm/window.h>
|
|
|
|
#include "ardour/ardour.h"
|
|
#include "ardour/types.h"
|
|
#include "ardour/session_handle.h"
|
|
|
|
#include "pbd/stateful.h"
|
|
#include "pbd/signals.h"
|
|
|
|
#include "gtkmm2ext/visibility_tracker.h"
|
|
|
|
#include "waves_ui.h"
|
|
#include "mixer_strip.h"
|
|
#include "mixer_actor.h"
|
|
|
|
class MixerBridgeView :
|
|
public Gtk::EventBox,
|
|
public WavesUI,
|
|
public PBD::ScopedConnectionList,
|
|
public ARDOUR::SessionHandlePtr,
|
|
public MixerActor
|
|
{
|
|
public:
|
|
MixerBridgeView ();
|
|
~MixerBridgeView();
|
|
void set_session (ARDOUR::Session *);
|
|
void track_editor_selection ();
|
|
|
|
protected:
|
|
void set_route_targets_for_operation ();
|
|
void toggle_midi_input_active (bool flip_others);
|
|
|
|
private:
|
|
Gtk::Box& _mixer_strips_home;
|
|
bool _following_editor_selection;
|
|
|
|
gint start_updating ();
|
|
gint stop_updating ();
|
|
|
|
sigc::connection fast_screen_update_connection;
|
|
void fast_update_strips ();
|
|
|
|
void add_strips (ARDOUR::RouteList&);
|
|
void remove_strip (MixerStrip *);
|
|
|
|
void session_going_away ();
|
|
void sync_order_keys ();
|
|
void follow_editor_selection ();
|
|
bool strip_button_release_event (GdkEventButton*, MixerStrip*);
|
|
MixerStrip* strip_by_route (boost::shared_ptr<ARDOUR::Route> route);
|
|
MixerStrip* strip_by_x (int x);
|
|
|
|
std::map <boost::shared_ptr<ARDOUR::Route>, MixerStrip*> _strips;
|
|
mutable Glib::Threads::Mutex _resync_mutex;
|
|
};
|
|
|
|
#endif //__ardour_mixer_bridge_view_h__
|