How can I get the HWND (Native Window Handle) of the client region of UIPANEL on MATLAB Figure?

23 次查看(过去 30 天)
Hi!
I need to have access from the outside to a given region of MATLAB Figure. I want to ask this region, using UIPANEL. Can I get the native window handle for UIPANEL, using undocumented MATLAB-Java interface?
I tried using this approach:
hFig = figure();
warning('off','MATLAB:HandleGraphics:ObsoletedProperty:JavaFrame');
jh = get(hFig, 'JavaFrame');
hwnd = get(jh, 'nativeWindowHandle');
But the way I access the client area , which contains all the UI Components. But this is not what I need.
I would be very grateful for any information on this issue. Thanks!

采纳的回答

Yair Altman
Yair Altman 2011-4-11
uipanels don't have their own HWND. If you use a utility such as Spy++ (which is bundled with Microsoft Visual Studio) or Winspector, you will see that there are very few actual window handles. Of these, you can get access to two:
1. Top-level window frame (SunAwtFrame) HWND -
jFrame = get(handle(hFig), 'JavaFrame');
HWND = jFrame.fFigureClient.getWindow.getHWND;
2. Axis canvas (SunAwtCanvas) HWND - this is the NativeWindowHandle property value that you have noted above. (there are several alternatives of accessing this handle). If you use this handle, be sure to check the corresponding NativeWindowHandleValid property. For example, if the window is not visible (e.g., closed), this property will have a false value.
3. OpenGL (MatlabOpenGLWindow) HWND - this is a child of the NativeWindowHandle HWND, and can be gotten from:
jFrame = get(handle(hFig), 'JavaFrame');
HWND = int32(jFrame.getNativeChildWindowHandle/2^32);
HWND = bitshift(jFrame.getNativeChildWindowHandle,-32); %alternative
Yair Altman

更多回答(2 个)

Evgeny Pr
Evgeny Pr 2011-3-12
It seems that I'm moving in the right direction... :)
For example:
h = figure;
jc = javacomponent(java.awt.Canvas, [100 100 200 200], h);
drawnow;
hwnd = jc.getPeer.getHWnd;
There is only one question: How to get java.awt.Canvas from UIPANEL? If UIPANEL based on Canvas... :)

Oleg Komarov
Oleg Komarov 2011-3-12
You may want to give a look at FindJObj - find java handles of Matlab graphic objects on the FEX.
May save you a lot of time.
Oleg
  1 个评论
Evgeny Pr
Evgeny Pr 2011-3-12
Yes, I use this function and other functions writen by Yair Altman, for example UIINSPECT.
UIPANEL components is not found using FINDJOBJ. :(
For example:
h = figure;
hp = uipanel('Parent', h, 'Units', 'pixels', 'Position', [10 10 200 200])
findjobj(hp, 'nomenu')

请先登录,再进行评论。

类别

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