Setting the Matlab desktop layout programmatically

The Matlab desktop enable users to switch between different presentation layouts of the desktop panels (Command Window, Workspace etc.). This has been supported as far back as Matlab 6 (R12), with newer Matlab releases adding improved functionality such as the ability to save user-defined layouts, as Kristin explained in the official Matlab desktop blog.

The only supported way to save and switch layouts is to use the desktop’s main menu. Since Kristin has posted her write-up, a few people have posted unanswered follow-up comments requesting to know how to programmatically save and switch layouts. I will now show how this can be done.

First, we need to get the Java handle of the Matlab desktop. We can then investigate this handle using the built-in methodsview function or my UIInspect utility on the File Exchange. We quickly see the relevant layout-related functions, which we can put to good use:

% Get the desktop's Java handle (Matlab 7 only)
desktop = com.mathworks.mde.desk.MLDesktop.getInstance;
 
% Inspect the available desktop functions
methodsview(desktop);
uiinspect(desktop);
 
% Save the current layout
desktop.saveLayout('Yair');
 
% Switch between different layouts
desktop.restoreLayout('Yair');
desktop.restoreLayout('Default');
desktop.restoreLayout('History and Command Window');

Desktop layout menu in Matlab 7

Desktop layout menu in Matlab 7

Note that trying to restore an invalid layout name simply does nothing (does not throw an error).

Also note that this relies heavily on unsupported and undocumented internal implementation, which may change without prior notice between Matlab releases. The code snippet above works on several Matlab 7 releases. But for Matlab 6.0 (R12), for example, it needs to be modified:

% Get the desktop's Java handle (Matlab 6 only)
desktop = com.mathworks.ide.desktop.MLDesktop.getMLDesktop;
 
% Inspect the available desktop functions
% Note: in Matlab 6, methodsview() did not accept object handles
methodsview('com.mathworks.ide.desktop.MLDesktop');
%uiinspect(desktop);  % UIINSPECT does not work on Matlab 6
 
% Save the current layout
% saving the desktop is not possible in Matlab 6
 
% Switch between different layouts
desktop.set5PanelLayout;
desktop.setTallLayout;
desktop.setShortLayout;
desktop.setDefaultDesktop;
desktop.setMolerMode;        % ='Command window only'

Desktop layout menu in Matlab 6

Desktop layout menu in Matlab 6

Note that Matlab 6 did not have a generic restoreLayout() function, instead using a few pre-defined setXXX(). Also note that Matlab 6 did not have the saveLayout() function (it did have saveDesktop(string,string) and restoreDesktop(string,string), which I leave as an excercise to readers).

This has been the first example of many useful things that can be done with the Matlab desktop handle. In the future I will describe other aspects. Perhaps the main lesson to be learned from this post is that essentially anything that can be done via the menu can also be done programmatically.

Categories: Desktop, High risk of breaking in future versions, Java

Tags: ,

Bookmark and SharePrint Print

6 Responses to Setting the Matlab desktop layout programmatically

  1. Troykapoika says:

    I would like to know if there is any way to organize (remove) layouts programmatically? I have played around with uiinspect looking for the calls to organize and remove layouts, but I haven’t been too successful. Also, do you know if there is anyway to share layouts between computers and load them into MATLAB without having to restart MATLAB?

    Thanks!

    Troy

  2. Sky says:

    This post inspired me to make a small utility (now on the File Exchange) that I personally use very often and find quite useful. Hopefully others will too. Thank you for the post. I’d love to get feedback on the file if you have any for me.

  3. Anderson says:

    Hi,

    Is there a command similar to desktop.closeCommandWindow, so that I can close/open editor window and figures window?

    Thank you

    • @Anderson:

      close(matlab.desktop.editor.findOpenDocument('myMatlabFunction.m'))  % close editor file
       
      close(findall(0, 'type','figure', 'name','My figure'))  % close a specific figure window
       
      jDesktop = com.mathworks.mde.desk.MLDesktop.getInstance;
      jDesktop.closeGroup('Figures');  % close the Figures container
  4. Dominik says:

    Dear Yair,

    thank you for all those helpful matlab secrets!
    I was wondering how to arrange figures in my tiled custom desktop group.
    The group I create like that:

    desktop.setDocumentArrangement(groupname, 2, java.awt.Dimension(nXPanes, nYPanes));

    And the figures I associate via:

     set(get(handle(o.figure), 'javaframe'), 'GroupName', groupname);

    Now I would ideally like to control in which pane the figures are created and, possibly be able to create tabbed figures within one pane.
    I would be delighted about any hint.

    Thank you!

Leave a Reply

Your email address will not be published. Required fields are marked *