So, if I figure out this correctly, QGraphicsItem are (abstract) graphics items which belong to one QGraphicsScene (which is scene manager basically).
QGraphicsView is specific "view" into that scene and multiple views can view same scene.
If I were to have 3 views viewing on same scene, where one view views 1-5/10 items, other 5-10/10 and third view views all of them, I would need to have one scene and three views with some kind of filters which items to draw. Is this possible ?
How can I filter which QGraphicsItems are displayed in specific QGraphicsView?