101 lines
2.3 KiB
C
Executable File
101 lines
2.3 KiB
C
Executable File
/******************************************************************************
|
|
* Automatically generated file. Please don't change anything. *
|
|
*****************************************************************************/
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <lua.h>
|
|
#include <lauxlib.h>
|
|
|
|
#include "iup.h"
|
|
#include "iuplua.h"
|
|
#include "iupweb.h"
|
|
#include "il.h"
|
|
|
|
|
|
static int webbrowser_completed_cb(Ihandle *self, char * p0)
|
|
{
|
|
lua_State *L = iuplua_call_start(self, "completed_cb");
|
|
lua_pushstring(L, p0);
|
|
return iuplua_call(L, 1);
|
|
}
|
|
|
|
static int webbrowser_error_cb(Ihandle *self, char * p0)
|
|
{
|
|
lua_State *L = iuplua_call_start(self, "error_cb");
|
|
lua_pushstring(L, p0);
|
|
return iuplua_call(L, 1);
|
|
}
|
|
|
|
static int webbrowser_navigate_cb(Ihandle *self, char * p0)
|
|
{
|
|
lua_State *L = iuplua_call_start(self, "navigate_cb");
|
|
lua_pushstring(L, p0);
|
|
return iuplua_call(L, 1);
|
|
}
|
|
|
|
static int webbrowser_newwindow_cb(Ihandle *self, char * p0)
|
|
{
|
|
lua_State *L = iuplua_call_start(self, "newwindow_cb");
|
|
lua_pushstring(L, p0);
|
|
return iuplua_call(L, 1);
|
|
}
|
|
|
|
static int webbrowser_update_cb(Ihandle *self)
|
|
{
|
|
lua_State *L = iuplua_call_start(self, "update_cb");
|
|
return iuplua_call(L, 0);
|
|
}
|
|
|
|
static int WebBrowser(lua_State *L)
|
|
{
|
|
Ihandle *ih = IupWebBrowser();
|
|
iuplua_plugstate(L, ih);
|
|
iuplua_pushihandle_raw(L, ih);
|
|
return 1;
|
|
}
|
|
|
|
int iupwebbrowserlua_open(lua_State * L)
|
|
{
|
|
iuplua_register(L, WebBrowser, "WebBrowser");
|
|
|
|
iuplua_register_cb(L, "COMPLETED_CB", (lua_CFunction)webbrowser_completed_cb, NULL);
|
|
iuplua_register_cb(L, "ERROR_CB", (lua_CFunction)webbrowser_error_cb, NULL);
|
|
iuplua_register_cb(L, "NAVIGATE_CB", (lua_CFunction)webbrowser_navigate_cb, NULL);
|
|
iuplua_register_cb(L, "NEWWINDOW_CB", (lua_CFunction)webbrowser_newwindow_cb, NULL);
|
|
iuplua_register_cb(L, "UPDATE_CB", (lua_CFunction)webbrowser_update_cb, NULL);
|
|
|
|
#ifdef IUPLUA_USELOH
|
|
#include "webbrowser.loh"
|
|
#else
|
|
#ifdef IUPLUA_USELH
|
|
#include "webbrowser.lh"
|
|
#else
|
|
iuplua_dofile(L, "webbrowser.lua");
|
|
#endif
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
|
|
#include "iupluaweb.h"
|
|
|
|
IUPLUAWEB_API int iupweblua_open(lua_State* L)
|
|
{
|
|
if (iuplua_opencall_internal(L))
|
|
IupWebBrowserOpen();
|
|
|
|
iuplua_get_env(L);
|
|
iupwebbrowserlua_open(L);
|
|
return 0;
|
|
}
|
|
|
|
/* obligatory to use require"iupluaweb" */
|
|
IUPLUAWEB_API int luaopen_iupluaweb(lua_State* L)
|
|
{
|
|
return iupweblua_open(L);
|
|
}
|
|
|