Are there hot keys (shortcuts) that enable interactive mouse controlled pan and zoom for a figure?

75 次查看(过去 30 天)
I have MANY global satellite data swaths that are displayed with geoshow() output. We need to zoom into specific regions quickly and pan around in those areas with mouse (not keyboard) input. The behavior of the "zoom-in" magnifying glass and "pan" hand that are enabled from the Tools pull down menu of the default File toolbar for figures is perfect. What i'm looking for is a way to enable those controls (and switch between them) quickly with hotkeys instead of having to access that Tools pull down for every mode change.
Docs describe keyboard controls for zoom in and pan. Neither work in my figure output and we want the mouse (vs. keyboard) control anyway.
Thanks!
  1 个评论
Mike Wilson
Mike Wilson 2015-3-2
Thanks Sean. The techniques in your Zoom Key script are useful, but not exactly what I am looking for. What I need is a way to switch between pan and zoom with a hotkey. Right now I do it with a UI button that triggers either pan on; or zoom on; but that means users have to move the cursor to those buttons in order to trigger the interaction mode change. What I'm looking for is a way to do that with just a key press vs. a mouse click. I want to eliminate the cursor travel.

请先登录,再进行评论。

采纳的回答

Sean de Wolski
Sean de Wolski 2015-3-4
Here's a way that works by using the uimenu's accelerator option. There will be a menu you could use or ctrl + letter to activate:
function HotKeyAcc
% A figure
fig = figure('menubar','none');
% Add menus with Accelerators
mymenu = uimenu('Parent',fig,'Label','Hot Keys');
uimenu('Parent',mymenu,'Label','Zoom','Accelerator','z','Callback',@(src,evt)zoom(fig,'on'));
uimenu('Parent',mymenu,'Label','Rotate','Accelerator','r','Callback',@(src,evt)rotate3d(fig,'on'));
uimenu('Parent',mymenu,'Label','Pan','Accelerator','p','Callback',@(src,evt)pan(fig,'on'));
% Some plot
plot(rand(1,50))
end
  2 个评论
Mike Wilson
Mike Wilson 2015-3-4
Awesome! Thanks very much Sean!
I did have to swap out the letter p for Pan. Pressing Ctrl + P brings up the Print dialog. No worries with that. I would have swapped out the p anyway as I want this mode switch to be accessible with one hand.
A question - you mention that there will be a menu I can use. I assume that would be if I did NOT want to use the ctrl + letter to activate. How would I access that menu and make changes?
Thanks again!

请先登录,再进行评论。

更多回答(1 个)

Sean de Wolski
Sean de Wolski 2015-2-24
  1 个评论
Sean de Wolski
Sean de Wolski 2015-3-2
I don't know if that's possible or not. Attached I have what looks like it should work and it does for turning them on. However, the zoom/pan operation changes the 'KeyReleaseFcn' so it looks like you still have to disable it manually without a Hot Key.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Visual Exploration 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by