How to save and restore entire GUI state in GUIDE?

11 vues (au cours des 30 derniers jours)
ZedRedLed
ZedRedLed le 3 Juil 2020
Commenté : Rik le 7 Juil 2020
I'm working on a large GUI in GUIDE with many different buttons, plots and popupmenus etc.. For the sake of error handling I would like to use try and catch statements to detect and output unexpected error messages. In combination with this, I would like to be able to backup the state of my entire GUI before I execute the code in a callback and then restore it if an error occurs.
Is there an efficient and general way to do this, without having to manually read out every component i alter?
I have tried working with findobj to automatically get all GUI Objects that fulfill different conditions to for example activate large parts of the GUI at once. This works well for specific cases like finding all deactivated UIControl Elements:
handles.InterfaceObjOff = findobj(handles.figure1, 'Enable', 'off', 'Visible', 'on', 'Type', 'UIControl');
but I am looking for something to read out everything, including entered values, strings in popupmenus, plotted lines etc. for different types of GUI elements.
I have also tried using guidata to backup the state of my GUI, but this does not work to actually restore the state of the GUI itself, only the variables stored within it.
Thanks in advance!
  1 commentaire
Rik
Rik le 7 Juil 2020
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread.

Connectez-vous pour commenter.

Réponses (1)

Bhargavi Maganuru
Bhargavi Maganuru le 7 Juil 2020
Hi,
You can write a custom function to save and restore GUI session.
You can refer this link, it might help you.

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by