GUI screen resolution auto-resize

Is there a way to have a GUI in guide auto-adjust to fit current screen resolution, and/or can I hard-set the resolution of the interface at a specific value?

1 comentario

Trinh Nam
Trinh Nam el 18 de Feb. de 2020
You can Right Click on Guide (Open Fig file), Left Click to "GUI Options", Choose "Proportional" of Resize behavior

Iniciar sesión para comentar.

 Respuesta aceptada

Walter Roberson
Walter Roberson el 28 de Jun. de 2016

0 votos

You can set the figure Units property to be Normalized, and set the Position property to be [0 0 1 1] if you want full screen. Or, if more appropriate, you can set the Units to Pixels or to 'cm' and use the appropriate values for Position.

7 comentarios

Eric Gilkey
Eric Gilkey el 28 de Jun. de 2016
Hi Walter,
I'm very inexperienced with guide, so pardon my ignorance, but I'm not sure that this is what I'm looking for. When editing the figure, setting units to "Normalized" seems to only fill up the gray space I happen to have available at the time; this doesn't fill up the entire screen when I run the .m. I'm wanting to allow the program to auto-scale the figure when it's opened by different users on different computers. Am I misinterpreting your answer?
Thank you
Eric Gilkey
Eric Gilkey el 29 de Jun. de 2016
Editada: Eric Gilkey el 29 de Jun. de 2016
I should clarify: I want to auto-scale the entire interface.
Edit: I tried using the following
set(gcf, 'units', 'normalized', 'position', [0 0 1 1])
But this doesn't fill up the entire screen, nor does it scale everything in the interface according to the window size.
Adam
Adam el 29 de Jun. de 2016
Generally a UI scaled like this looks very ugly as you end up with massive buttons and sliders and other stuff that you ideally don't want to be scaled (doing what Image Analyst says should achieve this though).
If you want to do some more carefully defined scaling you would usually have to do it in the GUI's SizeChangedFcn. For example I have had UIs which contain an axes and then a panel of ui controls. When I resize I want the axes to resize, but not the panel of UI controls so I program this in such a way as to resize only the axes to fill the available space while the ui components remain of fixed size.
Image Analyst
Image Analyst el 29 de Jun. de 2016
You can mix and match units. Some can be normalized and others in pixels, though that may lead to overlap. It's best to have all normalized and then tweak the size of the control to leave the lower left corner in the same place but you just adjust the width and height on a customized control-by-control basis if you want.
Walter Roberson
Walter Roberson el 29 de Jun. de 2016
True full screen requires operating-system specific calls. Using position [0 0 1 1] covers all of the area except title bars and docks and trays -- all of the area that the window manager normally gives programs. To go beyond that you need one of the utilities like Image Analyst posted or such as https://www.mathworks.com/matlabcentral/fileexchange/11112-fullscreen
I have to agree with Adam that just scaling everything usually ends up looking bad. It is also problematic when you get to screens with different aspect ratios.
What I ended up doing was writing a series of utilities to do programmatic layout.
(Unfortunately, I cannot release them as-is, for copyright reasons, and I never got around to re-writing them.)
Eric Gilkey
Eric Gilkey el 30 de Jun. de 2016
Thanks for the answers everyone. Changing the unit type seems to do the trick well enough.

Iniciar sesión para comentar.

Más respuestas (1)

Image Analyst
Image Analyst el 29 de Jun. de 2016

0 votos

You have to set all the 'units' properties of all the controls to 'normalized'. To do this, type control-a to select everything in the GUI, then set the units property to 'normalized'. This may/will not set the units of controls inside a groupbox panel so you may have to set those separately.
Then, in the OpeningFcn() of your GUI, call the attached MaximizeFigureWindow (if you're using Microsoft Windows) to maximize the window. This truly maximizes it, unlike setting the position property of the GUI. Setting the Position property always seems to leave the window slightly misaligned anyway - bottom left is never at 0,0 like it should be.

2 comentarios

Eric Gilkey
Eric Gilkey el 30 de Jun. de 2016
Thanks Image Analyst
Hamin Chang
Hamin Chang el 15 de Ag. de 2017
Thank you so much!

Iniciar sesión para comentar.

Categorías

Más información sobre Creating, Deleting, and Querying Graphics Objects en Centro de ayuda y File Exchange.

Preguntada:

el 28 de Jun. de 2016

Comentada:

el 18 de Feb. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by