I want to write a "infinite scrolling" list widget. The scrolling should happen automatically based on a timer. There won't be any user-interaction. The list contains items 0-100 for example. If the scroll-area reaches item 100 the next item being shown should be item 1 and so on (like a scrolling text sign).
I hope you get what I want ;)
How can I implement this in a subclass of QListWidget? Or is it better not to use QListWidget and write my own class to do this?