aboutsummaryrefslogtreecommitdiff
path: root/demo.c
blob: a2d431c920647edfbcbf79a9177c4d2161b689ca (plain)
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
#include <stdio.h>
#include <stdlib.h>
#include <termios.h>
#include <unistd.h>

#include "termkey.h"

int main(int argc, char *argv[]) {
  struct termios termios;

  if(tcgetattr(0, &termios)) {
    perror("ioctl(TCIOGETS)");
    exit(1);
  }

  int old_lflag = termios.c_lflag;
  termios.c_lflag &= ~(ICANON|ECHO);

  tcsetattr(0, TCSANOW, &termios);

  termkey_t *tk = termkey_new(0, 0);

  termkey_result ret;
  termkey_key key;

  while((ret = termkey_waitkey(tk, &key)) != TERMKEY_RES_EOF) {
    if(key.flags & TERMKEY_KEYFLAG_SPECIAL)
      printf("Key %s%s%s%s (code %d)\n",
          key.modifiers & TERMKEY_KEYMOD_SHIFT ? "Shift-" : "",
          key.modifiers & TERMKEY_KEYMOD_ALT   ? "Alt-" : "",
          key.modifiers & TERMKEY_KEYMOD_CTRL  ? "Ctrl-" : "",
          termkey_describe_sym(tk, key.code),
          key.code);
    else
      printf("Key %s%s%s%s (U+%04X)\n",
          key.modifiers & TERMKEY_KEYMOD_SHIFT ? "Shift-" : "",
          key.modifiers & TERMKEY_KEYMOD_ALT   ? "Alt-" : "",
          key.modifiers & TERMKEY_KEYMOD_CTRL  ? "Ctrl-" : "",
          key.utf8,
          key.code);

    if(key.modifiers & TERMKEY_KEYMOD_CTRL && key.code == 'C')
      break;
  }

  termios.c_lflag = old_lflag;
  tcsetattr(0, TCSANOW, &termios);
}