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

  1. /* $XConsortium: WMProps.c,v 1.9 94/04/17 20:21:29 rws Exp $ */
  2. /* $XFree86: xc/lib/X11/WMProps.c,v 3.1 1996/04/15 11:58:07 dawes Exp $ */
  3. /*
  4.  
  5. Copyright (c) 1987, 1988, 1993  X Consortium
  6.  
  7. Permission is hereby granted, free of charge, to any person obtaining
  8. a copy of this software and associated documentation files (the
  9. "Software"), to deal in the Software without restriction, including
  10. without limitation the rights to use, copy, modify, merge, publish,
  11. distribute, sublicense, and/or sell copies of the Software, and to
  12. permit persons to whom the Software is furnished to do so, subject to
  13. the following conditions:
  14.  
  15. The above copyright notice and this permission notice shall be included
  16. in all copies or substantial portions of the Software.
  17.  
  18. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  19. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  20. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  21. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  22. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  23. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  24. OTHER DEALINGS IN THE SOFTWARE.
  25.  
  26. Except as contained in this notice, the name of the X Consortium shall
  27. not be used in advertising or otherwise to promote the sale, use or
  28. other dealings in this Software without prior written authorization
  29. from the X Consortium.
  30.  
  31. */
  32.  
  33. /***********************************************************
  34. Copyright 1988 by Wyse Technology, Inc., San Jose, Ca.,
  35. Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
  36.  
  37.                         All Rights Reserved
  38.  
  39. Permission to use, copy, modify, and distribute this software and its 
  40. documentation for any purpose and without fee is hereby granted, 
  41. provided that the above copyright notice appear in all copies and that
  42. both that copyright notice and this permission notice appear in 
  43. supporting documentation, and that the name of Wyse not be
  44. used in advertising or publicity pertaining to distribution of the
  45. software without specific, written prior permission.  
  46.  
  47. WYSE DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  48. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  49. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  50. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  51. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  52. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  53. SOFTWARE.
  54.  
  55. ******************************************************************/
  56.  
  57. #include "Xlib_private.h"
  58. #include <X11/Xatom.h>
  59. #include <X11/Xutil.h>
  60. #include <X11/Xos.h>
  61.  
  62. #ifdef X_NOT_STDC_ENV
  63. extern char *getenv();
  64. #endif
  65.  
  66. /* 
  67.  * XSetWMProperties sets the following properties:
  68.  *    WM_NAME          type: TEXT        format: varies?
  69.  *    WM_ICON_NAME      type: TEXT        format: varies?
  70.  *    WM_HINTS      type: WM_HINTS    format: 32
  71.  *    WM_COMMAND      type: TEXT        format: varies?
  72.  *    WM_CLIENT_MACHINE type: TEXT        format: varies?
  73.  *    WM_NORMAL_HINTS      type: WM_SIZE_HINTS     format: 32
  74.  *    WM_CLASS      type: STRING/STRING    format: 8
  75.  */
  76.     
  77. void XSetWMProperties (dpy, w, windowName, iconName, argv, argc, sizeHints,
  78.                wmHints, classHints)
  79.      Display *dpy;
  80.      Window w;            /* window to decorate */
  81.      XTextProperty *windowName;    /* name of application */
  82.      XTextProperty *iconName;    /* name string for icon */
  83.      char **argv;        /* command line */
  84.      int argc;            /* size of command line */
  85.      XSizeHints *sizeHints;    /* size hints for window in its normal state */
  86.      XWMHints *wmHints;        /* miscelaneous window manager hints */
  87.      XClassHint *classHints;    /* resource name and class */
  88. {
  89.     DBUG_ENTER("XSetWMProperties")
  90.     XTextProperty textprop;
  91.     char hostName[256];
  92.     int len = _XGetHostname (hostName, sizeof hostName);
  93.  
  94.     /* set names of window and icon */
  95.     if (windowName) XSetWMName (dpy, w, windowName);
  96.     if (iconName) XSetWMIconName (dpy, w, iconName);
  97.  
  98.     /* set the command if given */
  99.     if (argv) {
  100.     /*
  101.      * for UNIX and other operating systems which use nul-terminated
  102.      * arrays of STRINGs.
  103.      */
  104.     XSetCommand (dpy, w, argv, argc);
  105.     }
  106.  
  107.     /* set the name of the machine on which this application is running */
  108.     textprop.value = (unsigned char *) hostName;
  109.     textprop.encoding = XA_STRING;
  110.     textprop.format = 8;
  111.     textprop.nitems = len;
  112.     XSetWMClientMachine (dpy, w, &textprop);
  113.     
  114.     /* set hints about how geometry and window manager interaction */
  115.     if (sizeHints) XSetWMNormalHints (dpy, w, sizeHints);
  116.     if (wmHints) XSetWMHints (dpy, w, wmHints);
  117.     if (classHints) {
  118.     XClassHint tmp;
  119.  
  120.     if (!classHints->res_name) {
  121.         tmp.res_name = getenv ("RESOURCE_NAME");
  122.         if (!tmp.res_name && argv && argv[0]) {
  123.         /*
  124.          * UNIX uses /dir/subdir/.../basename; other operating
  125.          * systems will have to change this.
  126.          */
  127.         char *cp = strrchr (argv[0], '/');
  128. #ifdef __EMX__
  129.         char *os2_cp = strrchr (argv[0],'\\');
  130.         char *dot_cp = strrchr (argv[0],'.');
  131.         if (os2_cp && (os2_cp > cp)) {
  132.             if(dot_cp && (dot_cp > os2_cp)) *dot_cp = '\0';
  133.             cp=os2_cp;
  134.         }
  135. #endif
  136.         tmp.res_name = (cp ? cp + 1 : argv[0]);
  137.         }
  138.         tmp.res_class = classHints->res_class;
  139.         classHints = &tmp;
  140.     }
  141.     XSetClassHint (dpy, w, classHints);
  142.     }
  143.     DBUG_VOID_RETURN;
  144. }
  145.  
  146.