CurrentCharacter properties not working as expected

13 vues (au cours des 30 derniers jours)
Luca Amerio
Luca Amerio le 22 Nov 2016
Commenté : Luca Amerio le 25 Nov 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...

Réponse acceptée

Jan
Jan le 23 Nov 2016
Modifié(e) : Jan le 23 Nov 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 commentaire
Luca Amerio
Luca Amerio le 25 Nov 2016
Thank you Jan! You are always incredibly usefull!
Your solution is way better than mine.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by