Continuously pressing GUI slider arrow causes hanging

4 次查看(过去 30 天)
I've created a GUI with slider controls. When I make distinct individual clicks of the slider arrows, it works fine. When I hold the arrow buttons down continuously, however, the slider GUI freezes. I can continue to move the slider, but it has no effect on the rest of the GUI.
What appears to be happening is that by holding down the arrow, the slider callback gets launched many times repeatedly and faster than MATLAB can refresh the GUI graphics with the effect of the slider change. Ultimately, it chokes and cannot catch up.
Is there some way that the continuous-arrow-press condition is supposed to be processed? I notice that sliders have a ButtonDownFcn property, but I don't know what role it's supposed to play.
Or might there be some way to force the GUI to wait until all other graphics and uicontrol data in the figure are refreshed before re-executing the callback?

采纳的回答

Sean de Wolski
Sean de Wolski 2012-10-4
The ButtonDownFcn is disabled if the uicontrol is enabled. What is the BusyAction of the slider? If it is cancel that is self explanatory. Else I would suggest adding a drawnow in the callback to force a flush of the event queue.
  4 个评论
Matt J
Matt J 2012-10-5
编辑:Matt J 2012-10-5
The changes in the slider are now successfully inducing all the other effects in the gui window that they're intended to.
I don't know what other events could previously have been trying to interrupt the slider callback. There's nothing else running except the slider callback.
Matt J
Matt J 2012-10-5
编辑:Matt J 2012-10-5
Thanks. I think I understand now why BusyAction='cancel' is helping. Slider callback events are continuously/repeatedly fired while the arrow button is being held down. However, the only ones that are deleted from the queue are those that are attempting to interrupt the currently executing version of the callback (because the slider is also Interruptible='off'). The event scheduler resumes processing further triggerings of the callback once the current one has finished. This is enough to create the illusion of continuous sliding.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Graphics Object Properties 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by