fuel-scm/src/CustomWebView.h
kostas 6f8e7a622a - Replaced the QWebView with a custom widget
- Added support form Back and Forward mouse buttons to webview


FossilOrigin-Name: c2c1b42f9604c19f48e4811c4eaf44d63aee60fe
2013-01-13 10:36:07 +00:00

22 lines
293 B
C++

#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