GUI with no 'close' and 'minimize' buttons

38 visualizzazioni (ultimi 30 giorni)
Mehdi
Mehdi il 12 Mag 2014
Risposto: Sampath Rachumallu il 11 Mag 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.

Risposte (3)

Sampath Rachumallu
Sampath Rachumallu il 11 Mag 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 il 12 Mag 2014
Modificato: Friedrich il 19 Mag 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 il 19 Mag 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 Commento
Jan
Jan il 17 Feb 2016
The OutputFcn is called, when the GUI function replies an output to the calling function. So better insert this in the CreateFcn.

Accedi per commentare.

Categorie

Scopri di più su Environment and Settings in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by