Skip to content

Commit

Permalink
feat: X11 window move, resize, raise and lower calls
Browse files Browse the repository at this point in the history
  • Loading branch information
vinceh121 committed Apr 23, 2024
1 parent 0a33062 commit 18c1448
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions contrib/platform/src/com/sun/jna/platform/unix/X11.java
Expand Up @@ -900,6 +900,12 @@ int XGetGeometry(Display display, Drawable d, WindowByReference w, IntByReferenc
boolean XTranslateCoordinates(Display display, Window src_w, Window dest_w, int src_x, int src_y,
IntByReference dest_x_return, IntByReference dest_y_return, WindowByReference child_return);

int XMoveWindow(Display display, Window w, int x, int y);
int XResizeWindow(Display display, Window w, int width, int height);
int XMoveResizeWindow(Display display, Window w, int x, int y, int width, int height);
int XRaiseWindow(Display display, Window w);
int XLowerWindow(Display display, Window w);

/*****************************************************************
* RESERVED RESOURCE AND CONSTANT DEFINITIONS
*****************************************************************/
Expand Down

0 comments on commit 18c1448

Please sign in to comment.