added "install" instruction
[Leditor.git] / src / lqt_bind_QEvent.hpp
blob14b26d0b10cff93c8c58b9c1b36cc5df043cee89
1 #include "lqt_common.hpp"
2 #include <QEvent>
3 #include <QtCore>
4 #include <QtGui>
6 template <> class LuaBinder< QEvent > : public QEvent {
7 private:
8 lua_State *L;
9 public:
10 static int __LuaWrapCall__delete (lua_State *L);
11 static int __LuaWrapCall__type (lua_State *L);
12 static int __LuaWrapCall__setAccepted (lua_State *L);
13 static int __LuaWrapCall__accept (lua_State *L);
14 static int __LuaWrapCall__isAccepted (lua_State *L);
15 static int __LuaWrapCall__spontaneous (lua_State *L);
16 static int __LuaWrapCall__ignore (lua_State *L);
17 ~LuaBinder< QEvent > ();
18 static int lqt_pushenum_Type (lua_State *L);
19 static int lqt_pushenum_Type_QFLAGS_CREATOR (lua_State *L);
20 LuaBinder< QEvent > (lua_State *l, QEvent::Type arg1):QEvent(arg1), L(l) {}
23 extern "C" int luaopen_QEvent (lua_State *L);