Hittest axes with WindowWheelScrollFcn callback

6 vues (au cours des 30 derniers jours)
Bjarke Skogstad Larsen
Bjarke Skogstad Larsen le 29 Juin 2018
I am attempting to make a GUI that has interaction using the mouse wheel, and the GUI behavior should depend on which element the mouse cursor is over when the mouse wheel is used. There are multiple axes objects, and I have previously (probably around 2012) used hittest to check which axes the mouse cursor was hovering over. However, this no longer works unless I first use mouse click on the axes.
It seems like an odd behavior imo. Is there any way to achieve what I want without having to click on the axes first?
  1 commentaire
Bjarke Skogstad Larsen
Bjarke Skogstad Larsen le 29 Juin 2018
Example code:
function pickHit2
f = figure;
ax = axes;
p1 = patch(rand(1,3),rand(1,3),'r');
p2 = patch(rand(1,3),rand(1,3),'b');
set(f,'WindowScrollWheelFcn',@hitresult);
function hitresult(obj,event)
hObj = hittest(obj);
switch hObj
case f
disp('Figure');
case ax
disp('Axes');
case p1
disp('Patch (Red)');
case p2
disp('Patch (Blue)');
end
end
end

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 29 Juin 2018
  2 commentaires
Bjarke Skogstad Larsen
Bjarke Skogstad Larsen le 29 Juin 2018
Thank you for your answer. This does seem to work as I intended but only when the axes are direct children of the figure. Unfortunately, the GUI I'm designing uses panels to tab between views, so it won't work for it :-(
Example code to show the problem:
function pickHit3
f = figure;
p = uipanel(f);
ax1 = axes(p,'Position',[0.1 0.1 0.3 0.8]);
ax2 = axes(p,'Position',[0.6 0.1 0.3 0.8]);
set(f,'WindowScrollWheelFcn',@hitresult);
function hitresult(obj,event)
hObj = overobj('axes');
if ~isempty(hObj)
switch hObj
case ax1
disp('Axes (Left)');
case ax2
disp('Axes (Right)');
end
else
disp('No Axes under cursor');
end
end
end
Bjarke Skogstad Larsen
Bjarke Skogstad Larsen le 29 Juin 2018
Sorry, I missed the "2" :-) It works with the modified version supplied by your link, thanks!

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by