- Undocumented Matlab - https://undocumentedmatlab.com -

Transparent labels

Posted By Yair Altman On May 4, 2016 | 2 Comments

For the application that I will be presenting at next week’s MATLAB Expo [1] in Munich (presentation slides [2]), I wanted to add a text label at a specific location within the figure. The problem was, as you can clearly see from the screenshot below, that there is precious little available space for a new label. I could drive the entire content down to make space for it, but that would reduce the usable space for the actual contents, which is already at a premium:

Adding a transparent label to Matlab GUI (click for full-size image) [3]
Adding a transparent label to Matlab GUI (click for full-size image)

A natural place for the new label, as indicated, would be on top of the empty space next to the content’s sub-tabs (Correlation and Backtesting). This empty space is taken up by Matlab’s uitabgroup control, and we can simply place our label on top of it.
Well, easier said than done…

The obvious first attempt is to set the label’s position to [0,0,1,1] (in normalized units of its parent container). The label text will appear at the expected location, since Matlab labels are always top-aligned. However, the label’s opaque background will hide anything underneath (which is basically the entire content).
If we set the label’s position to something smaller (say, [.2,.9,.6,.1]), the label will now hide a much smaller portion of the content, but will still mask part of it (depending of the exact size of the figure) and for very small figure might actually make the label too small to display. Making the label background transparent will solve this dilemma.
Unfortunately, all Matlab controls are made opaque by default. Until recently there was not much that could be done about this, since all Matlab controls used heavyweight java.awt.Panel-derived containers that cannot be made transparent (details [4]). Fortunately, in HG2 (R2014b onward) containers are now lightweight javax.swing.JPanel-derived [5] and we can transform them and their contained control from opaque to non-opaque (i.e., having a transparent background).
There are 3 simple steps for this:

  1. Find the text label control’s underlying Java peer (control) reference handle. This can be done using my findjobj utility [6], or by direct access via the containing uipanel hierarchy (if the label is inside such a uipanel), as explained here [5].
  2. Set the Java label reference to be non-opaque (via its setOpaque() [7] method)
  3. Repaint the label via its repaint() method
% Create the Matlab text label uicontrol
hLabel = uicontrol('Style','text', 'Parent',hPanel, 'Units','norm', 'Pos',[0,0,1,1], 'String','Results for BERY / PKG (1 hour)');
% Get the underlying Java peer (control) reference
jLabel = findjobj(hLabel);
%jLabel = hPanel.JavaFrame.getGUIDEView.getComponent(0).getComponent(0).getComponent(0).getComponent(0);  % a direct alternative
% Set the control to be non-opaque and repaint it
jLabel.setOpaque(false);
jLabel.repaint();

This now looks nice, but not quite: Matlab displays the label text at the very top of its container, and this is not really in-line with the uitab labels. We need to add a small vertical padding at the top. One way to do this would be to set the label’s position to [0,0,1,.99] rather than [0,0,1,1]. Unfortunately, this results in varying amounts of padding depending on the container/figure height. A better alternative here would be to set the label to have a fixed-size padding amount. This can be done by attaching an empty Border [8] to our JLabel:

% Attach a 6-pixel top padding
jBorder = javax.swing.BorderFactory.createEmptyBorder(6,0,0,0);  % top, left, bottom, right
jLabel.setBorder(jBorder);

Another limitation is that while the transparent background presents the illusion of emptiness, trying to interact with any of the contents beneath it using mouse clicks fails because the mouse clicks are trapped by the Label background, transparent though it may be. We could reduce the label’s size so that it occludes a smaller portion of the content. Alternatively, we can remove the label’s mouse listeners so that any mouse events are passed-through to the controls underneath (i.e., not consumed by the label control, or actually it’s internal Java container):

jLabelParent = jLabel.getParent;
% Remove the mouse listeners from the control's internal container
jListener = jLabelParent.getMouseListeners;
jLabelParent.removeMouseListener(jListener(1));
jListener = jLabelParent.getMouseMotionListeners;
jLabelParent.removeMouseMotionListener(jListener(1));

