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.
Are there hot keys (shortcuts) that enable interactive mouse controlled pan and zoom for a figure?
34 次查看(过去 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!
采纳的回答
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 个评论
Sean de Wolski
2015-3-5
To make changes to the menu, you'd have to do it programmatically. To make a selection change, just select:
更多回答(1 个)
Sean de Wolski
2015-2-24
The techniques in this might interest you
1 个评论
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 Center 和 File Exchange 中查找有关 Data Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!