GUI with no 'close' and 'minimize' buttons

40 visualizaciones (últimos 30 días)
Mehdi
Mehdi el 12 de Mayo de 2014
Respondida: Sampath Rachumallu el 11 de Mayo de 2020
I have made a GUI which displays 'Please wait ...' during a computation so it shouldn't be closed or minimized. How can I eliminate the entire bar to prevent unwanted closure or action? Thank you in advance. P.S. I did download WindowAPI but it's not working or I don't know to run it properly. A little help would be great.

Respuestas (3)

Sampath Rachumallu
Sampath Rachumallu el 11 de Mayo de 2020
You can check the below link.
You can hide the 'minimise' and 'close' button by setting 'WindowState' property of uifigure to 'full screen'. Here is the code
f = uifigure('WindowState', 'fullscreen');
But when the 'ESC' key is pressed it will come to normal window size having all 'minimise', 'close' buttons etc

Friedrich
Friedrich el 12 de Mayo de 2014
Editada: Friedrich el 19 de Mayo de 2014
Hi,
at least on Windows AFAIK no close button is only possible if you disable the complete caption of the window which results in no minimize and maximize buttons too. However no minimize button is possible but you have to stay with the close button. All of this can be done using the Windows API and the SetWindowLong function inside a MEX function.
It migth be easier to implement your own CloseRequestFcn to prevent closing the figure as long the calculation runs. However getting the minimize button to do nothing is not possible from within MATLAB.
UPDATE
Use a small mex (mymex.c):
#include "mex.h"
#include "windows.h"
void mexFunction( int nlhs, mxArray *plhs[], int nrhs, const mxArray *prhs[])
{
if (nrhs == 1)
{
long value = GetWindowLong(*(HWND*)mxGetData(prhs[0]), GWL_STYLE);
plhs[0] = mxCreateLogicalScalar(SetWindowLong(*(HWND*)mxGetData(prhs[0]),GWL_STYLE,(int)(value & ~WS_CAPTION)) > 0);
}
}
And call it from MATLAB
plot(1:10);
pause(1);
jFrame = get(handle(gcf),'JavaFrame');
hWnd = int32(jFrame.fHG1Client.getWindow.getHWnd);
mymex(hWnd)

Mehdi
Mehdi el 19 de Mayo de 2014
Hi Friedrich, Thank you for your reply. My system is Windows 8.1. I do want a simple GUI with no 'close', 'minimize or maximize' buttons. I tried the following code and put it in the OutputFcn but nothing happen: handles.output = hObject; guips = get(hObject,'Position'); WindowAPI(hObject,'Position',guips); WindowAPI(hObject,'Clip');
Is there any work around this problem? What's your approach? Thank you in advance.
  1 comentario
Jan
Jan el 17 de Feb. de 2016
The OutputFcn is called, when the GUI function replies an output to the calling function. So better insert this in the CreateFcn.

Iniciar sesión para comentar.

Categorías

Más información sobre Environment and Settings en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by