set a non visible figure to maximize

19 次查看(过去 30 天)
Jennifer
Jennifer 2011-9-15
I've been using this code to maximize figures:
drawnow % Required to avoid Java errors
jFig=get(handle(gcf),'JavaFrame');
jFig.setMaximized(true);
However, in my code I use figures that are not visible for printing purposes. When I use the aforementioned I get a lot of java errors in red text in the command window. Any suggestions as to how I can get this functioning properly? Is there another way to maximize windows?

回答(2 个)

Hoi Wong
Hoi Wong 2011-9-29
Actually thanks for the hint as I'm trying to do the same thing in one or two lines. I tried adding pause(0.01) between getting the handle and calling the setMaximized() method and there were no errors after since.
I also noticed quite often when I get these java errors when I attempt operations that are supposed to be safe, it's timing issue.
  1 个评论
Gabriel Ruiz-Martinez
I had a similar problem with maximize figures as Jennifer, I tried the Hoi's trick, adding "pause", and it works! Thanks Hoi!

请先登录,再进行评论。


Jan
Jan 2011-9-15
Why are the the figures invisible for printing purposes?
Can you maximize the figures before you make them invisible?
What about setting the size manually:
set(gcf, 'Position', get(0, 'ScreenSize'))
% Or:
set(gcf, 'OuterPosition', get(0, 'ScreenSize'))
MATLAB changes the horizontal size magically, but the figure is at least near to be maximized.
My Windows-C-Mex function FEX: WindowAPI cannot work with invisible figures also, because they are not found by the operating system and get a new HWnd handle when made visible again.
  1 个评论
Jennifer
Jennifer 2011-9-15
This routine is to be used in a face paced environment. The user needs to view plots, while others are "working" in the background. Having them maximize before going invisible will interrupt the user while they are viewing the current plot.
Your code solution would work, but I would rather the windows be maximized, rather than resized to fit the screen. The reason for this may seem a bit silly, but trust me. When a window is maximized you can quickly throw your mouse in the top corner and click to close. Whereas if it is simply the size of the screen, then throwing the mouse quickly in the top right corner and clicking will do nothing. I know the figure in question is invisible, but the option to make it visible is a possibility in future development.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Interactive Control and Callbacks 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by