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

  1. /* $XConsortium: FSWrap.c /main/14 1996/09/28 16:33:40 rws $ */
  2.  
  3. /*
  4.  * Copyright 1991 by the Open Software Foundation
  5.  * Copyright 1993 by the TOSHIBA Corp.
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and its
  8.  * documentation for any purpose is hereby granted without fee, provided that
  9.  * the above copyright notice appear in all copies and that both that
  10.  * copyright notice and this permission notice appear in supporting
  11.  * documentation, and that the name Open Software Foundation
  12.  * not be used in advertising or publicity pertaining to distribution of the
  13.  * software without specific, written prior permission.  Open Software
  14.  * Foundation makes no representations about the suitability of this
  15.  * software for any purpose.  It is provided "as is" without express or
  16.  * implied warranty.
  17.  *
  18.  * OPEN SOFTWARE FOUNDATION DISCLAIMS ALL WARRANTIES WITH REGARD TO
  19.  * THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
  20.  * FITNESS, IN NO EVENT SHALL OPEN SOFTWARE FOUNDATIONN BE
  21.  * LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES 
  22.  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  23.  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  24.  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  25.  * 
  26.  *         M. Collins        OSF  
  27.  *
  28.  *         Katsuhisa Yano        TOSHIBA Corp.
  29.  */                
  30.  
  31. /*
  32.  
  33. Copyright (c) 1991  X Consortium
  34.  
  35. Permission is hereby granted, free of charge, to any person obtaining
  36. a copy of this software and associated documentation files (the
  37. "Software"), to deal in the Software without restriction, including
  38. without limitation the rights to use, copy, modify, merge, publish,
  39. distribute, sublicense, and/or sell copies of the Software, and to
  40. permit persons to whom the Software is furnished to do so, subject to
  41. the following conditions:
  42.  
  43. The above copyright notice and this permission notice shall be included
  44. in all copies or substantial portions of the Software.
  45.  
  46. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
  47. OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  48. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  49. IN NO EVENT SHALL THE X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR
  50. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  51. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  52. OTHER DEALINGS IN THE SOFTWARE.
  53.  
  54. Except as contained in this notice, the name of the X Consortium shall
  55. not be used in advertising or otherwise to promote the sale, use or
  56. other dealings in this Software without prior written authorization
  57. from the X Consortium.
  58.  
  59. */
  60.  
  61. /* $XFree86: xc/lib/X11/FSWrap.c,v 1.1.1.3.2.2 1998/05/18 14:08:38 dawes Exp $ */
  62.  
  63. #include "Xlib_private.h"
  64. #include "Xlcint.h"
  65. #include <ctype.h>
  66. #include <X11/Xos.h>
  67.  
  68.  
  69. #define    MAXLIST    256
  70.  
  71. char **
  72. _XParseBaseFontNameList(str, num)
  73.     char           *str;
  74.     int            *num;
  75. {
  76.     DBUG_ENTER("_XParseBaseFontNameList")
  77.     char           *plist[MAXLIST];
  78.     char          **list;
  79.     char           *ptr;
  80.  
  81.     *num = 0;
  82.     if (!str || !*str) {
  83.     DBUG_RETURN((char **)NULL);
  84.     }
  85.     while (*str && isspace(*str))
  86.     str++;
  87.     if (!*str)
  88.     DBUG_RETURN((char **)NULL);
  89.  
  90.     if (!(ptr = Xmalloc((unsigned)strlen(str) + 1))) {
  91.     DBUG_RETURN((char **)NULL);
  92.     }
  93.     strcpy(ptr, str);
  94.  
  95.     while (*num < sizeof(plist) / sizeof(plist[0])) {
  96.     char    *back;
  97.  
  98.     plist[*num] = ptr;
  99.     if ((ptr = strchr(ptr, ','))) {
  100.         back = ptr;
  101.     } else {
  102.         back = plist[*num] + strlen(plist[*num]);
  103.     }
  104.     while (isspace(*(back - 1)))
  105.         back--;
  106.     *back = '\0';
  107.     (*num)++;
  108.     if (!ptr)
  109.         break;
  110.     ptr++;
  111.     while (*ptr && isspace(*ptr))
  112.         ptr++;
  113.     if (!*ptr)
  114.         break;
  115.     }
  116.     if (!(list = (char **) Xmalloc((unsigned)sizeof(char *) * (*num + 1)))) {
  117.     Xfree(ptr);
  118.     DBUG_RETURN((char **)NULL);
  119.     }
  120.     memcpy((char *)list, (char *)plist, sizeof(char *) * (*num));
  121.     *(list + *num) = NULL;
  122.  
  123.     DBUG_RETURN(list);
  124. }
  125.  
  126. static char **
  127. copy_string_list(string_list, list_count)
  128.     char **string_list;
  129.     int list_count;
  130. {
  131.     DBUG_ENTER("copy_string_list")
  132.     char **string_list_ret, **list_src, **list_dst, *dst;
  133.     int length, count;
  134.  
  135.     if (string_list == NULL)
  136.     DBUG_RETURN((char **) NULL);
  137.  
  138.     string_list_ret = (char **) Xmalloc(sizeof(char *) * list_count);
  139.     if (string_list_ret == NULL)
  140.     DBUG_RETURN((char **) NULL);
  141.  
  142.     list_src = string_list;
  143.     count = list_count;
  144.     for (length = 0; count-- > 0; list_src++)
  145.     length += strlen(*list_src) + 1;
  146.  
  147.     dst = (char *) Xmalloc(length);
  148.     if (dst == NULL) {
  149.     Xfree(string_list_ret);
  150.     DBUG_RETURN((char **) NULL);
  151.     }
  152.  
  153.     list_src = string_list;
  154.     count = list_count;
  155.     list_dst = string_list_ret;
  156.     for ( ;  count-- > 0; list_src++) {
  157.     strcpy(dst, *list_src);
  158.     *list_dst++ = dst;
  159.     dst += strlen(dst) + 1;
  160.     }
  161.  
  162.     DBUG_RETURN(string_list_ret);
  163. }
  164.  
  165. #if NeedFunctionPrototypes
  166. XFontSet
  167. XCreateFontSet (
  168.     Display        *dpy,
  169.     _Xconst char   *base_font_name_list,
  170.     char         ***missing_charset_list,
  171.     int            *missing_charset_count,
  172.     char          **def_string)
  173. #else
  174. XFontSet
  175. XCreateFontSet (dpy, base_font_name_list, missing_charset_list,
  176.             missing_charset_count, def_string)
  177.     Display        *dpy;
  178.     char           *base_font_name_list;
  179.     char         ***missing_charset_list;
  180.     int            *missing_charset_count;
  181.     char          **def_string;
  182. #endif
  183. {
  184.     DBUG_ENTER("XCreateFontSet")
  185.     XOM om;
  186.     XOC oc;
  187.     XOMCharSetList *list;
  188.  
  189.     *missing_charset_list = NULL;
  190.     *missing_charset_count = 0;
  191.  
  192.     om = XOpenOM(dpy, NULL, NULL, NULL);
  193.     if (om == NULL) {
  194. #ifdef DEBUG
  195.     fprintf(stderr,"XCreateFontSet: XOpenOM failed!\n");
  196. #endif
  197.     DBUG_RETURN((XFontSet) NULL);
  198.     }
  199.     if ((oc = XCreateOC(om, XNBaseFontName, base_font_name_list, NULL))) {
  200.     list = &oc->core.missing_list;
  201.     oc->core.om_automatic = True;
  202.     } else {
  203.     list = &om->core.required_charset;
  204. #ifdef DEBUG
  205.     fprintf(stderr,"XCreateFontSet: XCreateOC failed!\n");
  206. #endif
  207.     }
  208.     
  209.     *missing_charset_list = copy_string_list(list->charset_list,
  210.                          list->charset_count);
  211.     *missing_charset_count = list->charset_count;
  212.  
  213.     if (list->charset_list && *missing_charset_list == NULL) {
  214. #ifdef DEBUG
  215.     fprintf(stderr,"XCreateFontSet: charset list missing!\n");
  216. #endif
  217.     oc = NULL;
  218.     }
  219.  
  220.     if (oc && def_string) {
  221.     *def_string = oc->core.default_string;
  222.     if (!*def_string)
  223.         *def_string = "";
  224.     }
  225.     
  226.     if (oc == NULL)
  227.     XCloseOM(om);
  228.  
  229.     DBUG_RETURN((XFontSet) oc);
  230. }
  231.  
  232. int
  233. XFontsOfFontSet(font_set, font_struct_list, font_name_list)
  234.     XFontSet        font_set;
  235.     XFontStruct  ***font_struct_list;
  236.     char         ***font_name_list;
  237. {
  238.     DBUG_ENTER("XFontsOfFontSet")
  239.     int result;
  240.     *font_name_list   = font_set->core.font_info.font_name_list;
  241.     *font_struct_list = font_set->core.font_info.font_struct_list;
  242.     result = font_set->core.font_info.num_font;
  243.     DBUG_RETURN(result);
  244. }
  245.  
  246. char *
  247. XBaseFontNameListOfFontSet(font_set)
  248.     XFontSet        font_set;
  249. {
  250.     DBUG_ENTER("XBaseFontNameListOfFontSet")
  251.     char *result = font_set->core.base_name_list;
  252.     DBUG_RETURN(result);
  253. }
  254.  
  255. char *
  256. XLocaleOfFontSet(font_set)
  257.     XFontSet        font_set;
  258. {
  259.     DBUG_ENTER("XLocaleOfFontSet")
  260.     char *result = font_set->core.om->core.lcd->core->name;
  261.     DBUG_RETURN(result);
  262. }
  263.  
  264. extern Bool XContextDependentDrawing(font_set)
  265.     XFontSet        font_set;
  266. {
  267.     DBUG_ENTER("XContextDependentDrawing")
  268.     Bool result = font_set->core.om->core.context_dependent;
  269.     DBUG_RETURN(result);
  270. }
  271.  
  272. Bool
  273. XDirectionalDependentDrawing(font_set)
  274.     XFontSet        font_set;
  275. {
  276.     DBUG_ENTER("XDirectionalDependentDrawing")
  277.     Bool result = font_set->core.om->core.directional_dependent;
  278.     DBUG_RETURN(result);
  279. }
  280.  
  281. Bool
  282. XContextualDrawing(font_set)
  283.     XFontSet        font_set;
  284. {
  285.     DBUG_ENTER("XContextualDrawing")
  286.     Bool result = font_set->core.om->core.contextual_drawing;
  287.     DBUG_RETURN(result);
  288. }
  289.  
  290. XFontSetExtents *
  291. XExtentsOfFontSet(font_set)
  292.     XFontSet        font_set;
  293. {
  294.     DBUG_ENTER("XExtentsOfFontSet")
  295.     XFontSetExtents *result = &font_set->core.font_set_extents;
  296.     DBUG_RETURN(result);
  297. }
  298.  
  299. void
  300. XFreeFontSet(dpy, font_set)
  301.     Display        *dpy;
  302.     XFontSet        font_set;
  303. {
  304.     DBUG_ENTER("XFreeFontSet")
  305.     XCloseOM(font_set->core.om);
  306.     DBUG_VOID_RETURN;
  307. }
  308.