What I suggested in a different thread by this poster on the same overall design was that if each page were a separate QGraphicsItem, then these could all be placed in the same scene. If he wants to display only one of the pages in a particular QGraphicsView, then he should set that view's scene rect to match the rect occupied by the item in the scene's scene rect. To display all of the pages in a single view, then the view's scene rect should match the scene's scene rect.
I think part of the problem is that it looks like he has created all of the items with the same size and position in the QGraphicsScene, instead of following my suggestion to create them with a size of 1/4 the scene rect and position them side-by-side or in a 2 x 2 array. The scene rect should be sized to 4 times the page size, with the actual dimensions depending on the page arrangement.
Bookmarks