Artifact fbc8ee55812d1acb3c3b2bc31be7533e8a112822:
- File src/CustomWebView.h — part of check-in [c2c1b42f96] at 2013-01-13 10:36:07 on branch trunk — - Replaced the QWebView with a custom widget - Added support form Back and Forward mouse buttons to webview (user: kostas size: 293)
#ifndef CUSTOMWEBVIEW_H #define CUSTOMWEBVIEW_H #include <QWebView> class CustomWebView : public QWebView { Q_OBJECT public: explicit CustomWebView(QWidget *parent = 0); signals: public slots: protected: virtual void mousePressEvent(QMouseEvent *event); }; #endif // CUSTOMWEBVIEW_H