NAME
XSetIconSizes — set the value of the XA_WM_ICON_SIZE property.
SYNOPSIS
XSetIconSizes(display, w, size_list, count) Display ∗display; Window w; XIconSize ∗size_list; int count;
ARGUMENTS
displaySpecifies a connection to an X server; returned from XOpenDisplay().
wSpecifies the ID of the window whose icon size property is to be set. Normally the root window.
size_listSpecifies a pointer to the size list.
countSpecifies the number of items in the size list.
DESCRIPTION
XSetIconSizes() is normally used by a window manager to set the range of preferred icon sizes in the XA_WM_ICON_SIZE property of the root window.
Applications can then read the property with XGetIconSizes().
STRUCTURES
typedef struct {
int min_width, min_height;
int max_width, max_height;
int width_inc, height_inc; } XIconSize;
ERRORS
BadAlloc
BadWindow
SEE ALSO
XAllocIconSize(), XFetchName(), XGetClassHint(), XGetIconName(), XGetIconSizes(), XGetNormalHints(), XGetSizeHints(), XGetTransientForHint(), XGetWMHints(), XGetZoomHints(), XSetClassHint(), XSetCommand(), XSetIconName(), XSetNormalHints(), XSetSizeHints(), XSetTransientForHint(), XSetWMHints(), XSetZoomHints(), XStoreName().
Xlib Reference Manual