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 "pbd/signals.h"
#include "ardour/types.h"
#include "control_protocol/types.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<ARDOUR::Route> route() const { return _route; }
void add (Control & control);
int index() const { return _index; } // zero based
void set_route (boost::shared_ptr<ARDOUR::Route>);
// call all signal handlers manually
void notify_all();
void handle_button (Button&, ButtonState bs);
void handle_fader (Fader&, float position);
void handle_pot (Pot&, float delta);
void periodic (uint64_t now_usecs);
MidiByteArray display (uint32_t line_number, const std::string&);
MidiByteArray blank_display (uint32_t line_number);
MidiByteArray zero ();
void flip_mode_changed (bool notify=false);
void lock_controls ();
void unlock_controls ();
MidiByteArray gui_selection_changed (ARDOUR::RouteNotificationListPtr);
private:
Button* _solo;
Button* _recenable;
Button* _mute;
Button* _select;
Button* _vselect;
Button* _fader_touch;
Pot* _vpot;
Fader* _fader;
Meter* _meter;
int _index;
Surface* _surface;
bool _controls_locked;
uint64_t _reset_display_at;
boost::shared_ptr<ARDOUR::Route> _route;
PBD::ScopedConnectionList route_connections;
float _last_gain_position_written;
float _last_pan_position_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::string static_display_string () const;
void queue_display_reset (uint32_t msecs);
void clear_display_reset ();
void reset_display ();
void do_parameter_display (ARDOUR::AutomationType, float val);
};
}
#endif /* __ardour_mackie_control_protocol_strip_h__ */