This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2016-05-09 14:05:08 +00:00
|
|
|
#ifndef CODE_LAYERHOLD_H
|
|
|
|
#define CODE_LAYERHOLD_H
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <Code.h>
|
2016-05-28 21:16:32 +00:00
|
|
|
#include "LayerState.h"
|
2016-05-09 14:05:08 +00:00
|
|
|
|
2016-05-28 21:16:32 +00:00
|
|
|
/* Code_LayerHold calls LayerState when pressed to change activeLayer.
|
2016-05-09 14:05:08 +00:00
|
|
|
*/
|
|
|
|
class Code_LayerHold : public Code
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
const uint8_t layer;
|
2016-05-28 21:16:32 +00:00
|
|
|
LayerState& refLayerState;
|
2016-05-09 14:05:08 +00:00
|
|
|
public:
|
2016-05-28 21:16:32 +00:00
|
|
|
Code_LayerHold(const uint8_t layer, LayerState& refLayerState)
|
|
|
|
: layer(layer), refLayerState(refLayerState) {}
|
2016-05-09 14:05:08 +00:00
|
|
|
virtual void press();
|
|
|
|
virtual void release();
|
|
|
|
};
|
|
|
|
#endif
|