Close (all) Variable Editor windows?

72 vues (au cours des 30 derniers jours)
jkr
jkr le 20 Juin 2017
Commenté : Sanjeev Chaubey le 22 Avr 2022
During development I often open many figures (plotting variables of interest) and many Variable Editor windows, often digging several layers deep into structs, generating lots of Variable Editor windows. When I am ready to move on to some next step, I can easily close all the figures with 'close all'. But I cannot find a way to close all the Variable Editor windows (so typically, I close each, of many, by clicking on the red dot (in OSX)). Not impossible, but tedious. There seems to be no complement to openvar. Am I missing something?

Réponse acceptée

Jan
Jan le 20 Juin 2017
Modifié(e) : Jan le 20 Juin 2017
This closes all docked and undocked ArrayEditors:
desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
Titles = desktop.getClientTitles;
for k = 1:numel(Titles)
Client = desktop.getClient(Titles(k));
if ~isempty(Client) & ...
strcmp(char(Client.getClass.getName), 'com.mathworks.mde.array.ArrayEditor')
Client.close();
end
end
This is inspired by the link posted by Image Analyst.
  5 commentaires
Michele Magni
Michele Magni le 8 Déc 2021
Beautiful.
Sanjeev Chaubey
Sanjeev Chaubey le 22 Avr 2022
too smart, you are awesome !

Connectez-vous pour commenter.

Plus de réponses (1)

Image Analyst
Image Analyst le 20 Juin 2017
  2 commentaires
jkr
jkr le 20 Juin 2017
I didn't see how this helps. It addresses a different problem.
On the other hand, I've found something simple that works for me. Simply dock the Variable Editor. It is then easy to open bunches of variables, and close them all at once, by closing the Variable Editor tab. I had been opening each variable, individually, undocked. I can still undock a variable for particularly close inspection. I have to close such a window separately, but all the parents I had to wade through to reach the data of interest remain docked, and easily closed with a click.
Image Analyst
Image Analyst le 21 Juin 2017
It was not intended to be a complete solution, though I can see how you might have thought so. It was intended to be a lead to figure out how you can do it. Fortunately, Jan got the hint and figured it out for you. I knew there was nothing in base MATLAB to do what you wanted and that it had to be an undocumented thing. For these kinds of special, tricky things, we always go to Yair Altman's undocumented MATLAB site. If Yair doesn't know how to do it, then it just can't be done.
You can also "Vote" for Jan's answer to give him more reputation points (like I've done).

Connectez-vous pour commenter.

Catégories

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

Community Treasure Hunt

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

Start Hunting!

Translated by