Pull String out of Edit Text without user hitting enter

조회 수: 12 (최근 30일)
Michael
Michael 2011년 6월 7일
댓글: Bhushan N 2016년 12월 1일
Hi,
I am building a GUI with an EditText box and I want to pull the String out of it in my program, essentially as follows:
s = get(handles.edittext, 'String');
However, I want to get whatever the user currently has typed in there, which appears only to update after the user hits enter, etc.
I have tried updating the edittext box programmatically by calling its callback, but it still does not give the currently typed String (it gives the prior-updated string). Example:
edittext_Callback(handles.edittext, [], handles);
I have also tried updating the focus using the 'uicontrol' function. Example:
uicontrol(handles.edittext);
But again, it only gives the string that was in the box when the user caused it to update.
I am at a loss. Is there any way to snag what the user currently has typed in the EditText without the user having to cause it to update manually?

채택된 답변

Matt Fig
Matt Fig 2011년 6월 7일
The only way I know to do this (that doesn't involve Java), is to capture the user's input using the keypressfcn. As the user types, store the string using the keypressfcn and concatenation, then if the user does hit return clear the stored variable from the callback.
Here is a small example. You may want to add more checks, but I tried to cover enough to make it functional.
function [] = gui_keypress()
% Typing in the editbox puts the string in a textbox.
S.fh = figure('units','pixels',...
'position',[500 500 200 100],...
'menubar','none',...
'name','keypress',...
'numbertitle','off',...
'resize','off');
S.ed = uicontrol('style','edit',...
'unit','pix',...
'position',[10 10 180 30],...
'fontsize',14,...
'callback',@ed_call,...
'keypressfcn',@ed_kpfcn);
S.tx = uicontrol('style','text',...
'units','pix',...
'position',[10 60 180 30]);
S.STR = [];
guidata(S.fh,S);
uicontrol(S.ed)
function [] = ed_call(H,E)
% Callback for editbox.
S = guidata(gcbf); % Get the structure.
set(S.tx,'str',get(S.ed,'string'));
S.STR = [];
guidata(gcbf,S)
function [] = ed_kpfcn(H,E)
% Keypressfcn for editbox
S = guidata(gcbf); % Get the structure.
if strcmp(E.Key,'backspace')
S.STR = S.STR(1:end-1);
elseif isempty(E.Character)
return
else
S.STR = [S.STR E.Character];
end
set(S.tx,'string',S.STR)
guidata(gcbf,S)
  댓글 수: 3
Matt Fig
Matt Fig 2011년 6월 7일
You're welcome!
Matt Fig
Matt Fig 2011년 6월 7일
I changed the engine to make it more robust than my first post...

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

추가 답변 (2개)

Jim Hokanson
Jim Hokanson 2013년 4월 1일
Here's another approach involving changing control focus.
Here's some relevant documentation, with summaries for 2013a:
edit text boxes don't update their strings until you click somewhere else, press enter (single line) or ctl+enter (multiline)
huh?
for multiline editable text boxes, the string property is set when the control loses focus
oh!
With some help from the always helpful Jan:
My approach involves setting the focus to a small text box and then setting the focus back. I haven't played with the extent to which the static text box needs to be visible.
uicontrol(obj.h.static__busy_status) %Set focus to another control
uicontrol(obj.h.edit__cmd_window) %Set it back
get(obj.h.edit__cmd_window,'String') %Returns updated string
For me with 2013a the focus switch is imperceptible, returning the cursor to where I was typing without any noticeable blinking.
  댓글 수: 1
Bhushan N
Bhushan N 2016년 12월 1일
Jim,
This kind of works cause when the focus returns to edit text box, it selects all the text. So if you are typing like normal it keeps replacing the text.
Bhushan

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


Pooya89
Pooya89 2013년 11월 17일
Using Yair's FingJObj and by accessing the java properties it is possible: (As he explains in this example)
jEditbox = findjobj(hEditbox); % get java object
set(jEditbox, 'KeyPressedCallback', @Key_Press);
function Key_Press(jEditbox, eventData)
char(jEditbox.getText)
end

카테고리

Help CenterFile Exchange에서 Text Data Preparation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by