addlistener syntax not recognized in R2014b
Ältere Kommentare anzeigen
I've just installed R2014b, and have been testing various pieces of my code library fearful of what the new Graphics System is going to break. One routine I have relies on a File Exchange submission with the following local function,
function localSetupPositionListener(hFig,imAxes)
% helper function to sets up listeners for resizing, so we can detect if
% we would need to change the fontsize
PostPositionListener = handle.listener(hFig,'ResizeEvent',...
{@localPostPositionListener,imAxes});
setappdata(hFig,'KenFigResizeListeners',PostPositionListener);
end
function localSetupPositionListener(hFig,imAxes)
% helper function to sets up listeners for resizing, so we can detect if
% we would need to change the fontsize
PostPositionListener = addlistener(hFig,'SizeChanged',...
{@localPostPositionListener,imAxes});
setappdata(hFig,'KenFigResizeListeners',PostPositionListener);
end
But when I run the code, the line that has changed throws an error,
No method 'addlistener' with matching signature found for class 'matlab.ui.Figure'.
Error in TextZoomable>localSetupPositionListener (line 80)
PostPositionListener = addlistener(hFig,'SizeChanged',...
Error in TextZoomable (line 58)
localSetupPositionListener(hFig,hAx);
Any ideas why the error occurs and, as importantly, why the app doesn't catch it (so I can be on the lookout for other instances where it may fail)?
2 Kommentare
Adam
am 18 Nov. 2014
Silly question: have you tried just reverting it to the previous if it was changed by the updater app?
I am on R2014a at home and addlistener does not work with that syntax there, but the top version does (well, I can type the listener line without a syntax error, I haven't tried hooking it up somewhere live.
Matt J
am 18 Nov. 2014
Akzeptierte Antwort
Weitere Antworten (2)
Ian Noell
am 27 Nov. 2014
1 Stimme
As matt dash said, addlistener needs a function handle or an anonymous function for the callback. The cell array syntax was supported by handle.listener (although undocumented) but is not for event.listener/addlistener.
I have added a note to the message in the MATLAB Graphics Updater app and updated the submission. You will need to make manual changes to your code to update the callback.
Guillaume
am 18 Nov. 2014
0 Stimmen
Which version are you upgrading from?
Your old code gives me the same error in R2013b. The problem in either version is that addlistener / event.listener expects a function handle for the third argument, whereas you're passing a cell array, the purpose of which I'm not sure.
1 Kommentar
Kategorien
Mehr zu Creating, Deleting, and Querying Graphics Objects finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!