mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
drastic overhaul of keyboard handling in mixer window. real bindings, key events handled at window level, actions for all processor ops. still the confusing mess of old crap for the processor box context menu (it will die, i feel it)
git-svn-id: svn://localhost/ardour2/branches/3.0@10442 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
fd2aea1037
commit
8f078d7fd4
17 changed files with 637 additions and 318 deletions
|
|
@ -24,13 +24,13 @@
|
|||
#include "pbd/signals.h"
|
||||
|
||||
#include "processor_selection.h"
|
||||
#include "route_selection.h"
|
||||
#include "route_ui_selection.h"
|
||||
|
||||
class RouteRedirectSelection : public PBD::ScopedConnectionList, public sigc::trackable
|
||||
{
|
||||
public:
|
||||
ProcessorSelection processors;
|
||||
RouteSelection routes;
|
||||
RouteUISelection routes;
|
||||
|
||||
RouteRedirectSelection() {}
|
||||
|
||||
|
|
@ -45,17 +45,17 @@ class RouteRedirectSelection : public PBD::ScopedConnectionList, public sigc::tr
|
|||
void set (XMLNode* node);
|
||||
void add (XMLNode* node);
|
||||
|
||||
void set (boost::shared_ptr<ARDOUR::Route>);
|
||||
void add (boost::shared_ptr<ARDOUR::Route>);
|
||||
void remove (boost::shared_ptr<ARDOUR::Route>);
|
||||
void set (RouteUI*);
|
||||
void add (RouteUI*);
|
||||
void remove (RouteUI*);
|
||||
|
||||
void clear_processors ();
|
||||
void clear_routes ();
|
||||
|
||||
bool selected (boost::shared_ptr<ARDOUR::Route>);
|
||||
bool selected (RouteUI*);
|
||||
|
||||
private:
|
||||
void removed (boost::weak_ptr<ARDOUR::Route>);
|
||||
void removed (RouteUI*);
|
||||
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue