2006-11-25 09:33:55 -07:00
'\" t
. \" Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991, 1994, 1996 X Consortium
. \"
. \" Permission is hereby granted, free of charge, to any person obtaining
. \" a copy of this software and associated documentation files (the
. \" "Software"), to deal in the Software without restriction, including
. \" without limitation the rights to use, copy, modify, merge, publish,
. \" distribute, sublicense, and/or sell copies of the Software, and to
. \" permit persons to whom the Software is furnished to do so, subject to
. \" the following conditions:
. \"
. \" The above copyright notice and this permission notice shall be included
. \" in all copies or substantial portions of the Software.
. \"
. \" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
. \" OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
. \" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
. \" IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
. \" OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
. \" ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
. \" OTHER DEALINGS IN THE SOFTWARE.
. \"
. \" Except as contained in this notice, the name of the X Consortium shall
. \" not be used in advertising or otherwise to promote the sale, use or
. \" other dealings in this Software without prior written authorization
. \" from the X Consortium.
. \"
. \" Copyright \(co 1985, 1986, 1987, 1988, 1989, 1990, 1991 by
. \" Digital Equipment Corporation
. \"
. \" Portions Copyright \(co 1990, 1991 by
. \" Tektronix, Inc.
. \"
. \" Permission to use, copy, modify and distribute this documentation for
. \" any purpose and without fee is hereby granted, provided that the above
. \" copyright notice appears in all copies and that both that copyright notice
. \" and this permission notice appear in all copies, and that the names of
. \" Digital and Tektronix not be used in in advertising or publicity pertaining
. \" to this documentation without specific, written prior permission.
. \" Digital and Tektronix makes no representations about the suitability
. \" of this documentation for any purpose.
2020-01-04 10:55:16 -07:00
. \" It is provided "as is" without express or implied warranty.
. \"
2006-11-25 09:33:55 -07:00
. \"
.ds xT X Toolkit Intrinsics \- C Language Interface
.ds xW Athena X Widgets \- C Language X Toolkit Interface
2020-01-04 10:55:16 -07:00
.ds xL Xlib \- C Language X Interface, \fR O'Reilly and Associates,
2006-11-25 09:33:55 -07:00
.ds xC Inter-Client Communication Conventions Manual
'\" t
.TH XAllocSizeHints __libmansuffix__ __xorgversion__ "XLIB FUNCTIONS"
.SH NAME
XAllocSizeHints, XSetWMNormalHints, XGetWMNormalHints, XSetWMSizeHints, XGetWMSizeHints, XSizeHints \- allocate size hints structure and set or read a window's WM_NORMAL_HINTS property
.SH SYNTAX
.HP
XSizeHints *XAllocSizeHints\^ (void\^ );
.HP
void XSetWMNormalHints\^ (\^ Display *\fI display\fP , Window \fI w\fP , XSizeHints *\fI hints\fP \^ );
.HP
Status XGetWMNormalHints\^ (\^ Display *\fI display\fP , Window \fI w\fP ,
XSizeHints *\fI hints_return\fP , long *\fI supplied_return\fP \^ );
.HP
void XSetWMSizeHints\^ (\^ Display *\fI display\fP , Window \fI w\fP , XSizeHints
*\fI hints\fP , Atom \fI property\fP \^ );
.HP
Status XGetWMSizeHints\^ (\^ Display *\fI display\fP , Window \fI w\fP , XSizeHints
*\fI hints_return\fP , long *\fI supplied_return\fP , Atom \fI property\fP \^ );
.SH ARGUMENTS
.IP \fI display\fP 1 i
Specifies the connection to the X server.
.IP \fI hints\fP 1 i
Specifies the size hints for the window in its normal state.
.IP \fI hints\fP 1 i
Specifies the
2020-01-04 10:55:16 -07:00
.B XSizeHints
2006-11-25 09:33:55 -07:00
structure to be used.
.IP \fI hints_return\fP 1 i
Returns the size hints for the window in its normal state.
.IP \fI property\fP 1 i
Specifies the property name.
.IP \fI supplied_return\fP 1 i
Returns the hints that were supplied by the user.
.IP \fI w\fP 1 i
Specifies the window.
.SH DESCRIPTION
The
2020-01-04 10:55:16 -07:00
.B XAllocSizeHints
2006-11-25 09:33:55 -07:00
function allocates and returns a pointer to a
2020-01-04 10:55:16 -07:00
.B XSizeHints
2006-11-25 09:33:55 -07:00
structure.
Note that all fields in the
2020-01-04 10:55:16 -07:00
.B XSizeHints
2006-11-25 09:33:55 -07:00
structure are initially set to zero.
2020-01-04 10:55:16 -07:00
If insufficient memory is available,
.B XAllocSizeHints
2006-11-25 09:33:55 -07:00
returns NULL.
To free the memory allocated to this structure,
use
2020-01-04 10:55:16 -07:00
.BR XFree .
2006-11-25 09:33:55 -07:00
.LP
2020-01-04 10:55:16 -07:00
The
.B XSetWMNormalHints
function replaces the size hints for the WM_NORMAL_HINTS property
2006-11-25 09:33:55 -07:00
on the specified window.
If the property does not already exist,
2020-01-04 10:55:16 -07:00
.B XSetWMNormalHints
2006-11-25 09:33:55 -07:00
sets the size hints for the WM_NORMAL_HINTS property on the specified window.
The property is stored with a type of WM_SIZE_HINTS and a format of 32.
.LP
2020-01-04 10:55:16 -07:00
.B XSetWMNormalHints
2006-11-25 09:33:55 -07:00
can generate
2020-01-04 10:55:16 -07:00
.B BadAlloc
2006-11-25 09:33:55 -07:00
and
2020-01-04 10:55:16 -07:00
.B BadWindow
2006-11-25 09:33:55 -07:00
errors.
.LP
2020-01-04 10:55:16 -07:00
The
.B XGetWMNormalHints
function returns the size hints stored in the WM_NORMAL_HINTS property
2006-11-25 09:33:55 -07:00
on the specified window.
If the property is of type WM_SIZE_HINTS, is of format 32,
2020-01-04 10:55:16 -07:00
and is long enough to contain either an old (pre-ICCCM)
or new size hints structure,
.B XGetWMNormalHints
sets the various fields of the
.B XSizeHints
structure, sets the supplied_return argument to the list of fields
2006-11-25 09:33:55 -07:00
that were supplied by the user (whether or not they contained defined values),
and returns a nonzero status.
Otherwise, it returns a zero status.
.LP
2020-01-04 10:55:16 -07:00
If
.B XGetWMNormalHints
returns successfully and a pre-ICCCM size hints property is read,
2006-11-25 09:33:55 -07:00
the supplied_return argument will contain the following bits:
.LP
2020-01-04 10:55:16 -07:00
.EX
2006-11-25 09:33:55 -07:00
(USPosition|USSize|PPosition|PSize|PMinSize|
PMaxSize|PResizeInc|PAspect)
2020-01-04 10:55:16 -07:00
.EE
2006-11-25 09:33:55 -07:00
.LP
2020-01-04 10:55:16 -07:00
If the property is large enough to contain the base size
and window gravity fields as well,
2006-11-25 09:33:55 -07:00
the supplied_return argument will also contain the following bits:
.LP
2020-01-04 10:55:16 -07:00
.EX
2006-11-25 09:33:55 -07:00
PBaseSize|PWinGravity
2020-01-04 10:55:16 -07:00
.EE
2006-11-25 09:33:55 -07:00
.LP
2020-01-04 10:55:16 -07:00
.B XGetWMNormalHints
2006-11-25 09:33:55 -07:00
can generate a
PN BadWindow
error.
.LP
2020-01-04 10:55:16 -07:00
The
.B XSetWMSizeHints
function replaces the size hints for the specified property
2006-11-25 09:33:55 -07:00
on the named window.
If the specified property does not already exist,
2020-01-04 10:55:16 -07:00
.B XSetWMSizeHints
2006-11-25 09:33:55 -07:00
sets the size hints for the specified property
on the named window.
The property is stored with a type of WM_SIZE_HINTS and a format of 32.
2020-01-04 10:55:16 -07:00
To set a window's normal size hints,
you can use the
.B XSetWMNormalHints
2006-11-25 09:33:55 -07:00
function.
.LP
2020-01-04 10:55:16 -07:00
.B XSetWMSizeHints
2006-11-25 09:33:55 -07:00
can generate
2020-01-04 10:55:16 -07:00
.BR BadAlloc ,
.BR BadAtom ,
2006-11-25 09:33:55 -07:00
and
2020-01-04 10:55:16 -07:00
.B BadWindow
2006-11-25 09:33:55 -07:00
errors.
.LP
2020-01-04 10:55:16 -07:00
The
.B XGetWMSizeHints
function returns the size hints stored in the specified property
2006-11-25 09:33:55 -07:00
on the named window.
2020-01-04 10:55:16 -07:00
If the property is of type WM_SIZE_HINTS, is of format 32,
and is long enough to contain either an old (pre-ICCCM)
or new size hints structure,
.B XGetWMSizeHints
sets the various fields of the
.B XSizeHints
2006-11-25 09:33:55 -07:00
structure, sets the supplied_return argument to the
2020-01-04 10:55:16 -07:00
list of fields that were supplied by the user
(whether or not they contained defined values),
2006-11-25 09:33:55 -07:00
and returns a nonzero status.
Otherwise, it returns a zero status.
2020-01-04 10:55:16 -07:00
To get a window's normal size hints,
you can use the
.B XGetWMNormalHints
2006-11-25 09:33:55 -07:00
function.
.LP
2020-01-04 10:55:16 -07:00
If
.B XGetWMSizeHints
returns successfully and a pre-ICCCM size hints property is read,
2006-11-25 09:33:55 -07:00
the supplied_return argument will contain the following bits:
.LP
2020-01-04 10:55:16 -07:00
.EX
2006-11-25 09:33:55 -07:00
(USPosition|USSize|PPosition|PSize|PMinSize|
PMaxSize|PResizeInc|PAspect)
2020-01-04 10:55:16 -07:00
.EE
2006-11-25 09:33:55 -07:00
.LP
2020-01-04 10:55:16 -07:00
If the property is large enough to contain the base size
and window gravity fields as well,
2006-11-25 09:33:55 -07:00
the supplied_return argument will also contain the following bits:
.LP
2020-01-04 10:55:16 -07:00
.EX
2006-11-25 09:33:55 -07:00
PBaseSize|PWinGravity
2020-01-04 10:55:16 -07:00
.EE
2006-11-25 09:33:55 -07:00
.LP
2020-01-04 10:55:16 -07:00
.B XGetWMSizeHints
2006-11-25 09:33:55 -07:00
can generate
2020-01-04 10:55:16 -07:00
.B BadAtom
2006-11-25 09:33:55 -07:00
and
2020-01-04 10:55:16 -07:00
.B BadWindow
2006-11-25 09:33:55 -07:00
errors.
.SH PROPERTIES
.TP 1 i
\s -1WM_NORMAL_HINTS\s +1
Size hints for a window in its normal state.
The C type of this property is
2020-01-04 10:55:16 -07:00
.BR XSizeHints .
2006-11-25 09:33:55 -07:00
.SH STRUCTURES
The
2020-01-04 10:55:16 -07:00
.B XSizeHints
2006-11-25 09:33:55 -07:00
structure contains:
.LP
2020-01-04 10:55:16 -07:00
.na
2008-06-11 14:55:41 -06:00
/\& * Size hints mask bits */
2006-11-25 09:33:55 -07:00
.TS
2020-01-04 10:55:16 -07:00
lw(.4i) lw(1.0i) lw(1.1i) lw(2.8i).
2006-11-25 09:33:55 -07:00
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B USPosition
2006-11-25 09:33:55 -07:00
T} T{
(1L << 0)
T} T{
2008-06-11 14:55:41 -06:00
/\& * user specified x, y */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B USSize
2006-11-25 09:33:55 -07:00
T} T{
(1L << 1)
T} T{
2008-06-11 14:55:41 -06:00
/\& * user specified width, height */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PPosition
2006-11-25 09:33:55 -07:00
T} T{
(1L << 2)
T} T{
2008-06-11 14:55:41 -06:00
/\& * program specified position */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PSize
2006-11-25 09:33:55 -07:00
T} T{
(1L << 3)
T} T{
2008-06-11 14:55:41 -06:00
/\& * program specified size */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PMinSize
2006-11-25 09:33:55 -07:00
T} T{
(1L << 4)
T} T{
2008-06-11 14:55:41 -06:00
/\& * program specified minimum size */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PMaxSize
2006-11-25 09:33:55 -07:00
T} T{
(1L << 5)
T} T{
2008-06-11 14:55:41 -06:00
/\& * program specified maximum size */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PResizeInc
2006-11-25 09:33:55 -07:00
T} T{
(1L << 6)
T} T{
2008-06-11 14:55:41 -06:00
/\& * program specified resize increments */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PAspect
2006-11-25 09:33:55 -07:00
T} T{
(1L << 7)
T} T{
2008-06-11 14:55:41 -06:00
/\& * program specified min and max aspect ratios */
2006-11-25 09:33:55 -07:00
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PBaseSize
2006-11-25 09:33:55 -07:00
T} T{
(1L << 8)
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PWinGravity
2006-11-25 09:33:55 -07:00
T} T{
(1L << 9)
T}
T{
\& #define
T} T{
2020-01-04 10:55:16 -07:00
.B PAllHints
2006-11-25 09:33:55 -07:00
T} T{
2020-01-04 10:55:16 -07:00
(PPosition|
.br
PSize|
.br
PMinSize|
.br
PMaxSize|
2006-11-25 09:33:55 -07:00
.br
2020-01-04 10:55:16 -07:00
PResizeInc|
2006-11-25 09:33:55 -07:00
.br
2020-01-04 10:55:16 -07:00
PAspect)
2006-11-25 09:33:55 -07:00
T} T{
T}
.TE
2020-01-04 10:55:16 -07:00
.ad
2006-11-25 09:33:55 -07:00
.IN "XSizeHints" "" "@DEF@"
2020-01-04 10:55:16 -07:00
.EX
2008-06-11 14:55:41 -06:00
/\& * Values */
2006-11-25 09:33:55 -07:00
typedef struct {
2013-04-28 10:55:55 -06:00
long flags; /\& * marks which fields in this structure are defined */
int x, y; /\& * Obsolete */
int width, height; /\& * Obsolete */
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;
int win_gravity;
/\& * this structure may be extended in the future */
2006-11-25 09:33:55 -07:00
} XSizeHints;
2020-01-04 10:55:16 -07:00
.EE
2006-11-25 09:33:55 -07:00
.LP
The x, y, width, and height members are now obsolete
and are left solely for compatibility reasons.
The min_width and min_height members specify the
minimum window size that still allows the application to be useful.
The max_width and max_height members specify the maximum window size.
The width_inc and height_inc members define an arithmetic progression of
sizes (minimum to maximum) into which the window prefers to be resized.
The min_aspect and max_aspect members are expressed
2020-01-04 10:55:16 -07:00
as ratios of x and y,
2006-11-25 09:33:55 -07:00
and they allow an application to specify the range of aspect
ratios it prefers.
The base_width and base_height members define the desired size of the window.
2020-01-04 10:55:16 -07:00
The window manager will interpret the position of the window
and its border width to position the point of the outer rectangle
2006-11-25 09:33:55 -07:00
of the overall window specified by the win_gravity member.
The outer rectangle of the window includes any borders or decorations
supplied by the window manager.
In other words,
if the window manager decides to place the window where the client asked,
2020-01-04 10:55:16 -07:00
the position on the parent window's border named by the win_gravity
will be placed where the client window would have been placed
2006-11-25 09:33:55 -07:00
in the absence of a window manager.
.LP
Note that use of the
2020-01-04 10:55:16 -07:00
.B PAllHints
2006-11-25 09:33:55 -07:00
macro is highly discouraged.
.SH DIAGNOSTICS
.TP 1 i
2020-01-04 10:55:16 -07:00
.B BadAlloc
2006-11-25 09:33:55 -07:00
The server failed to allocate the requested resource or server memory.
.TP 1 i
2020-01-04 10:55:16 -07:00
.B BadAtom
2006-11-25 09:33:55 -07:00
A value for an Atom argument does not name a defined Atom.
.TP 1 i
2020-01-04 10:55:16 -07:00
.B BadWindow
2006-11-25 09:33:55 -07:00
A value for a Window argument does not name a defined Window.
.SH "SEE ALSO"
2010-05-18 13:37:28 -06:00
XAllocClassHint(__libmansuffix__),
XAllocIconSize(__libmansuffix__),
XAllocWMHints(__libmansuffix__),
XFree(__libmansuffix__),
XSetCommand(__libmansuffix__),
XSetTransientForHint(__libmansuffix__),
XSetTextProperty(__libmansuffix__),
XSetWMClientMachine(__libmansuffix__),
XSetWMColormapWindows(__libmansuffix__),
XSetWMIconName(__libmansuffix__),
XSetWMName(__libmansuffix__),
XSetWMProperties(__libmansuffix__),
XSetWMProtocols(__libmansuffix__),
XStringListToTextProperty(__libmansuffix__)
2006-11-25 09:33:55 -07:00
.br
\fI \* (xL\fP