2007-06-29 00:02:58 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2007 Paul Davis
|
2011-04-06 11:00:16 -04:00
|
|
|
Author: David Robillard
|
2007-06-29 00:02:58 -04:00
|
|
|
|
|
|
|
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_gtk_automation_controller_h__
|
|
|
|
#define __ardour_gtk_automation_controller_h__
|
|
|
|
|
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
#include <gtkmm.h>
|
2009-12-19 15:26:31 -05:00
|
|
|
|
|
|
|
#include "gtkmm2ext/barcontroller.h"
|
|
|
|
#include "pbd/signals.h"
|
2011-11-22 19:55:25 -05:00
|
|
|
#include "evoral/Parameter.hpp"
|
2007-06-29 00:02:58 -04:00
|
|
|
|
|
|
|
namespace ARDOUR {
|
|
|
|
class Session;
|
|
|
|
class AutomationList;
|
|
|
|
class AutomationControl;
|
2007-07-05 22:37:35 -04:00
|
|
|
class Automatable;
|
2007-06-29 00:02:58 -04:00
|
|
|
}
|
|
|
|
|
2010-02-02 19:52:45 -05:00
|
|
|
/** A BarController which displays the value and allows control of an AutomationControl */
|
2007-06-29 00:02:58 -04:00
|
|
|
class AutomationController : public Gtkmm2ext::BarController {
|
|
|
|
public:
|
|
|
|
static boost::shared_ptr<AutomationController> create(
|
2007-07-05 22:37:35 -04:00
|
|
|
boost::shared_ptr<ARDOUR::Automatable> parent,
|
2008-09-21 12:17:02 -04:00
|
|
|
const Evoral::Parameter& param,
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> ac);
|
|
|
|
|
|
|
|
~AutomationController();
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> controllable() { return _controllable; }
|
2007-06-30 14:41:50 -04:00
|
|
|
|
|
|
|
Gtk::Adjustment* adjustment() { return _adjustment; }
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
void display_effective_value();
|
|
|
|
void value_adjusted();
|
|
|
|
|
2010-02-02 19:52:45 -05:00
|
|
|
void stop_updating ();
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
private:
|
2011-02-16 14:41:53 -05:00
|
|
|
AutomationController (boost::shared_ptr<ARDOUR::Automatable> printer, boost::shared_ptr<ARDOUR::AutomationControl> ac, Gtk::Adjustment* adj);
|
2011-01-27 20:04:33 -05:00
|
|
|
std::string get_label (double&);
|
2009-10-14 12:10:01 -04:00
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
void start_touch();
|
|
|
|
void end_touch();
|
|
|
|
|
2007-06-30 14:41:50 -04:00
|
|
|
void value_changed();
|
|
|
|
|
2007-06-29 00:02:58 -04:00
|
|
|
bool _ignore_change;
|
2011-02-16 14:34:11 -05:00
|
|
|
boost::shared_ptr<ARDOUR::Automatable> _printer;
|
2007-06-29 00:02:58 -04:00
|
|
|
boost::shared_ptr<ARDOUR::AutomationControl> _controllable;
|
|
|
|
Gtk::Adjustment* _adjustment;
|
|
|
|
sigc::connection _screen_update_connection;
|
2009-12-19 15:26:31 -05:00
|
|
|
PBD::ScopedConnection _changed_connection;
|
2007-06-29 00:02:58 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __ardour_gtk_automation_controller_h__ */
|