Package com.aspose.threed
Class WindowHandle
- java.lang.Object
-
- com.aspose.threed.WindowHandle
-
public class WindowHandle extends java.lang.Object
Encapsulated window handle for different platforms.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WindowHandle
fromWayland(long display, long surface)
CreateWindowHandle
from a Wayland surfacestatic WindowHandle
fromWin32(long hWnd)
The native HWND instance in Windows environment.static WindowHandle
fromXlib(long display, long window)
CreateWindowHandle
from an Xlib window
-
-
-
Method Detail
-
fromWayland
public static WindowHandle fromWayland(long display, long surface)
CreateWindowHandle
from a Wayland surface- Parameters:
display
- The display instance of Wayland serversurface
- The handle of the surface
-
fromXlib
public static WindowHandle fromXlib(long display, long window)
CreateWindowHandle
from an Xlib window- Parameters:
display
- The display instance of the X serverwindow
- The handle of the window
-
fromWin32
public static WindowHandle fromWin32(long hWnd)
The native HWND instance in Windows environment.- Parameters:
hWnd
- The handle of the native Win32 window
-
-