13
0
livetrax/libs/surfaces/mackie/jog_wheel.h
Paul Davis 4dc63966f0 globally remove all trailing whitespace from ardour code base.
Paul Davis was responsible for introducing almost all of this.
2015-10-04 14:51:05 -04:00

38 lines
484 B
C++

#ifndef mackie_jog_wheel
#define mackie_jog_wheel
#include "timer.h"
#include <stack>
#include <deque>
#include <queue>
namespace ArdourSurface {
class MackieControlProtocol;
namespace Mackie
{
class JogWheel
{
public:
enum Mode { scroll };
JogWheel (MackieControlProtocol & mcp);
/// As the wheel turns...
void jog_event (float delta);
void set_mode (Mode m);
Mode mode() const { return _mode; }
private:
MackieControlProtocol & _mcp;
Mode _mode;
};
}
}
#endif