Qt 6.11 is out! See what's new in the release
blog
Control execution speed
General and Desktop
2
Posts
2
Posters
1.2k
Views
1
Watching
-
Hello guys! I need to code a new project in college. It's a cache memory execution simulator. Do you guys know how to control the execution speed of the code with Qt?
My idea is to put a slider at GUI to allow user control the execution speed.
-
Use QTimer, or QThread::sleep. I only hope you want to control execution speed of your simulation, not the whole application.