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

  1. /* $XConsortium: SetNrmHint.c,v 1.4 94/04/17 20:21:00 gildea Exp $ */
  2.  
  3. /***********************************************************
  4. Copyright 1988 by Wyse Technology, Inc., San Jose, Ca,
  5. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  6.  
  7.                         All Rights Reserved
  8.  
  9. Permission to use, copy, modify, and distribute this software and its
  10. documentation for any purpose and without fee is hereby granted,
  11. provided that the above copyright notice appear in all copies and that
  12. both that copyright notice and this permission notice appear in
  13. supporting documentation, and that the name Digital not be
  14. used in advertising or publicity pertaining to distribution of the
  15. software without specific, written prior permission.
  16.  
  17. DIGITAL AND WYSE DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  18. INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
  19. EVENT SHALL DIGITAL OR WYSE BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  20. CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
  21. USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
  22. OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  23. PERFORMANCE OF THIS SOFTWARE.
  24.  
  25. ******************************************************************/
  26. /*
  27.  
  28. Copyright (c) 1987, 1988  X Consortium
  29.  
  30. Permission is hereby granted, free of charge, to any person obtaining
  31. a copy of this software and associated documentation files (the
  32. "Software"), to deal in the Software without restriction, including
  33. without limitation the rights to use, copy, modify, merge, publish,
  34. distribute, sublicense, and/or sell copies of the Software, and to
  35. permit persons to whom the Software is furnished to do so, subject to
  36. the following conditions:
  37.  
  38. The above copyright notice and this permission notice shall be included
  39. in all copies or substantial portions of the Software.
  40.  
  41. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  42. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  43. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  44. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  45. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  46. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  47. OTHER DEALINGS IN THE SOFTWARE.
  48.  
  49. Except as contained in this notice, the name of the X Consortium shall
  50. not be used in advertising or otherwise to promote the sale, use or
  51. other dealings in this Software without prior written authorization
  52. from the X Consortium.
  53.  
  54. */
  55.  
  56. #include "Xlib_private.h"
  57. #include <X11/Xutil.h>
  58. #include "Xatomtype.h"
  59. #include <X11/Xatom.h>
  60. #include <X11/Xos.h>
  61.  
  62. void XSetWMSizeHints (dpy, w, hints, prop)
  63.     Display *dpy;
  64.     Window w;
  65.     XSizeHints *hints;
  66.     Atom prop;
  67. {
  68.     DBUG_ENTER("XSetWMSizeHints")
  69.     xPropSizeHints data;
  70.  
  71.     data.flags = (hints->flags & 
  72.           (USPosition|USSize|PPosition|PSize|PMinSize|PMaxSize|
  73.            PResizeInc|PAspect|PBaseSize|PWinGravity));
  74.  
  75.     /*
  76.      * The x, y, width, and height fields are obsolete; but, applications
  77.      * that want to work with old window managers might set them.
  78.      */
  79.     data.x = hints->x;
  80.     data.y = hints->y;
  81.     data.width = hints->width;
  82.     data.height = hints->height;
  83.  
  84.     data.minWidth = hints->min_width;
  85.     data.minHeight = hints->min_height;
  86.     data.maxWidth  = hints->max_width;
  87.     data.maxHeight = hints->max_height;
  88.     data.widthInc = hints->width_inc;
  89.     data.heightInc = hints->height_inc;
  90.     data.minAspectX = hints->min_aspect.x;
  91.     data.minAspectY = hints->min_aspect.y;
  92.     data.maxAspectX = hints->max_aspect.x;
  93.     data.maxAspectY = hints->max_aspect.y;
  94.     data.baseWidth = hints->base_width;
  95.     data.baseHeight = hints->base_height;
  96.     data.winGravity = hints->win_gravity;
  97.    
  98.     XChangeProperty (dpy, w, prop, XA_WM_SIZE_HINTS, 32,
  99.              PropModeReplace, (unsigned char *) &data,
  100.              NumPropSizeElements);
  101.     DBUG_VOID_RETURN;
  102. }
  103.  
  104.  
  105. void XSetWMNormalHints (dpy, w, hints)
  106.     Display *dpy;
  107.     Window w;
  108.     XSizeHints *hints;
  109. {
  110.     DBUG_ENTER("XSetWMNormalHints")
  111.     XSetWMSizeHints (dpy, w, hints, XA_WM_NORMAL_HINTS);
  112.     DBUG_VOID_RETURN;
  113. }
  114.  
  115.