1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
#ifndef QTSCRIPTSHELL_QSTYLEOPTIONFRAMEV2_H
#define QTSCRIPTSHELL_QSTYLEOPTIONFRAMEV2_H
#include <qstyleoption.h>
#include <QtScript/qscriptvalue.h>
class QtScriptShell_QStyleOptionFrameV2 : public QStyleOptionFrameV2
{
public:
QtScriptShell_QStyleOptionFrameV2();
QtScriptShell_QStyleOptionFrameV2(const QStyleOptionFrame& other);
QtScriptShell_QStyleOptionFrameV2(const QStyleOptionFrameV2& other);
QtScriptShell_QStyleOptionFrameV2(int version);
~QtScriptShell_QStyleOptionFrameV2();
QScriptValue __qtscript_self;
};
#endif // QTSCRIPTSHELL_QSTYLEOPTIONFRAMEV2_H
|