added "install" instruction
[Leditor.git] / src / lqt_bind_QLayoutItem.hpp
blobb1746c5825555888208c0df20b39b4df0a5660f4
1 #include "lqt_common.hpp"
2 #include <QLayoutItem>
3 #include <QtCore>
4 #include <QtGui>
6 template <> class LuaBinder< QLayoutItem > : public QLayoutItem {
7 private:
8 lua_State *L;
9 public:
10 static int __LuaWrapCall__invalidate (lua_State *L);
11 static int __LuaWrapCall__controlTypes (lua_State *L);
12 static int __LuaWrapCall__heightForWidth (lua_State *L);
13 static int __LuaWrapCall__spacerItem (lua_State *L);
14 static int __LuaWrapCall__delete (lua_State *L);
15 static int __LuaWrapCall__layout (lua_State *L);
16 static int __LuaWrapCall__setAlignment (lua_State *L);
17 static int __LuaWrapCall__minimumHeightForWidth (lua_State *L);
18 static int __LuaWrapCall__alignment (lua_State *L);
19 static int __LuaWrapCall__widget (lua_State *L);
20 static int __LuaWrapCall__hasHeightForWidth (lua_State *L);
21 bool hasHeightForWidth () const;
22 QLayout * layout ();
23 QSpacerItem * spacerItem ();
24 QSize sizeHint () const;
25 void setGeometry (const QRect& arg1);
26 QSize minimumSize () const;
27 int heightForWidth (int arg1) const;
28 QWidget * widget ();
29 bool isEmpty () const;
30 void invalidate ();
31 QFlags<Qt::Orientation> expandingDirections () const;
32 QRect geometry () const;
33 int minimumHeightForWidth (int arg1) const;
34 QSize maximumSize () const;
35 ~LuaBinder< QLayoutItem > ();
36 LuaBinder< QLayoutItem > (lua_State *l, QFlags<Qt::AlignmentFlag> arg1):QLayoutItem(arg1), L(l) {}
39 extern "C" int luaopen_QLayoutItem (lua_State *L);