Keeping GUIs responsive during long-running tasks

前端 未结 9 2091
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-14 22:28

Keeping the GUI responsive while the application does some CPU-heavy processing is one of the challenges of effective GUI programming.

Here\'s a good discussion of h

9条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-14 23:27

    Working with Qt/C++ for Win32.

    We divide the major work units into different processes. The GUI runs as a separate process and is able to command/receive data from the "worker" processes as needed. Works nicely in todays multi-core world.

提交回复
热议问题