summaryrefslogtreecommitdiff
path: root/iup/srclua5/il_tree.c
blob: 16168d3e7a89debebaeb29868635fb269a9e5097 (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
/******************************************************************************
 * 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 tree_branchopen_cb(Ihandle *self, int p0)
{
  lua_State *L = iuplua_call_start(self, "branchopen_cb");
  lua_pushnumber(L, p0);
  return iuplua_call(L, 1);
}

static int tree_selection_cb(Ihandle *self, int p0, int p1)
{
  lua_State *L = iuplua_call_start(self, "selection_cb");
  lua_pushnumber(L, p0);
  lua_pushnumber(L, p1);
  return iuplua_call(L, 2);
}

static int tree_dragdrop_cb(Ihandle *self, int p0, int p1, int p2, int p3)
{
  lua_State *L = iuplua_call_start(self, "dragdrop_cb");
  lua_pushnumber(L, p0);
  lua_pushnumber(L, p1);
  lua_pushnumber(L, p2);
  lua_pushnumber(L, p3);
  return iuplua_call(L, 4);
}

static int tree_rename_cb(Ihandle *self, int p0, char * p1)
{
  lua_State *L = iuplua_call_start(self, "rename_cb");
  lua_pushnumber(L, p0);
  lua_pushstring(L, p1);
  return iuplua_call(L, 2);
}

static int tree_renamenode_cb(Ihandle *self, int p0, char * p1)
{
  lua_State *L = iuplua_call_start(self, "renamenode_cb");
  lua_pushnumber(L, p0);
  lua_pushstring(L, p1);
  return iuplua_call(L, 2);
}

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);
}

static int tree_multiselection_cb(Ihandle *self, int p0, int p1)
{
  lua_State *L = iuplua_call_start(self, "multiselection_cb");
  lua_pushnumber(L, p0);
  lua_pushnumber(L, p1);
  return iuplua_call(L, 2);
}

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);
}

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);
}

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);
}

static int tree_noderemoved_cb(Ihandle *self, int p0, char * p1)
{
  lua_State *L = iuplua_call_start(self, "noderemoved_cb");
  lua_pushnumber(L, p0);
  lua_pushstring(L, p1);
  return iuplua_call(L, 2);
}

static int Tree(lua_State *L)
{
  Ihandle *ih = IupTree();
  iuplua_plugstate(L, ih);
  iuplua_pushihandle_raw(L, ih);
  return 1;
}

void iuplua_treefuncs_open(lua_State *L);

int iuptreelua_open(lua_State * L)
{
  iuplua_register(L, Tree, "Tree");

  iuplua_register_cb(L, "BRANCHOPEN_CB", (lua_CFunction)tree_branchopen_cb, NULL);
  iuplua_register_cb(L, "SELECTION_CB", (lua_CFunction)tree_selection_cb, NULL);
  iuplua_register_cb(L, "DRAGDROP_CB", (lua_CFunction)tree_dragdrop_cb, NULL);
  iuplua_register_cb(L, "RENAME_CB", (lua_CFunction)tree_rename_cb, NULL);
  iuplua_register_cb(L, "RENAMENODE_CB", (lua_CFunction)tree_renamenode_cb, NULL);
  iuplua_register_cb(L, "SHOWRENAME_CB", (lua_CFunction)tree_showrename_cb, NULL);
  iuplua_register_cb(L, "MULTISELECTION_CB", (lua_CFunction)tree_multiselection_cb, NULL);
  iuplua_register_cb(L, "BRANCHCLOSE_CB", (lua_CFunction)tree_branchclose_cb, NULL);
  iuplua_register_cb(L, "EXECUTELEAF_CB", (lua_CFunction)tree_executeleaf_cb, NULL);
  iuplua_register_cb(L, "RIGHTCLICK_CB", (lua_CFunction)tree_rightclick_cb, NULL);
  iuplua_register_cb(L, "NODEREMOVED_CB", (lua_CFunction)tree_noderemoved_cb, NULL);

  iuplua_treefuncs_open(L);

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