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

  1. /* $XConsortium: mbWMProps.c,v 1.5 94/04/17 20:22:14 rws Exp $ */
  2. /*
  3.  
  4. Copyright (c) 1991  X Consortium
  5.  
  6. Permission is hereby granted, free of charge, to any person obtaining
  7. a copy of this software and associated documentation files (the
  8. "Software"), to deal in the Software without restriction, including
  9. without limitation the rights to use, copy, modify, merge, publish,
  10. distribute, sublicense, and/or sell copies of the Software, and to
  11. permit persons to whom the Software is furnished to do so, subject to
  12. the following conditions:
  13.  
  14. The above copyright notice and this permission notice shall be included
  15. in all copies or substantial portions of the Software.
  16.  
  17. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  18. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  20. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  21. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  22. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  23. OTHER DEALINGS IN THE SOFTWARE.
  24.  
  25. Except as contained in this notice, the name of the X Consortium shall
  26. not be used in advertising or otherwise to promote the sale, use or
  27. other dealings in this Software without prior written authorization
  28. from the X Consortium.
  29.  
  30. */
  31.  
  32. #undef XLIB_ILLEGAL_ACCESS
  33.  
  34. #include <X11/Xlibint.h>
  35. #include <X11/Xutil.h>
  36. #include <X11/Xatom.h>
  37. #include <X11/Xlocale.h>
  38.  
  39. #if NeedFunctionPrototypes
  40. void XmbSetWMProperties (
  41.     Display *dpy,
  42.     Window w,
  43.     _Xconst char *windowName,
  44.     _Xconst char *iconName,
  45.     char **argv,
  46.     int argc,
  47.     XSizeHints *sizeHints,
  48.     XWMHints *wmHints,
  49.     XClassHint *classHints)
  50. #else
  51. void XmbSetWMProperties (dpy, w, windowName, iconName, argv, argc, sizeHints,
  52.              wmHints, classHints)
  53.      Display *dpy;
  54.      Window w;            /* window to decorate */
  55.      char *windowName;        /* name of application */
  56.      char *iconName;        /* name string for icon */
  57.      char **argv;        /* command line */
  58.      int argc;            /* size of command line */
  59.      XSizeHints *sizeHints;    /* size hints for window in its normal state */
  60.      XWMHints *wmHints;        /* miscelaneous window manager hints */
  61.      XClassHint *classHints;    /* resource name and class */
  62. #endif
  63. {
  64.     XTextProperty wname, iname;
  65.     XTextProperty *wprop = NULL;
  66.     XTextProperty *iprop = NULL;
  67.     char *locale;
  68.  
  69.     if (windowName &&
  70.     XmbTextListToTextProperty(dpy, (char**)&windowName, 1,
  71.                    XStdICCTextStyle, &wname) >= Success)
  72.     wprop = &wname;
  73.     if (iconName &&
  74.     XmbTextListToTextProperty(dpy, (char**)&iconName, 1,
  75.                    XStdICCTextStyle, &iname) >= Success)
  76.     iprop = &iname;
  77.     XSetWMProperties(dpy, w, wprop, iprop, argv, argc,
  78.              sizeHints, wmHints, classHints);
  79.     if (wprop)
  80.     Xfree((char *)wname.value);
  81.     if (iprop)
  82.     Xfree((char *)iname.value);
  83.     locale = setlocale(LC_CTYPE, (char *)NULL);
  84.     if (locale)
  85.     XChangeProperty (dpy, w, XInternAtom(dpy, "WM_LOCALE_NAME", False),
  86.              XA_STRING, 8, PropModeReplace,
  87.              (unsigned char *)locale, strlen(locale));
  88. }
  89.