I am trying to develop a simple (?) application for N900 using Qt, but I don't even know when to start. I want to tap anywhere in the screen, keep that position, render an object through OpenGL ES there and then be able to pick it and modify its appearance. So, my questions:
- From what I've read N900 doesn't support touch events. Nevertheless, the touch examples that exist in QtSDK (almost) worked for me. Should I go for QGesture then or maybe with QtMouse for the tapping (or QTouchEvent)?
- Supposing I have the tapped position coordinates, I should later transform them from screen coordinates to object coordinates, if I understand correctly, right?
- For the 'picking object' part, does OpenGL ES 2.0 support the select buffer? Or otherwise, how could that be implemented (ray tracing) ?
Any hint to get me started would be very appreciated!!!