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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
|
#ifndef QTSCRIPTSHELL_QSCROLLBAR_H
#define QTSCRIPTSHELL_QSCROLLBAR_H
#include <qscrollbar.h>
#include <QtScript/qscriptvalue.h>
class QtScriptShell_QScrollBar : public QScrollBar
{
public:
QtScriptShell_QScrollBar(QWidget* parent = 0);
QtScriptShell_QScrollBar(Qt::Orientation arg__1, QWidget* parent = 0);
~QtScriptShell_QScrollBar();
void actionEvent(QActionEvent* arg__1);
void changeEvent(QEvent* e);
void childEvent(QChildEvent* arg__1);
void closeEvent(QCloseEvent* arg__1);
void contextMenuEvent(QContextMenuEvent* arg__1);
void customEvent(QEvent* arg__1);
int devType() const;
void dragEnterEvent(QDragEnterEvent* arg__1);
void dragLeaveEvent(QDragLeaveEvent* arg__1);
void dragMoveEvent(QDragMoveEvent* arg__1);
void dropEvent(QDropEvent* arg__1);
void enterEvent(QEvent* arg__1);
bool event(QEvent* event);
bool eventFilter(QObject* arg__1, QEvent* arg__2);
void focusInEvent(QFocusEvent* arg__1);
bool focusNextPrevChild(bool next);
void focusOutEvent(QFocusEvent* arg__1);
int heightForWidth(int arg__1) const;
void hideEvent(QHideEvent* arg__1);
void inputMethodEvent(QInputMethodEvent* arg__1);
QVariant inputMethodQuery(Qt::InputMethodQuery arg__1) const;
void keyPressEvent(QKeyEvent* ev);
void keyReleaseEvent(QKeyEvent* arg__1);
void languageChange();
void leaveEvent(QEvent* arg__1);
int metric(QPaintDevice::PaintDeviceMetric arg__1) const;
QSize minimumSizeHint() const;
void mouseDoubleClickEvent(QMouseEvent* arg__1);
void mouseMoveEvent(QMouseEvent* arg__1);
void mousePressEvent(QMouseEvent* arg__1);
void mouseReleaseEvent(QMouseEvent* arg__1);
void moveEvent(QMoveEvent* arg__1);
QPaintEngine* paintEngine() const;
void paintEvent(QPaintEvent* arg__1);
void resizeEvent(QResizeEvent* arg__1);
void showEvent(QShowEvent* arg__1);
void tabletEvent(QTabletEvent* arg__1);
void timerEvent(QTimerEvent* arg__1);
void wheelEvent(QWheelEvent* e);
QScriptValue __qtscript_self;
};
#endif // QTSCRIPTSHELL_QSCROLLBAR_H
|