updated binding sources to the last version
[Leditor.git] / src / lqt_bind_QShortcut.hpp
blobb9039fc37f020df692cb46a0956dfd37425d5a8a
1 #include "lqt_common.hpp"
2 #include <QShortcut>
3 #include <QtCore>
4 #include <QtGui>
6 template <> class LuaBinder< QShortcut > : public QShortcut {
7 private:
8 lua_State *L;
9 public:
10 static int __LuaWrapCall__parentWidget (lua_State *L);
11 static int __LuaWrapCall__setContext (lua_State *L);
12 static int __LuaWrapCall__key (lua_State *L);
13 static int __LuaWrapCall__trUtf8__OverloadedVersion__1 (lua_State *L);
14 static int __LuaWrapCall__trUtf8__OverloadedVersion__2 (lua_State *L);
15 static int __LuaWrapCall__trUtf8 (lua_State *L);
16 static int __LuaWrapCall__context (lua_State *L);
17 static int __LuaWrapCall__new__OverloadedVersion__2 (lua_State *L);
18 static int __LuaWrapCall__new__OverloadedVersion__3 (lua_State *L);
19 static int __LuaWrapCall__new (lua_State *L);
20 static int __LuaWrapCall__tr__OverloadedVersion__1 (lua_State *L);
21 static int __LuaWrapCall__tr__OverloadedVersion__2 (lua_State *L);
22 static int __LuaWrapCall__tr (lua_State *L);
23 static int __LuaWrapCall__delete (lua_State *L);
24 static int __LuaWrapCall__setKey (lua_State *L);
25 static int __LuaWrapCall__whatsThis (lua_State *L);
26 static int __LuaWrapCall__autoRepeat (lua_State *L);
27 static int __LuaWrapCall__id (lua_State *L);
28 static int __LuaWrapCall__setWhatsThis (lua_State *L);
29 static int __LuaWrapCall__isEnabled (lua_State *L);
30 static int __LuaWrapCall__setEnabled (lua_State *L);
31 static int __LuaWrapCall__setAutoRepeat (lua_State *L);
32 static int __LuaWrapCall__metaObject (lua_State *L);
33 protected:
34 bool event (QEvent * arg1);
35 public:
36 protected:
37 void connectNotify (const char * arg1);
38 public:
39 bool eventFilter (QObject * arg1, QEvent * arg2);
40 protected:
41 void disconnectNotify (const char * arg1);
42 public:
43 protected:
44 void childEvent (QChildEvent * arg1);
45 public:
46 protected:
47 void timerEvent (QTimerEvent * arg1);
48 public:
49 const QMetaObject * metaObject () const;
50 protected:
51 void customEvent (QEvent * arg1);
52 public:
53 ~LuaBinder< QShortcut > ();
54 LuaBinder< QShortcut > (lua_State *l, QWidget * arg1):QShortcut(arg1), L(l) {}
55 LuaBinder< QShortcut > (lua_State *l, const QKeySequence& arg1, QWidget * arg2, const char * arg3, const char * arg4, Qt::ShortcutContext arg5):QShortcut(arg1, arg2, arg3, arg4, arg5), L(l) {}
58 extern "C" int luaopen_QShortcut (lua_State *L);