controlling background color of selected uicontrol popup?

12 views (last 30 days)
I can create a uicontrol('Style','popup') with a 'backgroundcolor'. This works and the color is the one I chose. However, as soon as I select any value, the background color goes to a grayish, with the text in the foreground color I have set. The selected pop-up entry does not use the background color.
Is there a way to control the background color of a selected pop-up entry?
(I am trying to color-code my uicontrols according to the major class of functionality they have within the terms of my program. Although I could in theory do so just by adjusting their text foreground colors, the area of the text compared to the area of the control is relatively small and the color coding of the text is not nearly as distinguishable as color coding the background.)
  3 Comments
Walter Roberson
Walter Roberson on 18 Feb 2011
Alas, refresh() doesn't do a thing. It doesn't even cause the figure to flash momentarily if I'm stepping in debug mode.

Sign in to comment.

Accepted Answer

Jan
Jan on 28 Jan 2011
Edited: Jan on 30 Jan 2013
The selected pop-up gets the different color as long as the UICONTROL has the focus. Although Matlab's documentation claims that "figure(gcf)" gives the focus to the figure, this does not work from at least Matlab 5.3 to 2009a. Therefore I usually insert a call to a function named "FocusToFig" in the UICONTROL's callback function:
function FocusToFig(ObjH, EventData) %#ok<INUSD>
% Move focus to figure
% FocusToFig(ObjH, [DummyEventData])
% INPUT:
% ObjH: Handle of a graphics object. It is tried to move the focus to the
% parent figure and making it the CurrentFigure of the root object.
% DummyEventData: The 2nd input is optional and ignored.
%
% Tested: Matlab 6.5, 7.7, 7.8, WinXP
% Author: Jan Simon, Heidelberg, (C) 2009-2011
if any(ishandle(ObjH)) % Catch no handle and empty ObjH
FigH = ancestor(ObjH, 'figure');
if strcmpi(get(ObjH, 'Type'), 'uicontrol')
set(ObjH, 'enable', 'off');
drawnow;
set(ObjH, 'enable', 'on');
end
% Methods according to the documentation (does not move the focus for
% keyboard events under Matlab 5.3, 6.5, 2008b, 2009a):
figure(FigH);
set(0, 'CurrentFigure', FigH);
end
return;
This moves the keyboard focus also to the figure, such that the KeyPressFcn is called again.
  2 Comments
Walter Roberson
Walter Roberson on 28 Jan 2011
The grayish color is retained even when focus moves elsewhere. A uicontrol popup that has focus has a single-pixel rectangle of color drawn around the outside of it (it looks orange-y at least with the controls I tested on.)
Jan
Jan on 29 Jan 2011
The main task of my function for your purpose is not to move the focus, but to disable the UICONTROL temporarily, what forces a redraw.
Because the moving of the focus does not work correctly under Windows for 10 years, I expect there could be corresponding problems for a Ubuntu64 server displayed to a Linux32 client...

Sign in to comment.

More Answers (2)

Matt Fig
Matt Fig on 28 Jan 2011
Things seem to work here as you wish, unless I misunderstand you.
uicontrol('Style','popup','backgroundcol',[.9 .7 .3],'string',{'P';'Y';'F'})
This creates a popupmenu with an orange-ish bgc. After I select any of the three strings, the bgc is the same.
  6 Comments

Sign in to comment.


Daniele Scaranari
Daniele Scaranari on 31 Oct 2018
figure(gcf) works correctly in Matlab R2017a, Windows10.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!