Setting GUI Control Default Properties by Style

4 views (last 30 days)
When setting default values for GUI control properties, you can set default properties for all uicontrols:
f = figure;
set(f,'DefaultUicontrolString','Hello World');
uicontrol('parent',f,'style','text')
But can you set different sets of defaults for uicontrols with different styles? The following does NOT work, but makes my intent clear:
f = figure;
set(f,'DefaultTextBackgroundColor','gray')
set(f,'DefaultEditBackgroundColor','white')
uicontrol(f,'style','text','string','hello')
uicontrol(f,'style','edit','string','world')

Accepted Answer

Matt Fig
Matt Fig on 12 May 2011
When I write GUIs I usually specify the minimum property descriptions necessary for each style, then at the end of my initialization code I call a custom function to set my standard defaults.
This function takes no arguments (except optionally a figure handle for limiting the search), but uses FINDALL to parse through each style of uicontrol and assign the defaults like fontsize, backgroundcolor, etc.
It sounds like you could benefit from writing such a function too!

More Answers (1)

Daniel Shub
Daniel Shub on 11 May 2011
You cannot control the properties like you want. You could create a new function (or even class) that mimics uicontrols, but would allow you to specify default values. One problem with your example is if you create a text box control and then change it to an edit box control would the background color change?
  1 Comment
Andy
Andy on 12 May 2011
What is the benefit of being able to turn uicontrols of one style into another? In any case, if you create a text box and change it to an edit box, I would expect it to keep the text box default properties. (Otherwise changing the style would be the same as destroying the control and creating a new one.)
Is it common in GUI toolkits for inherently different controls to be combined into one like this? (I don't think so, but I don't know many other GUI toolkits.) Why is this done in MATLAB?

Sign in to comment.

Categories

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

Community Treasure Hunt

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

Start Hunting!