0

Is there a way to use things like Shader Effects, Particles, Sprites etc. without using QT Quick ? I'd like to make use of these effects but using only C++ code in, for example, a QGraphicsView.

joekr
  • 1,543
  • 1
  • 16
  • 22

1 Answers1

0

Yes, Qt provides ability to implement reach graphics via C++ code.

You need to take a look at Graphics View Framework.

Also there are nice examples provided with Qt. E.g. in Qt 4.8.3 I'd suggest to look at Graphics View and Painting partitions.

Alexander Stepaniuk
  • 6,217
  • 4
  • 31
  • 48
  • That does cover most of what i need but i can't find a way to add particle emitters in C++ code... – joekr Jan 18 '13 at 01:37