#ifndef __ardour_mackie_control_protocol_strip_h__ #define __ardour_mackie_control_protocol_strip_h__ #include #include #include "pbd/property_basics.h" #include "pbd/signals.h" #include "control_group.h" #include "types.h" #include "midi_byte_array.h" namespace ARDOUR { class Route; } namespace Mackie { class Control; class Surface; class Button; class Pot; class Fader; class Meter; class SurfacePort; struct StripControlDefinition { const char* name; uint32_t base_id; Control* (*factory)(Surface&, int index, const char* name, Group&); }; struct GlobalControlDefinition { const char* name; uint32_t id; Control* (*factory)(Surface&, int index, const char* name, Group&); const char* group_name; }; /** This is the set of controls that make up a strip. */ class Strip : public Group { public: Strip (Surface&, const std::string & name, int index, StripControlDefinition* ctls); ~Strip(); boost::shared_ptr route() const { return _route; } void add (Control & control); int index() const { return _index; } // zero based Button & solo(); Button & recenable(); Button & mute(); Button & select(); Button & vselect(); Button & fader_touch(); Pot & vpot(); Fader & gain(); Meter& meter (); bool has_solo() const { return _solo != 0; } bool has_recenable() const { return _recenable != 0; } bool has_mute() const { return _mute != 0; } bool has_select() const { return _select != 0; } bool has_vselect() const { return _vselect != 0; } bool has_fader_touch() const { return _fader_touch != 0; } bool has_vpot() const { return _vpot != 0; } bool has_gain() const { return _gain != 0; } bool has_meter() const { return _meter != 0; } void set_route (boost::shared_ptr); // call all signal handlers manually void notify_all(); bool handle_button (SurfacePort & port, Control & control, ButtonState bs); void periodic (); MidiByteArray display (uint32_t line_number, const std::string&); MidiByteArray blank_display (uint32_t line_number); MidiByteArray zero (); private: Button* _solo; Button* _recenable; Button* _mute; Button* _select; Button* _vselect; Button* _fader_touch; Pot* _vpot; Fader* _gain; Meter* _meter; int _index; Surface* _surface; boost::shared_ptr _route; PBD::ScopedConnectionList route_connections; // Last written values for the gain and pan, to avoid overloading // the midi connection to the surface float _last_gain_written; MidiByteArray _last_pan_written; void notify_solo_changed (); void notify_mute_changed (); void notify_record_enable_changed (); void notify_gain_changed (bool force_update = true); void notify_property_changed (const PBD::PropertyChange&); void notify_panner_changed (bool force_update = true); void notify_active_changed (); void notify_route_deleted (); void update_automation (); void update_meter (); }; std::ostream & operator << (std::ostream &, const Strip &); } #endif /* __ardour_mackie_control_protocol_strip_h__ */