Apologies if this question is grounded in misconception. I'm new to both webkit and Qt.
I'm trying to get a feel for what circumstances would justify using a QGraphicsWebView instead of a simple QWebView object. I understand one is more complicated to implement than the other. What added fliexibility does use of the QGraphicsView class add? And why does Qt-Creator's default HTML5 application template use a QGraphicsWebView instead of a QWebView?
For example, if I wanted to implement mouse gesture-driven scrolling and zooming, or implement a custom scrolling implementation, would I need a QGraphicsWebView, or would a simple QWebView suffice?