필터 지우기
필터 지우기

How to tell how an uieditfield was exited?

조회 수: 10 (최근 30일)
David Aronstein
David Aronstein 2020년 2월 7일
댓글: David Aronstein 2021년 1월 26일
I have a uieditfield field for text input.
There seem to be at least three ways to indicate to the app that we are finished entering information into this field. The ValueChangedFcn is called when (1) the user presses Enter, (2) the user presses Tab, or (3) the user changes from the app to another program running on the computer.
Is there a way to figure out which of these three events occured? In particular, I'd like to catch (3) and ignore processing the current value of the field for the moment.

채택된 답변

Antonio Hortal
Antonio Hortal 2021년 1월 24일
편집: Antonio Hortal 2021년 1월 24일
I might be wrong, but you could try getting the CurrentKey property of the figure
function editFieldValueChangedCallback(src,evt)
fig = ancestor(src,'figure');
switch get(fig,'CurrentKey')
case 'return'
disp('enter was pressed!')
otherwise
disp('the user changed focus!')
end
  댓글 수: 3
Antonio Hortal
Antonio Hortal 2021년 1월 25일
Hmmm I am using 2020b.. maybe in 2019a the CurrentKey property of the uifigure was not fully supported.
I am using this simple code btw
f = uifigure();
ef = uieditfield(f, 'ValueChangedFcn', @(src,evt) valueChangedCallback(src,evt));
function valueChangedCallback(src,~)
% Find the figure and get the last key pressed when the ValueChangedFcn is triggered
f = ancestor(src,'figure');
key = get(f,'CurrentKey');
switch key
case 'return'
disp('User pressed enter')
otherwise
disp('User changed focus')
end
end
Maybe CurrentCharacter works in 2019a? (Im a bit lazy to check release notes haha)
function valueChangedCallback(src,~)
f = ancestor(src,'figure');
key = get(f,'CurrentCharacter');
switch key
case {char(10),char(13)} % char(10) for windows and (13) for macs I think
disp('User pressed enter')
otherwise
disp('User changed focus')
end
end
If not, you could still attach a WindowKeyPressFcn callback to the uifigure. Both ValueChangedFcn and WindowKeyPressFcn will trigger when you press enter, and you just have to think on some code something so that the 2 callbacks exchange info.
I hope this helps :)
David Aronstein
David Aronstein 2021년 1월 26일
I beg your pardon, Antonio! I tried your original solution again today in both R2019a and R2020a and it worked perfectly, thank you!! I don't know what I did wrong when I tried this and wrote back yesterday.

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

추가 답변 (1개)

Bhargavi Maganuru
Bhargavi Maganuru 2020년 2월 18일
After typing in the edit field, if you click anywhere outside the edit field, editFieldValueChanged callback will be triggered.
Add the following line of code in the callback function.
disp("exited from editfield");
So whenever this message is displayed, user has clicked outside the app.
Hope this helps!
  댓글 수: 3
Bhargavi Maganuru
Bhargavi Maganuru 2020년 2월 19일
HI David,
As of now there is no programmatic way to tell which of the events has triggered the callback.
David Aronstein
David Aronstein 2020년 2월 19일
Thank you! That's disappointing.

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

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

제품


릴리스

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by