Pan mode control via keyboard

Hi! I have a problem. If I set command "pan" in the KeypressFcn of a GUI, so that I can use a key to control the pan mode (e.g. "P"). If the pan mode is not on, there is no problem to activate the pan mode. But if I press the key again, then the KeypressFcn will no more be invoked.
If there anyway to let the key alway control Pan on and Pan off?
Thanks

답변 (1개)

Walter Roberson
Walter Roberson 2012년 2월 28일

0 개 추천

댓글 수: 2

SSOI SS
SSOI SS 2012년 2월 28일
Hi Walter, thanks, turning off the WindowListenerHandles is definitive not the solution for me. I attachted an example to show the problem:
function exampleGUI
hF = figure;
set(hF, 'WindowKeyPressFcn', @figKeyPressCallback);
function figKeyPressCallback(fHandle, EventData)
% add some keyshortcuts to SignalViewer
Key = get(fHandle, 'CurrentCharacter');
switch Key
case 'p'
pan;
end
figure(hF);
end
end
There is no way to let the p key always control the pan function ....
Walter Roberson
Walter Roberson 2012년 2월 28일
You turn on pan, you use the Jedi Mind Trick on the listeners, you install a new key press callback. The new key press callback handles everything the regular callback would but also looks for 'p' and if it finds it then then it removes the trick callback and wakes up the listeners and turns pan off.

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

질문:

2012년 2월 28일

Community Treasure Hunt

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

Start Hunting!

Translated by