I have a QGraphicsScene
with many QGraphicsItem
like circle
, rectangle
, polylines
, arc
etc.
Every QGraphicsItem
has a name. And I have a Search
feature which highlights searched items using that name. When scene
contains fewer items, highlighted items are seen properly. But when scene
contains many items ( 100 + ) then identifying the highlighted item becomes difficult. For that I need to scroll up - down or left - right to check where is that highlighted item is.
So I want my highlighted item to be easily recognizable.
For that I was suggested, some approach like
- Take searched item in front
Or - Add some marker
But I do not know, how to implement it , which Qt class should I use etc.