summaryrefslogtreecommitdiff
path: root/iup/srclua5/il_canvas.c
blob: c8a60251685e07ba15e87971aaafb3fa8d0e0f40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/******************************************************************************
 * Automatically generated file (iuplua5). 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 canvas_action(Ihandle *self, float p0, float p1)
{
  lua_State *L = iuplua_call_start(self, "action");
  lua_pushnumber(L, p0);
  lua_pushnumber(L, p1);
  return iuplua_call(L, 2);
}

static int canvas_leavewindow_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "leavewindow_cb");
  return iuplua_call(L, 0);
}

static int canvas_resize_cb(Ihandle *self, int p0, int p1)
{
  lua_State *L = iuplua_call_start(self, "resize_cb");
  lua_pushinteger(L, p0);
  lua_pushinteger(L, p1);
  return iuplua_call(L, 2);
}

static int canvas_wheel_cb(Ihandle *self, float p0, int p1, int p2, char * p3)
{
  lua_State *L = iuplua_call_start(self, "wheel_cb");
  lua_pushnumber(L, p0);
  lua_pushinteger(L, p1);
  lua_pushinteger(L, p2);
  lua_pushstring(L, p3);
  return iuplua_call(L, 4);
}

static int canvas_mdiactivate_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "mdiactivate_cb");
  return iuplua_call(L, 0);
}

static int canvas_enterwindow_cb(Ihandle *self)
{
  lua_State *L = iuplua_call_start(self, "enterwindow_cb");
  return iuplua_call(L, 0);
}

static int canvas_focus_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "focus_cb");
  lua_pushinteger(L, p0);
  return iuplua_call(L, 1);
}

static int canvas_button_cb(Ihandle *self, int p0, int p1, int p2, int p3, char * p4)
{
  lua_State *L = iuplua_call_start(self, "button_cb");
  lua_pushinteger(L, p0);
  lua_pushinteger(L, p1);
  lua_pushinteger(L, p2);
  lua_pushinteger(L, p3);
  lua_pushstring(L, p4);
  return iuplua_call(L, 5);
}

static int canvas_keypress_cb(Ihandle *self, int p0, int p1)
{
  lua_State *L = iuplua_call_start(self, "keypress_cb");
  lua_pushinteger(L, p0);
  lua_pushinteger(L, p1);
  return iuplua_call(L, 2);
}

static int canvas_motion_cb(Ihandle *self, int p0, int p1, char * p2)
{
  lua_State *L = iuplua_call_start(self, "motion_cb");
  lua_pushinteger(L, p0);
  lua_pushinteger(L, p1);
  lua_pushstring(L, p2);
  return iuplua_call(L, 3);
}

static int canvas_wom_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "wom_cb");
  lua_pushinteger(L, p0);
  return iuplua_call(L, 1);
}

static int canvas_scroll_cb(Ihandle *self, int p0, float p1, float p2)
{
  lua_State *L = iuplua_call_start(self, "scroll_cb");
  lua_pushinteger(L, p0);
  lua_pushnumber(L, p1);
  lua_pushnumber(L, p2);
  return iuplua_call(L, 3);
}

static int Canvas(lua_State *L)
{
  Ihandle *ih = IupCanvas(NULL);
  iuplua_plugstate(L, ih);
  iuplua_pushihandle_raw(L, ih);
  return 1;
}

int iupcanvaslua_open(lua_State * L)
{
  iuplua_register(L, Canvas, "Canvas");

  iuplua_register_cb(L, "ACTION", (lua_CFunction)canvas_action, "canvas");
  iuplua_register_cb(L, "LEAVEWINDOW_CB", (lua_CFunction)canvas_leavewindow_cb, NULL);
  iuplua_register_cb(L, "RESIZE_CB", (lua_CFunction)canvas_resize_cb, NULL);
  iuplua_register_cb(L, "WHEEL_CB", (lua_CFunction)canvas_wheel_cb, NULL);
  iuplua_register_cb(L, "MDIACTIVATE_CB", (lua_CFunction)canvas_mdiactivate_cb, NULL);
  iuplua_register_cb(L, "ENTERWINDOW_CB", (lua_CFunction)canvas_enterwindow_cb, NULL);
  iuplua_register_cb(L, "FOCUS_CB", (lua_CFunction)canvas_focus_cb, NULL);
  iuplua_register_cb(L, "BUTTON_CB", (lua_CFunction)canvas_button_cb, NULL);
  iuplua_register_cb(L, "KEYPRESS_CB", (lua_CFunction)canvas_keypress_cb, NULL);
  iuplua_register_cb(L, "MOTION_CB", (lua_CFunction)canvas_motion_cb, NULL);
  iuplua_register_cb(L, "WOM_CB", (lua_CFunction)canvas_wom_cb, NULL);
  iuplua_register_cb(L, "SCROLL_CB", (lua_CFunction)canvas_scroll_cb, NULL);

#include "clua/canvas.clua"
  return 0;
}