CurrentCharacter properties not working as expected

14 visualizaciones (últimos 30 días)
Luca Amerio
Luca Amerio el 22 de Nov. de 2016
Comentada: Luca Amerio el 25 de Nov. de 2016
Hi everybody.
if I run the code
h=figure;
h.CurrentCharacter=char(i);
disp(double(h.CurrentCharacter))
for i=1,2...127 I obtain what I expect, that is to display the same value I stored in "CurrentCharacter". After 127 however things start getting weird. For i=128 for example it returns me 65408, for 256 it returns an empty variable, while for 257 it returns 1.
I know 127 are the ASCII character, but is there a way to avid this behavior?
----------------------------
The reason I want to set
h.CurrentCharacter=65000;
is that in the middle of a script I have a "" loop with
while true
waitfor(fig, 'CurrentCharacter')
switch fig.CurrentCharacter
case 13 %User pressed Enter
case 27 %User pressed Esc
etc...
end
I would like to set a popup menu with the callback
dataTypePopup=uicontrol(popupFig,'Style','popup',...
'Callback',{@(obj,ev,fig) set(fig,'CurrentCharacter',char(65400+obj.Value)),fig}
in order to trigger an option in the while loop. Of course I want to set a character that the user will NEVER trigger by itself and char(65401) was actually a good candidate...

Respuesta aceptada

Jan
Jan el 23 de Nov. de 2016
Editada: Jan el 23 de Nov. de 2016
Using 'CurrentCharacter' to trigger an event is a really bad idea. This figure property contains the value of the last pressed key of the keyboard during the figure is the active window. Do not write values there.
Store informations either in the 'UserData' or 'ApplicationData' of the figure. Then you can let the WindowsKeypressFcn write the current character (if a key is pressed and only if a key is pressed) to the 'UserData' also:
hFig = figure('WindowKeyPressFcn', @myKeyPress);
dataTypePopup = uicontrol(hFig, 'Style', 'popup',...
'Callback',{@(obj,ev,fig) set(fig, 'UserData', 65400+obj.Value), fig}
...
function myKeyPress(hFig, EventData)
set(hFig, 'UserData', double(EventData.Key))
Now in the main routine:
waitfor(fig, 'UserData')
switch fig.UserData
  1 comentario
Luca Amerio
Luca Amerio el 25 de Nov. de 2016
Thank you Jan! You are always incredibly usefull!
Your solution is way better than mine.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by