Query: xgetwmsizehints
OS: hpux
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
XGetWMSizeHints() XGetWMSizeHints() Name XGetWMSizeHints - read a window's XA_WM_SIZE_HINTS property. Synopsis Status XGetWMSizeHints(display, w, hints_return, supplied_return, property) Display *display; Window w; XSizeHints *hints_return; long *supplied_return; Atom property; Arguments display Specifies a connection to an X server; returned from XOpenDisplay(). w Specifies the window. hints_return Returns the XSizeHints structure. supplied_return Returns the hints that were supplied by the user. property Specifies the property name. Returns Zero on failure, non-zero on success. Availability Release 4 and later. Description XGetWMSizeHints() returns the size hints stored in the specified property on the named window. If the property is of type XA_WM_SIZE_HINTS, of format 32, and is long enough to contain either an old (pre-ICCCM) or new size hints structure, XGetWMSizeHints() sets the various fields of the XSizeHints structure, sets the supplied_return argument to the list of fields that were supplied by the user (whether or not they contained defined values), and returns a non-zero status. If the hint was not set, it returns a zero status. To get a window's normal size hints, you can use the XGetWMNormalHints() function instead. XGetWMSizeHints() supersedes XGetSizeHints(). If XGetWMSizeHints() returns successfully and a pre-ICCCM size hints property is read, the supplied_return argument will contain the fol- lowing bits: (USPosition USSize PPosition PSize PMinSize PMaxSize PResizeInc PAspect) If the property is large enough to contain the base size and window gravity fields as well, the supplied argument will also contain the following bits: (PBaseSize PWinGravity) This function is used almost exclusively by window managers. For more information, see Volume One, Chapter 12, Interclient Communication. Structures typedef struct { long flags; /* marks which fields in this structure are defined */ int x, y; /* obsolete for new window mgrs, but clients */ int width, height; /* should set so old wm's don't mess up */ 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; int base_width, base_height; /* added by ICCCM version 1 */ int win_gravity; /* added by ICCCM version 1 */ } XSizeHints; Errors BadAtom BadWindow See Also XAllocSizeHints(), XGetWMNormalHints(), XSetWMNormalHints(), XSetWMSizeHints(). Xlib - Window Manager Hints XGetWMSizeHints()
Related Man Pages |
---|
xgetwmnormalhints(3x11) - redhat |
xgetwmsizehints(3x11) - redhat |
xsetwmnormalhints(3x11) - redhat |
xsizehints(3x11) - redhat |
xsetwmsizehints(3x11) - osf1 |
Similar Topics in the Unix Linux Community |
---|
Unix File Permissions |
How to list file size on HPUX? |
SAN Migration question |
Thank you members and admins |
Shopt -s histappend |