Get mouse down and mouse up events from slider
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Etaoin Shrdlu
el 8 de Dic. de 2016
Comentada: Jan
el 11 de Dic. de 2016
I am implementing (in R2016a) a continuous slider using a listener as follows:
sld = uicontrol('Style', 'slider');
sld.addlistener('ContinuousValueChange', @(src, evt) callbk(src, evt));
What I also want to do is to have callbacks when the mouse is first clicked on the slider and then when it is released. I can't find any appropriate events to do this in the uicontrol class.
Does anyone have suggestions?
0 comentarios
Respuesta aceptada
Jan
el 9 de Dic. de 2016
Editada: Jan
el 9 de Dic. de 2016
The standard callback of the slider is called, when the mouse is released:
function main
sld = uicontrol('Style', 'slider', 'Callback', {@callbk, 'released'});
sld.addlistener('ContinuousValueChange', @(h, e) callbk(h, e, 'moved'));
end
function callbk(SliderH, EventData, Event)
disp(Event)
end
The WindowButtonDownFcn does not trigger, when the mouse is over the slider.
Then Java helps:
function main
hSlider = uicontrol('style','slider');
jScrollBar = findjobj(hSlider);
jScrollBar.AdjustmentValueChangedCallback = @(h,e) callbk(h, e, 'moved');
jScrollBar.MousePressedCallback = @(h,e) callbk(h, e, 'clicked');
jScrollBar.MouseReleasedCallback = @(h,e) callbk(h, e, 'released');
end
function callbk(SliderH, EventData, Event)
disp(Event)
end
2 comentarios
Jan
el 11 de Dic. de 2016
@Etaoin: See the MouseClickedCallback. Further events: http://undocumentedmatlab.com/blog/uicontrol-callbacks
Más respuestas (1)
Walter Roberson
el 8 de Dic. de 2016
I do not know if there are any listeners that can be configured for this. If there are not, then the figure property WindowButtonUpFcn is the only mouse-release callback.
4 comentarios
Jan
el 9 de Dic. de 2016
You do not need the WindowButtonUpFcn, because the slider's Callback performs this action already.
Walter Roberson
el 9 de Dic. de 2016
However if you have set the slider to disable then the slider's callback would not be active.
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!