home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / evbl0627.zip / everblue_20010627.zip / x11 / Xlib_SetHints.c < prev    next >
C/C++ Source or Header  |  1999-11-02  |  10KB  |  314 lines

  1. /* $XConsortium: SetHints.c /main/24 1996/10/22 14:22:17 kaleb $ */
  2.  
  3. /***********************************************************
  4.  
  5. Copyright (c) 1987  X Consortium
  6.  
  7. Permission is hereby granted, free of charge, to any person obtaining a copy
  8. of this software and associated documentation files (the "Software"), to deal
  9. in the Software without restriction, including without limitation the rights
  10. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  11. copies of the Software, and to permit persons to whom the Software is
  12. furnished to do so, subject to the following conditions:
  13.  
  14. The above copyright notice and this permission notice shall be included in
  15. all copies or substantial portions of the Software.
  16.  
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  20. X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  21. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  22. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  23.  
  24. Except as contained in this notice, the name of the X Consortium shall not be
  25. used in advertising or otherwise to promote the sale, use or other dealings
  26. in this Software without prior written authorization from the X Consortium.
  27.  
  28.  
  29. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts.
  30.  
  31.                         All Rights Reserved
  32.  
  33. Permission to use, copy, modify, and distribute this software and its 
  34. documentation for any purpose and without fee is hereby granted, 
  35. provided that the above copyright notice appear in all copies and that
  36. both that copyright notice and this permission notice appear in 
  37. supporting documentation, and that the name of Digital not be
  38. used in advertising or publicity pertaining to distribution of the
  39. software without specific, written prior permission.  
  40.  
  41. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  42. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  43. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  44. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  45. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  46. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  47. SOFTWARE.
  48.  
  49. ******************************************************************/
  50.  
  51. #include "Xlib_private.h"
  52. #include <X11/Xutil.h>
  53. #include "Xatomtype.h"
  54. #include <X11/Xatom.h>
  55. #include <X11/Xos.h>
  56.  
  57. #define safestrlen(s) ((s) ? strlen(s) : 0)
  58.  
  59. int XSetSizeHints(dpy, w, hints, property)        /* old routine */
  60.     Display *dpy;
  61.     Window w;
  62.     XSizeHints *hints;
  63.         Atom property;
  64. {
  65.     DBUG_ENTER("XSetSizeHints")
  66.     int result;
  67.         xPropSizeHints prop;
  68.     prop.flags = (hints->flags & (USPosition|USSize|PAllHints));
  69.     prop.x = hints->x;
  70.     prop.y = hints->y;
  71.     prop.width = hints->width;
  72.     prop.height = hints->height;
  73.     prop.minWidth = hints->min_width;
  74.     prop.minHeight = hints->min_height;
  75.     prop.maxWidth  = hints->max_width;
  76.     prop.maxHeight = hints->max_height;
  77.     prop.widthInc = hints->width_inc;
  78.     prop.heightInc = hints->height_inc;
  79.     prop.minAspectX = hints->min_aspect.x;
  80.     prop.minAspectY = hints->min_aspect.y;
  81.     prop.maxAspectX = hints->max_aspect.x;
  82.     prop.maxAspectY = hints->max_aspect.y;
  83.     result = XChangeProperty (dpy, w, property, XA_WM_SIZE_HINTS, 32,
  84.                 PropModeReplace, (unsigned char *) &prop, 
  85.                 OldNumPropSizeElements);
  86.     DBUG_RETURN(result);
  87. }
  88.  
  89. /* 
  90.  * XSetWMHints sets the property 
  91.  *    WM_HINTS     type: WM_HINTS    format:32
  92.  */
  93.  
  94. int XSetWMHints (dpy, w, wmhints)
  95.     Display *dpy;
  96.     Window w;
  97.     XWMHints *wmhints; 
  98. {
  99.     DBUG_ENTER("XSetWMHints")
  100.     xPropWMHints prop;
  101.     int result;
  102.     prop.flags = wmhints->flags;
  103.     prop.input = (wmhints->input == True ? 1 : 0);
  104.     prop.initialState = wmhints->initial_state;
  105.     prop.iconPixmap = wmhints->icon_pixmap;
  106.     prop.iconWindow = wmhints->icon_window;
  107.     prop.iconX = wmhints->icon_x;
  108.     prop.iconY = wmhints->icon_y;
  109.     prop.iconMask = wmhints->icon_mask;
  110.     prop.windowGroup = wmhints->window_group;
  111.     result = XChangeProperty (dpy, w, XA_WM_HINTS, XA_WM_HINTS, 32,
  112.                 PropModeReplace, (unsigned char *) &prop, 
  113.                 NumPropWMHintsElements);
  114.     DBUG_RETURN(result);
  115. }
  116.  
  117.  
  118.  
  119. /* 
  120.  * XSetZoomHints sets the property 
  121.  *    WM_ZOOM_HINTS     type: WM_SIZE_HINTS format: 32
  122.  */
  123.  
  124. int XSetZoomHints (dpy, w, zhints)
  125.     Display *dpy;
  126.     Window w;
  127.     XSizeHints *zhints;
  128. {
  129.     DBUG_ENTER("XSetZoomHints")
  130.     int result = XSetSizeHints (dpy, w, zhints, XA_WM_ZOOM_HINTS);
  131.     DBUG_RETURN(result);
  132. }
  133.  
  134.  
  135. /* 
  136.  * XSetNormalHints sets the property 
  137.  *    WM_NORMAL_HINTS     type: WM_SIZE_HINTS format: 32
  138.  */
  139.  
  140. int XSetNormalHints (dpy, w, hints)            /* old routine */
  141.     Display *dpy;
  142.     Window w;
  143.     XSizeHints *hints;
  144. {
  145.     DBUG_ENTER("XSetNormalHints")
  146.     int result = XSetSizeHints (dpy, w, hints, XA_WM_NORMAL_HINTS);
  147.     DBUG_RETURN(result);
  148. }
  149.  
  150.  
  151.  
  152. /*
  153.  * Note, the following is one of the few cases were we really do want sizeof
  154.  * when examining a protocol structure.  This is because the XChangeProperty
  155.  * routine will take care of converting to host to network data structures.
  156.  */
  157.  
  158. int XSetIconSizes (dpy, w, list, count)
  159.     Display *dpy;
  160.     Window w;    /* typically, root */
  161.     XIconSize *list;
  162.     int count;     /* number of items on the list */
  163. {
  164.     DBUG_ENTER("XSetIconSizes")
  165.     register int i;
  166.     xPropIconSize *pp, *prop;
  167. #define size_of_the_real_thing sizeof    /* avoid grepping screwups */
  168.     unsigned nbytes = count * size_of_the_real_thing(xPropIconSize);
  169. #undef size_of_the_real_thing
  170.     if ((prop = pp = (xPropIconSize *) Xmalloc (nbytes))) {
  171.         for (i = 0; i < count; i++) {
  172.         pp->minWidth  = list->min_width;
  173.         pp->minHeight = list->min_height;
  174.         pp->maxWidth  = list->max_width;
  175.         pp->maxHeight = list->max_height;
  176.         pp->widthInc  = list->width_inc;
  177.         pp->heightInc = list->height_inc;
  178.         pp += 1;
  179.         list += 1;
  180.         }
  181.         XChangeProperty (dpy, w, XA_WM_ICON_SIZE, XA_WM_ICON_SIZE, 32, 
  182.                  PropModeReplace, (unsigned char *) prop, 
  183.                  count * NumPropIconSizeElements);
  184.         Xfree ((char *)prop);
  185.     }
  186.     DBUG_RETURN(1);
  187. }
  188.  
  189. int XSetCommand (dpy, w, argv, argc)
  190.     Display *dpy;
  191.     Window w;
  192.     char **argv;
  193.     int argc;
  194. {
  195.     DBUG_ENTER("XSetCommand")
  196.     register int i;
  197.     register int nbytes;
  198.     register char *buf, *bp;
  199.     for (i = 0, nbytes = 0; i < argc; i++) {
  200.         nbytes += safestrlen(argv[i]) + 1;
  201.     }
  202.     if ((bp = buf = Xmalloc((unsigned) nbytes))) { 
  203.         /* copy arguments into single buffer */
  204.         for (i = 0; i < argc; i++) {
  205.         if (argv[i]) { 
  206.             (void) strcpy(bp, argv[i]);
  207.             bp += strlen(argv[i]) + 1;
  208.         }
  209.         else
  210.             *bp++ = '\0';
  211.         }
  212.         XChangeProperty (dpy, w, XA_WM_COMMAND, XA_STRING, 8,
  213.                  PropModeReplace, (unsigned char *)buf, nbytes);
  214.         Xfree(buf);        
  215.     }
  216.     DBUG_RETURN(1);
  217. }
  218. /* 
  219.  * XSetStandardProperties sets the following properties:
  220.  *    WM_NAME          type: STRING        format: 8
  221.  *    WM_ICON_NAME      type: STRING        format: 8
  222.  *    WM_HINTS      type: WM_HINTS    format: 32
  223.  *    WM_COMMAND      type: STRING
  224.  *    WM_NORMAL_HINTS      type: WM_SIZE_HINTS     format: 32
  225.  */
  226.  
  227. #if NeedFunctionPrototypes
  228. int XSetStandardProperties (
  229.         Display *dpy,
  230.         Window w,        /* window to decorate */
  231.         _Xconst char *name,    /* name of application */
  232.         _Xconst char *icon_string,/* name string for icon */
  233.     Pixmap icon_pixmap,    /* pixmap to use as icon, or None */
  234.         char **argv,        /* command to be used to restart application */
  235.         int argc,        /* count of arguments */
  236.         XSizeHints *hints)    /* size hints for window in its normal state */
  237. #else
  238. int XSetStandardProperties (dpy, w, name, icon_string, icon_pixmap, argv, argc, hints)
  239.         Display *dpy;
  240.         Window w;        /* window to decorate */
  241.         char *name;        /* name of application */
  242.         char *icon_string;    /* name string for icon */
  243.     Pixmap icon_pixmap;    /* pixmap to use as icon, or None */
  244.         char **argv;        /* command to be used to restart application */
  245.         int argc;        /* count of arguments */
  246.         XSizeHints *hints;    /* size hints for window in its normal state */
  247. #endif
  248. {
  249.     DBUG_ENTER("XSetStandardProperties")
  250.     XWMHints phints;
  251.     phints.flags = 0;
  252.  
  253.     if (name != NULL) XStoreName (dpy, w, name);
  254.  
  255.     if (icon_string != NULL) {
  256.         XChangeProperty (dpy, w, XA_WM_ICON_NAME, XA_STRING, 8,
  257.         PropModeReplace, (unsigned char *)icon_string, safestrlen(icon_string));
  258.         }
  259.  
  260.     if (icon_pixmap != None) {
  261.         phints.icon_pixmap = icon_pixmap;
  262.         phints.flags |= IconPixmapHint;
  263.         }
  264.     if (argv != NULL) XSetCommand(dpy, w, argv, argc);
  265.     
  266.     if (hints != NULL) XSetNormalHints(dpy, w, hints);
  267.  
  268.     if (phints.flags != 0) XSetWMHints(dpy, w, &phints);
  269.  
  270.     DBUG_RETURN(1);
  271. }
  272.  
  273. int XSetTransientForHint(dpy, w, propWindow)
  274.     Display *dpy;
  275.     Window w;
  276.     Window propWindow;
  277. {
  278.     DBUG_ENTER("XSetTransientForHint")
  279.     int result = XChangeProperty(dpy, w, XA_WM_TRANSIENT_FOR, XA_WINDOW, 32,
  280.                    PropModeReplace, (unsigned char *) &propWindow, 1);
  281.     DBUG_RETURN(result);
  282. }
  283.  
  284. int XSetClassHint(dpy, w, classhint)
  285.     Display *dpy;
  286.     Window w;
  287.     XClassHint *classhint;
  288. {
  289.     DBUG_ENTER("XSetClassHint")
  290.     char *class_string;
  291.     char *s;
  292.     int len_nm, len_cl;
  293.  
  294.     len_nm = safestrlen(classhint->res_name);
  295.     len_cl = safestrlen(classhint->res_class);
  296.     if ((class_string = s = Xmalloc((unsigned) (len_nm + len_cl + 2)))) { 
  297.         if (len_nm) {
  298.         strcpy(s, classhint->res_name);
  299.         s += len_nm + 1;
  300.         }
  301.         else
  302.         *s++ = '\0';
  303.         if (len_cl)
  304.         strcpy(s, classhint->res_class);
  305.         else
  306.         *s = '\0';
  307.         XChangeProperty(dpy, w, XA_WM_CLASS, XA_STRING, 8,
  308.                 PropModeReplace, (unsigned char *) class_string, 
  309.                 len_nm+len_cl+2);
  310.         Xfree(class_string);
  311.     }
  312.     DBUG_RETURN(1);
  313. }
  314.