mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 22:26:29 +01:00
fix abort-capture path, including many subtle issues with shared_ptr<>; remove old automation feedback code; make new automation feedback code slightly configurable ; fix zoom focus options for playhead + edit cursor ; prevent zoom < 2 samples per pixel to avoid crashes ; peak building now uses shared_ptr<Source> not Source*
git-svn-id: svn://localhost/ardour2/trunk@959 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
8011cbf5f8
commit
0d0f71ee92
37 changed files with 287 additions and 292 deletions
|
|
@ -45,6 +45,10 @@ class ControlProtocol : public sigc::trackable, public Stateful, public BasicUI
|
|||
virtual int set_active (bool yn) = 0;
|
||||
bool get_active() const { return _active; }
|
||||
|
||||
virtual int set_feedback (bool yn) { return 0; }
|
||||
virtual bool get_feedback () const { return false; }
|
||||
virtual bool supports_feedback () const { return false; }
|
||||
|
||||
sigc::signal<void> ActiveChanged;
|
||||
|
||||
/* signals that a control protocol can emit and other (presumably graphical)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue