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
|
#ifndef QTSCRIPTSHELL_QLAYOUT_H
#define QTSCRIPTSHELL_QLAYOUT_H
#include <qlayout.h>
#include <QtScript/qscriptvalue.h>
class QtScriptShell_QLayout : public QLayout
{
public:
QtScriptShell_QLayout();
QtScriptShell_QLayout(QWidget* parent);
~QtScriptShell_QLayout();
void addItem(QLayoutItem* arg__1);
void childEvent(QChildEvent* e);
int count() const;
void customEvent(QEvent* arg__1);
bool event(QEvent* arg__1);
bool eventFilter(QObject* arg__1, QEvent* arg__2);
Qt::Orientations expandingDirections() const;
QRect geometry() const;
bool hasHeightForWidth() const;
int heightForWidth(int arg__1) const;
int indexOf(QWidget* arg__1) const;
void invalidate();
bool isEmpty() const;
QLayoutItem* itemAt(int index) const;
QLayout* layout();
QSize maximumSize() const;
int minimumHeightForWidth(int arg__1) const;
QSize minimumSize() const;
void setGeometry(const QRect& arg__1);
QSize sizeHint() const;
QSpacerItem* spacerItem();
QLayoutItem* takeAt(int index);
void timerEvent(QTimerEvent* arg__1);
QWidget* widget();
QScriptValue __qtscript_self;
};
#endif // QTSCRIPTSHELL_QLAYOUT_H
|