Changing Matlab’s Command Window colors

Yesterday I received an email asking if it was possible to programmatically change Matlab’s Command Window foreground and background colors. This is possible from the File/Preferences window, but requires interactive user actions. The question was whether it was possible to do so programmatically, in order to place the necessary commands in some script (for example, startup.m). This is important, for example, when we have two Matlab applications open at the same time and wish to visually distinguish between them.

After getting this email, one in a long list of similar questions I tackled over the past few years regarding Matlab’s undocumented/unsupported/hidden features, I decided it was time to start a blog on this broad subject. I do not know if there is any interest in the subject of this blog, so I would be extremely happy to hear feedback.

Changing Command-Window colors can be done programmatically in two manners: The first is by modifying system preferences. The issue of programmatic access to system preferences is detailed in another dedicated post. Here is the bottom line regarding the colors:

% Don't use system color
com.mathworks.services.Prefs.setBooleanPref('ColorsUseSystem',0);
 
% Use specified colors for foreground/background (instead of the default black on white)
com.mathworks.services.Prefs.setColorPref('ColorsBackground',java.awt.Color.yellow);
com.mathworks.services.ColorPrefs.notifyColorListeners('ColorsBackground');

and similarly for the foreground color, whose property name is called ‘ColorsText’. Note that colors can be specified in several alternative manners (see below).

This affects all Matlab text panes (Command Window, Command History, Workspace Browser etc.), for this and all future Matlab sessions. If you only wish to set the colors in the command window and not in all the other Matlab text panes, or if you only wish to modify this session, then forget the prefs method. Instead, simply use the following short code snippet (you may need to tweak it for particular Matlab versions) to change the colors of only the command text pane (that’s a Swing JTextArea, for those of you who are java-savvy).

cmdWinDoc = com.mathworks.mde.cmdwin.CmdWinDocument.getInstance;
listeners = cmdWinDoc.getDocumentListeners;
jTextArea = listeners(3);

Note: a safer way would be to loop on listeners until finding a JTextArea instance, since it is not assured to be the 3rd item in the listeners array.

Now you can set the colors (which apply immediately) using several alternative ways:

jTextArea.setBackground(java.awt.Color.yellow);
jTextArea.setBackground(java.awt.Color(1,1,0));
set(jTextArea,'Background','yellow');
set(jTextArea,'Background',[1,1,0]);

You can do the same with the ‘Foreground’ property.

Please let me know what you think of this post, or of this blog in general. Your feedback, as well as additional questions and suggestions are most welcome.

Yair Altman

altmany at gmail dot com

Related posts:

  1. Changing Matlab’s Command Window colors – part 2 The Matlab Command Window enables a limited degree of inline color customization - this post describes how to use it...
  2. cprintf – display formatted color text in the Command Window cprintf is a utility that utilized undocumented Matlab desktop functionalities to display color and underline-styled formatted text in the Command Window...
  3. EditorMacro v2 – setting Command Window key-bindings The EditorMacro utility was extended to support built-in Matlab Editor and Command-Window actions and key-bindings. This post describes the changes and the implementation details....
  4. Changing system preferences programmatically Matlab user/system preferences can be changed programmatically, from within your Matlab application or from the Matlab desktop command prompt. This post details how....
  5. Command Window text manipulation Special control characters can be used to format text output in Matlab's Command Window. ...
  6. Uitab colors, icons and images Matlab's semi-documented tab panels can be customized using some undocumented hacks...

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

Tags: ,

Bookmark and SharePrint Print

