13
0
livetrax/libs/surfaces/mackie/strip.h

124 lines
2.8 KiB
C
Raw Normal View History

#ifndef __ardour_mackie_control_protocol_strip_h__
#define __ardour_mackie_control_protocol_strip_h__
#include <string>
#include <iostream>
#include "pbd/property_basics.h"
#include "control_group.h"
#include "mackie_midi_builder.h"
namespace ARDOUR {
class Route;
}
namespace Mackie {
class Control;
class Surface;
class Button;
class Pot;
class Fader;
class Meter;
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<ARDOUR::Route> 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<ARDOUR::Route>);
// call all signal handlers manually
void notify_all();
bool handle_button (SurfacePort & port, Control & control, ButtonState bs);
void periodic ();
private:
Button* _solo;
Button* _recenable;
Button* _mute;
Button* _select;
Button* _vselect;
Button* _fader_touch;
Pot* _vpot;
Fader* _gain;
Meter* _meter;
int _index;
Surface* _surface;
MackieMidiBuilder builder;
boost::shared_ptr<ARDOUR::Route> _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__ */