views:

39

answers:

1

I'm writing a project to simulate creatures moving around a map. These can be represented by simple circles, but I need a map/grid and those circles animated on top of the map.

What elements should I use in QtDesigner to set up for this kind of GUI in my project? I've yet to do anything like this before

+1  A: 

You probably want a Graphics View to do it right, but if you don't care about performance, you might be able to get by with just setting the pos on a bunch of buttons to move them around on a widget (without a layout).

Ben