Example #1
0
static int item_action(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "action");
  return iuplua_call(L, 0);
}
Example #2
0
static int progressdlg_cancel_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "cancel_cb");
  return iuplua_call(L, 0);
}
Example #3
0
static int tree_noderemoved_cb(Ihandle *ih, void* p1)
{
  lua_State *L = iuplua_call_start(ih, "noderemoved_cb");
  tree_push_userid(L, p1);
  return iuplua_call(L, 1);
}
Example #4
0
static int SPIN_spin_cb (Ihandle *handle, int v)
{
  iuplua_call_start(handle, "spincb");
  lua_pushnumber(v);
  return iuplua_call();
}
Example #5
0
static int link_action(Ihandle *self, char * p0)
{
  lua_State *L = iuplua_call_start(self, "action");
  lua_pushstring(L, p0);
  return iuplua_call(L, 1);
}
Example #6
0
static int pplot_postdraw_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "postdraw_cb");
  lua_pushinteger(L, p0);
  return iuplua_call(L, 1);
}
Example #7
0
static int spinbox_spin_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "spin_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #8
0
static int val_mousemove_cb(Ihandle *self, double p0)
{
  lua_State *L = iuplua_call_start(self, "mousemove_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #9
0
static int val_button_release_cb(Ihandle *self, double p0)
{
  lua_State *L = iuplua_call_start(self, "button_release_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #10
0
static int tree_rightclick_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "rightclick_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #11
0
static int pplot_predraw_cb(Ihandle *self, cdCanvas* cnv)
{
  lua_State *L = iuplua_call_start(self, "predraw_cb");
  cdlua_pushcanvas(L, cnv);
  return iuplua_call(L, 1);
}
Example #12
0
static int tree_executeleaf_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "executeleaf_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #13
0
static int tree_branchclose_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "branchclose_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #14
0
static int tree_showrename_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "showrename_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}
Example #15
0
static int item_highlight_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "highlight_cb");
  return iuplua_call(L, 0);
}
Example #16
0
static char * colorbar_cell_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "cell_cb");
  lua_pushinteger(L, p0);
  return iuplua_call_rs(L, 1);
}
Example #17
0
static int pplot_editbegin_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "editbegin_cb");
  return iuplua_call(L, 0);
}
Example #18
0
static int colorbar_extended_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "extended_cb");
  lua_pushinteger(L, p0);
  return iuplua_call(L, 1);
}
Example #19
0
static int pplot_selectend_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "selectend_cb");
  return iuplua_call(L, 0);
}
Example #20
0
static int matrixlist_listinsert_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "listinsert_cb");
  lua_pushinteger(L, p0);
  return iuplua_call(L, 1);
}