You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.2 KiB
46 lines
1.2 KiB
7 years ago
|
/* -*- mode: c++ -*-
|
||
|
* Kaleidoscope-Redial -- Redial support for Kaleidoscope
|
||
6 years ago
|
* Copyright (C) 2018, 2019 Keyboard.io, Inc.
|
||
7 years ago
|
*
|
||
6 years ago
|
* This program is free software: you can redistribute it and/or modify it under
|
||
|
* the terms of the GNU General Public License as published by the Free Software
|
||
|
* Foundation, version 3.
|
||
7 years ago
|
*
|
||
6 years ago
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
||
|
* details.
|
||
7 years ago
|
*
|
||
6 years ago
|
* You should have received a copy of the GNU General Public License along with
|
||
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
||
7 years ago
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
5 years ago
|
#include "kaleidoscope/Runtime.h"
|
||
6 years ago
|
#include <Kaleidoscope-Ranges.h>
|
||
|
|
||
6 years ago
|
#define Key_Redial Key(kaleidoscope::ranges::REDIAL)
|
||
7 years ago
|
|
||
|
namespace kaleidoscope {
|
||
6 years ago
|
namespace plugin {
|
||
7 years ago
|
|
||
6 years ago
|
class Redial : public kaleidoscope::Plugin {
|
||
7 years ago
|
public:
|
||
7 years ago
|
Redial(void) {}
|
||
7 years ago
|
|
||
|
static bool shouldRemember(Key mappedKey);
|
||
|
|
||
5 years ago
|
EventHandlerResult onKeyswitchEvent(Key &mapped_key, KeyAddr key_addr, uint8_t key_state);
|
||
7 years ago
|
|
||
7 years ago
|
private:
|
||
|
static Key key_to_redial_;
|
||
6 years ago
|
static Key last_key_;
|
||
|
static bool redial_held_;
|
||
7 years ago
|
};
|
||
|
|
||
6 years ago
|
}
|
||
7 years ago
|
}
|
||
|
|
||
6 years ago
|
extern kaleidoscope::plugin::Redial Redial;
|