colourterm/colourterm/cwebview.py

16 lines
432 B
Python
Raw Normal View History

2013-12-05 14:16:09 +00:00
"""
This module contains a child class of QWebView in order to reimplement the wheelEvent event handler.
"""
from PyQt4 import QtCore, QtWebKit
class CWebView(QtWebKit.QWebView):
"""
This is a reimplementation of QWebView in order to override the wheelEvent method.
"""
onScroll = QtCore.pyqtSignal()
def wheelEvent(self, event):
self.onScroll.emit()
QtWebKit.QWebView.wheelEvent(self, event)