The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#include <qevent.h>

struct QMouseEvent : QEvent {
    QMouseEvent(const QMouseEvent &);
    QMouseEvent(int, const QPoint &, int, int);
    int button() const;
    const QPoint &pos() const;
    int state() const;
    int x() const;
    int y() const;
} Qt::MouseEvent;