Using the label’s Java peer reference, we could do a lot of other neat stuff. A simple example for this is the VerticalAlignment or LineWrap properties – for some reason that eludes me, Matlab’s uicontrol only allows specifying the horizontal alignment and forces a line-wrap, despite the fact that these features are readily available in the underlying Java peer.
Finally, while it is not generally a good design practice to change fonts throughout the GUI, it sometimes makes sense to use different font colors, sizes, faces and/or attributes for parts of the label text, in various situations. For example, to emphasize certain things, as I’ve done in my title label. Such customizations can easily be done using HTML strings with most Matlab uicontrols [9], but unfortunately not for labels [10], even today in R2016a. MathWorks created custom code that removes the HTML support in Matlab labels, for reasons that elude me yet again, especially since Matlab upcoming future GUI will probably be web-based so it will also natively support HTML, so maybe there’s still hope that HTML will be supported in Matlab labels in a future release.
Anyway, the bottom line is that if we need our label to have HTML support today, we can use a standard Java JLabel and add it to the GUI using the javacomponent function. Here’s a simple usage example:

% Create the label and add it to the GUI
jLabel = javaObjectEDT(javax.swing.JLabel('Results for BERY / PKG (1 Hour)'));
[hjLabel, hContainer] = javacomponent(jLabel, [10,10,10,10], hPanel);
set(hContainer, 'Units','norm', 'Pos',[0,0,1,1])
% Make the label (and its internal container) transparent
jLabel.getParent.getParent.setOpaque(false)  % label's internal container
jLabel.setOpaque(false)  % the label control itself
% Align the label
jLabel.setVerticalAlignment(jLabel.TOP);
jLabel.setHorizontalAlignment(jLabel.CENTER);
% Add 6-pixel top border padding and repaint the label
jLabel.setBorder(javax.swing.BorderFactory.createEmptyBorder(6,0,0,0));
jLabel.repaint;
% Now do the rest - mouse-listeners removal etc.
...

If you happen to attend the Matlab Expo next week in Munich Germany, please do come by and say hello!

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


2 Comments (Open | Close)

2 Comments To "Transparent labels"

#1 Comment By Collin Pecora On May 18, 2016 @ 03:22

Sorry if I am off topic, don’t know how you would like new questions.

I have a standard matlab function that returns a formatted javax.swing.JLabel, the JLabel is created on the EDT, basically a label factory. My GUI is matlab class based. Using the external function to create labels in the GUI class crashes matlab, no hang, just straight to desktop. The same code as a static method in the main GUI class causes no problems. Is the issue creating java objects on the EDT in two different memory spaces?. Do I need to create static labels on the EDT?

Sincerly

Collin

#2 Comment By Yair Altman On May 18, 2016 @ 10:19

It is best to create all Matlab GUI components on the EDT (using Matlab’s built-in javaObjectEDT function) and then add them to the GUI using the [17]. Any other way to add Java components to Matlab GUI may have undesirable effects ( [18]).


Article printed from Undocumented Matlab: https://undocumentedmatlab.com

URL to article: https://undocumentedmatlab.com/articles/transparent-labels

URLs in this post:

[1] presenting at next week’s MATLAB Expo: http://undocumentedmatlab.com/blog/upcoming-public-matlab-presentations

[2] presentation slides: http://undocumentedmatlab.com/Pairformax/Expo-2016.pdf

[3] Image: http://undocumentedmatlab.com/images/Pairformax research2.png

[4] details: http://undocumentedmatlab.com/blog/javacomponent#comment-46580

[5] containers are now lightweight javax.swing.JPanel-derived: http://undocumentedmatlab.com/blog/customizing-matlab-uipanels

[6] findjobj utility: http://undocumentedmatlab.com/blog/faster-findjobj

[7] setOpaque(): https://docs.oracle.com/javase/7/docs/api/javax/swing/JComponent.html#setOpaque(boolean)

[8] Border: https://docs.oracle.com/javase/7/docs/api/javax/swing/border/Border.html

[9] using HTML strings with most Matlab uicontrols: http://undocumentedmatlab.com/blog/html-support-in-matlab-uicomponents

[10] unfortunately not for labels: http://undocumentedmatlab.com/blog/customizing-matlab-labels

[11] Transparent legend : https://undocumentedmatlab.com/articles/transparent-legend

[12] Toolbar button labels : https://undocumentedmatlab.com/articles/toolbar-button-labels

[13] Transparent Matlab figure window : https://undocumentedmatlab.com/articles/transparent-matlab-figure-window

[14] Hyperlink text labels : https://undocumentedmatlab.com/articles/hyperlink-text-labels

[15] Transparent uipanels : https://undocumentedmatlab.com/articles/transparent-uipanels

[16] Syntax highlighted labels & panels : https://undocumentedmatlab.com/articles/syntax-highlighted-labels-panels

[17] : https://undocumentedmatlab.com/blog/javacomponent

[18] : https://undocumentedmatlab.com/blog/matlab-and-the-event-dispatch-thread-edt

Copyright © Yair Altman - Undocumented Matlab. All rights reserved.