Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

xgetzoomhints(3) [hpux man page]

XGetZoomHints() 														   XGetZoomHints()

Name
  XGetZoomHints - read the size hints property of a zoomed window.

Synopsis
  Status XGetZoomHints(display, w, zhints_return)
	Display *display;
	Window w;
	XSizeHints *zhints_return;

Arguments
  display  Specifies a connection to an X server; returned from XOpenDisplay().

  w	   Specifies the ID of the window to be queried.

  zhints_return
	   Returns a pointer to the zoom hints.

Returns
  Zero on failure, non-zero on success.

Description
  XGetZoomHints() is obsolete beginning in Release 4, because zoom hints are no longer defined in the ICCCM.

  XGetZoomHints()  is  primarily for window managers.  XGetZoomHints() returns the size hints for a window in its zoomed state (not normal or
  iconified) read from the XA_WM_ZOOM_HINTS property.  It returns a non-zero Status if it succeeds, and zero if the application did not spec-
  ify zoom size hints for this window.

  For more information on using hints, see Volume One, Chapter 12, Interclient Communication.

Structures
     typedef struct {
	 long flags;	/* which fields in structure are defined */
	 int x, y;
	 int width, height;
	 int min_width, min_height;
	 int max_width, max_height;
	 int width_inc, height_inc;
	 struct {
	      int x;	/* numerator */
	     int y;	/* denominator */
	 } min_aspect, max_aspect;
     } XSizeHints;

     /* flags argument in size hints */
     #define USPosition  (1L << 0)    /* user specified x, y */
     #define USSize	 (1L << 1)    /* user specified width, height */

     #define PPosition	 (1L << 2)    /* program specified position */
     #define PSize	 (1L << 3)    /* program specified size */
     #define PMinSize	 (1L << 4)    /* program specified minimum size */
     #define PMaxSize	 (1L << 5)    /* program specified maximum size */
     #define PResizeInc  (1L << 6)    /* program specified resize increments */
     #define PAspect	 (1L << 7)    /* program specified min/max aspect ratios */
     #define PAllHints (PPosition PSize PMinSize PMaxSize PResizeInc PAspect)

Errors
  BadWindow

See Also
  XFetchName(),  XGetClassHint(), XGetIconName(), XGetIconSizes(), XGetNormalHints(), XGetSizeHints(), XGetTransientForHint(), XGetWMHints(),
  XSetClassHint(), XSetCommand(), XSetIconName(), XSetIconSizes(), XSetNormalHints(), XSetSizeHints(), XSetTransientForHint(), XSetWMHints(),
  XSetZoomHints(), XStoreName().

Xlib - Window Manager Hints													   XGetZoomHints()

Check Out this Related Man Page

XGetNormalHints()														 XGetNormalHints()

Name
  XGetNormalHints - get the size hints property of a window in normal state (not zoomed or iconified).

Synopsis
  Status XGetNormalHints(display, w, hints_return)
	Display *display;
	Window w;
	XSizeHints *hints_return;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  w	    Specifies the ID of the window to be queried.

  hints_return
	    Returns the sizing hints for the window in its normal state.

Returns
  Zero on failure, non-zero on success.

Description
  XGetNormalHints()  has  been	superseded  by XGetWMNormalHints() as of Release 4, because new interclient communication conventions are now
  standard.

  XGetNormalHints() returns the size hints for a window in its normal state by reading the XA_WM_NORMAL_HINTS  property.   This  function  is
  normally used only by a window manager.  It returns a non-zero Status if it succeeds, and zero if it fails (e.g., the application specified
  no normal size hints for this window.)

  For more information on using hints, see Volume One, Chapter 12, Interclient Communication.

Structures
     typedef struct {
	 long flags;   /* which fields in structure are defined */
	 int x, y;
	 int width, height;
	 int min_width, min_height;
	 int max_width, max_height;
	 int width_inc, height_inc;
	 struct {
	     int x;    /* numerator */
	     int y;    /* denominator */
	 } min_aspect, max_aspect;
     } XSizeHints;
     /* flags argument in size hints */
     #define USPosition   (1L << 0)    /* user specified x, y */
     #define USSize	  (1L << 1)    /* user specified width, height */

     #define PPosition	  (1L << 2)    /* program specified position */
     #define PSize	  (1L << 3)    /* program specified size */
     #define PMinSize	  (1L << 4)    /* program specified minimum size */
     #define PMaxSize	  (1L << 5)    /* program specified maximum size */
     #define PResizeInc   (1L << 6)    /* program specified resize increments */
     #define PAspect	  (1L << 7)    /* program specified min/max aspect ratios */
     #define PAllHints (PPosition PSize PMinSize PMaxSize PResizeInc PAspect)

Errors
  BadWindow

See Also
  XFetchName(), XGetClassHint(), XGetIconName(), XGetIconSizes(), XGetSizeHints(),  XGetTransientForHint(),  XGetWMHints(),  XGetZoomHints(),
  XSetClassHint(), XSetCommand(), XSetIconName(), XSetIconSizes(), XSetNormalHints(), XSetSizeHints(), XSetTransientForHint(), XSetWMHints(),
  XSetZoomHints(), XStoreName().

Xlib - Window Manager Hints													 XGetNormalHints()
Man Page