Architecture of interaction modes ("paint tools") for a 3D paint program

Posted by Bernhard Kausler on Programmers See other posts from Programmers or by Bernhard Kausler
Published on 2011-09-14T10:18:59Z Indexed on 2012/11/17 11:25 UTC
Read the original article Hit count: 328

We are developing a Qt-based application to navigate through and paint on a volume treated as a 3D pixel graphic. The layout of the app consists of three orthogonal slice views on which the user may paint stuff like dots, circles etc. and also erase already painted pixels. Think of a 3D Gimp or MS Paint.

How would you design the the architecture for the different interaction modes (i.e. paint tools)?

My idea is:

  • use the MVC pattern
  • have a separate controler for every interaction mode
  • install an event filter on all three slice views to collect all incoming user interaction events (mouse, keyboard)
  • redirect the events to the currently active interaction controler

I would appreciate critical comments on that idea.

© Programmers or respective owner

Related posts about architecture

Related posts about mvc