31 Responses to Changing Matlab’s Command Window colors

  1. Ben S says:

    Yair

    Thanks for addressing this point.

    In response to your question of is there an interest in undocumented/unsupported/hidden matlab features? YES, yes, and yes again.

    I look forward to reading and learning.

    If I come across other non trivial issues I will be sure to post here as well (it might attract your attention quicker than Matlab Central?!)

    take it easy
    Ben

    • Thanks for your feedback Ben – you are my first and as yet only commentator, so at least I know I’m not writing in a vacuum… :-)

      Dear readers – the more feedback I receive, the better I will be able to tune this blog into something that is interesting to you. So, if you have any preference at all, please leave a reply or shoot me an email (altmany at gmail), about anything: the length of my posts, how detailed you want to see the code snippets, whether you’re more interested in Java internals or undocumented features in plain Matlab functions – anything at all. I’ll do my best to accommodate your wishes and make this blog as interesting as possible,

      Yair

  2. Sid H says:

    Good work. I expect your work goes more into extending the capability of the gui and interface programming; My only thought is that matlab is a child to the windows shell environment and should have inherited all the .net properties/attributes too. So your stuff is a step in the right direction.

    Right now I am looking at generating (simple) dynamic html scripts using matlab guis to report collected data, don’t suppose you know of someone who’s done that already and published a collection of functions of that type. I know about the report generation feature that matlab has, but it’s customizability sucks and it does not handle all the data types very well.

    Best of luck and regards

    Sid

  3. Ben S says:

    Hi Yair

    I saw that memory monitor is on the TODO list.

    At the risk of being selfish(!), here is another suggestion. One of my frustrations concerns the memory management. I’m using release 2007b so maybe it improved in later versions anyway. However if not, here’s a brief description:

    “feature(‘memstats’)” gives me the size of the largest contiguous free block. This limits the maximum size of a variable I can use.
    As I run code & create variables the largest free block will only ever decrease in size. “clear”, “clear global”, “java.lang.System.gc” will clear variables and memory but appears not to increase the size of the largest free block. It is as if the memory is lost. Eventually, i quit and restart Matlab to start with a decent sized largest free block.

    So my question is (if you feel inclined) is their a nifty way to “give back” the memory, increase the size of the largest free block and avoid having to quit?

    all the very best
    Ben

    • Ben – in response to your question: I was able to recreate your predicament and nothing I tried worked, just like you said :-(
      This is actually a great topic to investigate since it stands to reason that there’s a Java hack somewhere to pack the memory.
      I’ll keep trying new ideas and if I come across something I’ll let you know.

      Yair

  4. Peter Navé says:

    Hello,
    I found your recipe for changing the background color of the command window very helpful. I have been looking for such an instruction for quite some time because I think that a tinted screen is easier on the eyes than white.
    Thank you and best wishes,
    Peter Navé
    2009-03-27

  5. shabby says:

    I stumbled on matlab’s save stdio feature recently; only appears to work with -nodesktop mode?

    matlab -r ‘x = rand(5,1);save stdio x;exit’ -nodesktop

  6. Pingback: cprintf - display formatted color text in the Command Window | Undocumented Matlab

  7. Pingback: Changing Matlab’s Command Window colors - part 2 | Undocumented Matlab

  8. Pingback: Changing system preferences programmatically | Undocumented Matlab

  9. Tal K says:

    Hi Yair.
    First of all, the undocumented Matlab stuff is very helpful, and it seems like you are a wizard in this field.
    In regard to this post, I have a different (yet related) inquiry.
    When creating a GUI programatically, I can select my GUI’s colors using the uicontrol property “BackgroundColor” and the figure property “Color”.
    However, I have encountered two annoying things:
    1. I cannot set the uimenu background color (it is system set)
    2. When creating a slider uicontrol, I can set the background color, but not the slider button itself and the arrow up/down buttons.

    Wanted to know whether you know how to do this.

    Thanks in advance, and keep doing this unusual and great service for the Matlab community.
    Tal.

    • Yair Altman says:

      Thanks Tal :-)

      1. uimenu background, font, icon, alignment etc. can be set by accessing the Java handle of the Matlab object. I plan to do an extensive post on this issue sometime soon. In the meantime, use my FindJObj utility on the Matlab File Exchange to view/get this handle:

      hmenu = uimenu(...);
      jmenu = findjobj(hmenu);
      set(jmenu, 'Background', java.awt.Color.yellow);
      jmenu.setBackground(java.awt.Color(1,0.8,0));  % alternative
      set(jmenu,'ToolTipText','something or other...');  
      % etc. for other properties

      2. See my previous paragraph vis-a-vis FindJObj. In practice though, this is more difficult: the arrows are pre-configured (painted in runtime on top of two small button sub-components); I don’t know how to modify the slider button color – search the web for “change JScrollBar color”, since Matlab sliders are basically simple Java JScrollBar objects.

      Yair

    • Tal K says:

      Hi Yair.
      Thanks for your prompt reply.
      As I am working with Matlab 7.0.4 (my fault, I know…), findjobj() is encountering all kinds of compatibility problems. I might try to debug it sometime.
      Anyway, I will be looking forward for your next posts.

  10. Is it possible to set background transparency?

  11. Sitha says:

    Could you provide code underline text in matlab?

  12. Mimi says:

    Hi, Thanks for this code!

    It works, except when I use the %% to divide parts of an m-file. The part that I want to modify still has a mother-of-pearl colored background ( I’d prefer it to be black.)

    How do I change this??

    Thanks again.

  13. Egon says:

    Is it possible to have MATLAB change the whole Desktop color scheme (so instead of these XP-colors on Linux, colors that are more like MATLAB on Mac?)

    I can’t seem to wrap my head around the needed Java methods to actually change the general UI.

  14. Pingback: Modifying Matlab's Look-and-Feel | Undocumented Matlab

  15. Jan says:

    Hi,

    I’ve been trying to change the Title name string color to say green and the figure title bar color to say yellow so they match the company colors. Haven’t had much luck as neither is an option in Figure Properties. Did find that both follow the Windows Display Properties. Looked into the “matlab.prf” file but did not see any obvious fields to edit.

    Is it possible to edit the before mentioned colors?

    Thanks,

    Jan

    • @Jan – I believe that the figure title bar colors cannot be modified without hacking into the underlying OS. This is because Matlab uses java to draw the figure window, and Java in turn uses the underlying OS to set the appearance.

      However, you can customize your Look-and-Feel if you are adventurous…

  16. Jakub says:

    you saved my eyes, thanks

  17. Anubhav Jain says:

    Hi,
    I am facing problem in hiliting a line that is not connected to any block.Can anyone suggest me a way to do that .
    Regards,
    Anubhav Jain.

  18. Raj says:

    Hi,

    I ran the java commands as above. But only the color of the function browser (thin strip on the left side of the command window) changed. It became yellow and I couldn’t get it back to gray. So I had to change it to white. Maybe it is a compatibility issue with the new Matlab.

    I don’t know java so if you can help out in how to revert back to the original gray (light gray) color, that would be awesome.

    Also, isn’t the range of java.awt.Color from 0-255.
    Because gray is 211-211-211. And I am not able to enter that. Even 0.83 (211/255) didn’t work.

    I would appreciate any help.
    Thanks for the tutorial! :)

  19. Raj says:

    OK.. The following code worked:

    jTextArea.setBackground(java.awt.Color.lightGray);
    jTextArea.setBackground(java.awt.Color(.95,.95,.95));
    set(jTextArea,'Background','lightGray');
    set(jTextArea,'Background',[.95,.95,.95]);
    I was using "gray" instead of "lightGray".. :) 

Leave a Reply

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

*

<pre lang="matlab">
a = magic(3);
sum(a)
</pre>