CloseRequestFcn of GUI not working with wrong current folder

11 visualizaciones (últimos 30 días)
I have in the GUI m-file a 'figure1_CloseRequestFcn'. This works fine as long the current Matlab folder is not changed.
When I run another file from another folder, I cannot quit Matlab unless I make the GUI-folder to the current folder.
With the standard CloseRequestFcn in the GUI property I can allways quit Matlab, even if the current folder is not the GUI folder.
Is there a way to insert into the GUI-figure-property something like:
'try;MyGUI(''figure1_CloseRequestFcn'',hObject,eventdata,guidata(hObject));catch;closereq;end;' ?
I do not want to change anything like the search path in Matlab.

Respuesta aceptada

Walter Roberson
Walter Roberson el 24 de En. de 2021
You have coded figure1_CloseRequestFcn in a way that calls upon a function that you expect to be in the MATLAB path, but turns out not to be because you relied upon it being in the current directory instead of creating a specific MATLAB path entry for the appropriate directory.
What you can do, is in the OpenFcn for the GUI, use mfilename() to detect where the .m file for the GUI itself is located. fileparts() to get the directory, and cd to that directory, recording the old directory. Now take the handle of the function that you need in the close request function, and store it in handles; then cd back to the old directory.
Then in the close request function, pull the handle of the function out of the handles structure, and use it to call the needed function, instead of counting on the function being in the current directory. When you construct a handle of a function using @ then MATLAB remembers the directory the code is located in and so knows where to find it.
  6 comentarios
Peter Seibold
Peter Seibold el 25 de En. de 2021
Walter, thank you very much for your help! I understand now much more what is going on with '@'.
To make it clear for other users how I solved the problem, here my code:
function TestCloseReq_OpeningFcn(hObject, eventdata, handles, varargin)
set(handles.figure1,'CloseRequestFcn',{@CloseTestCloseReq,handles});
handles.output = hObject;
guidata(hObject, handles);
function CloseTestCloseReq(hObject, eventdata, handles)
disp('Closing')
delete(hObject);
Both functions are inside of the GUI m-file.
Now you can run the GUI, change the working directory and close the GUI figure.
Walter Roberson
Walter Roberson el 26 de En. de 2021
Yup, that should work fine, even if the GUI's .m was invoked whent the user is cd'd to another directory.

Iniciar sesión para comentar.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by