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