File: KeyboardDeviceMock.cpp

package info (click to toggle)
keyman 18.0.246-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,316 kB
  • sloc: python: 52,784; cpp: 21,289; sh: 7,633; ansic: 4,823; xml: 3,617; perl: 959; makefile: 139; javascript: 138
file content (48 lines) | stat: -rw-r--r-- 795 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
// A KeyboardDevice mock.
#include <dirent.h>
#include <fcntl.h>
#include <iostream>
#include <string.h>
#include <string>
#include <unistd.h>

#ifndef KeyboardDevice
#define KeyboardDevice KeyboardDeviceMock
#endif

#include "KeyboardDevice.h"

using namespace std;

KeyboardDeviceMock::KeyboardDeviceMock() {
  dev            = nullptr;
  fd             = -1;
  hasCapsLockLed = 1;
  debug          = false;
}

KeyboardDeviceMock::~KeyboardDeviceMock() {
}

void KeyboardDeviceMock::Close() {
}

bool
KeyboardDeviceMock::Initialize(const char* name) {
  return true;
}

bool
KeyboardDeviceMock::HasCapsLockLed() {
  return true;
}

void
KeyboardDeviceMock::SetCapsLockLed(bool on) {
  hasCapsLockLed = on ? 1 : 0;
}

bool
KeyboardDeviceMock::GetCapsLockLed() {
  return hasCapsLockLed == 1;
}