iup-stack/iup/srclua5/elem/il_button.c

48 lines
1022 B
C
Raw Permalink Normal View History

2023-02-20 16:44:45 +00:00
/******************************************************************************
* Automatically generated file. Please don't change anything. *
*****************************************************************************/
#include <stdlib.h>
#include <lua.h>
#include <lauxlib.h>
#include "iup.h"
#include "iuplua.h"
#include "il.h"
static int button_action(Ihandle *self)
{
lua_State *L = iuplua_call_start(self, "action");
return iuplua_call(L, 0);
}
static int Button(lua_State *L)
{
Ihandle *ih = IupButton((char *)luaL_optstring(L, 1, NULL), NULL);
iuplua_plugstate(L, ih);
iuplua_pushihandle_raw(L, ih);
return 1;
}
int iupbuttonlua_open(lua_State * L)
{
iuplua_register(L, Button, "Button");
iuplua_register_cb(L, "ACTION", (lua_CFunction)button_action, "button");
#ifdef IUPLUA_USELOH
#include "button.loh"
#else
#ifdef IUPLUA_USELH
#include "button.lh"
#else
iuplua_dofile(L, "button.lua");
#endif
#endif
return 0;
}