Fork of Tangara with customizations
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.
 
 
 
 
 
 
tangara-fw/lib/luavgl/src/private.h

25 lines
732 B

#pragma once
#include <lauxlib.h>
#include <lua.h>
#include <lvgl.h>
#include <stdbool.h>
#include <stdint.h>
static void dumpstack(lua_State *L);
static void dumptable(lua_State *L, int index);
/* metatable */
int luavgl_obj_getmetatable(lua_State *L, const lv_obj_class_t *clz);
int luavgl_obj_setmetatable(lua_State *L, int idx, const lv_obj_class_t *clz);
static void luavgl_obj_remove_event_all(lua_State *L, luavgl_obj_t *obj);
/* util functions */
static void luavgl_check_callable(lua_State *L, int index);
static int luavgl_check_continuation(lua_State *L, int index);
static int luavgl_obj_set_style_kv(lua_State *L, lv_obj_t *obj, int selector);
static int luavgl_pcall_int(lua_State *L, int nargs, int nresult);