Nice work so far. The graphicsEditorWidget is good to keep for ui interface purposes. You can use it to connect mouse and keyboard events to appropriate slots within both your View and Scene. To sub-class you'll need an entirely new class (I'll call it MyGraphicsView for lack of a better name). Declare it as follows:
Qt Code:
  1. class MyGraphicsView : public QGraphicsView
  2. {
  3. Q_OBJECT
  4. public:
  5. MyGraphicsView(QGraphicsScene*, QWidget* parent = 0);
  6. protected slots: //Use this if you want the zoom features
  7. void wheelEvent(QWheelEvent* event);
  8. }
To copy to clipboard, switch view to plain text mode 
The constructor is fairly straightforward:
Qt Code:
  1. MyGraphicsView::MyGraphicsView(QGraphicsScene* s, QWidget* parent) : QGraphicsView(s, parent) { }
To copy to clipboard, switch view to plain text mode 
I'll let you fill in other class features as you see fit, but I suggest the wheel event function looks something like:
Qt Code:
  1. void MyGraphicsView::wheelEvent(QWheelEvent *event)
  2. {
  3. if(event->delta() > 0)
  4. scale(1.1111,1.1111);
  5. else
  6. scale(0.9,0.9);
  7. }
To copy to clipboard, switch view to plain text mode 
Finally, to actually use the View, change line 11 in your code above to:
Qt Code:
  1. MyGraphicsView* graphView = new MyGraphicsView(graphScene);
To copy to clipboard, switch view to plain text mode 
See if that get's you going on how this all works.