about summary refs log tree commit diff stats
path: root/src/lcurseslib.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lcurseslib.c')
-rw-r--r--src/lcurseslib.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lcurseslib.c b/src/lcurseslib.c
index e32ce31..85ef62a 100644
--- a/src/lcurseslib.c
+++ b/src/lcurseslib.c
@@ -135,6 +135,18 @@ static int Wclear (lua_State *L) {
 }
 
 
+static int Wgetch (lua_State *L) {
+  WINDOW *w = checkwin(L, 1);
+  int c = wgetch(w);
+
+  if (c == ERR)
+    return 0;
+
+  lua_pushinteger(L, c);
+  return 1;
+}
+
+
 static int Wgetyx (lua_State *L) {
   WINDOW *w = checkwin(L, 1);
   int y, x;
@@ -183,6 +195,7 @@ static const luaL_Reg curses_window_methods[] =
   {"attroff", Wattroff},
   {"attron", Wattron},
   {"clear", Wclear},
+  {"getch", Wgetch},
   {"getmaxyx", Wgetmaxyx},
   {"getyx", Wgetyx},
   {"mvaddch", Wmvaddch},