1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
|
/* $XConsortium: XmStringGet.c /main/6 1995/09/19 23:13:21 cde-sun $ */
/*
* Motif
*
* Copyright (c) 1987-2012, The Open Group. All rights reserved.
*
* These libraries and programs are free software; you can
* redistribute them and/or modify them under the terms of the GNU
* Lesser General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* These libraries and programs are distributed in the hope that
* they will be useful, but WITHOUT ANY WARRANTY; without even the
* implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU Lesser General Public License for more
* details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with these librararies and programs; if not, write
* to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301 USA
*
*/
/*
* HISTORY
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "XmStringI.h"
#include "XmI.h"
XmStringComponentType
XmStringGetNextComponent(
XmStringContext context,
char **text,
XmStringTag *str_tag,
XmStringDirection *direction,
XmStringComponentType *unknown_tag,
unsigned short *unknown_length,
unsigned char **unknown_value )
{
XmStringComponentType type;
unsigned int len;
XtPointer val;
_XmProcessLock();
type = XmeStringGetComponent((_XmStringContext) context, True, True, &len, &val);
/* Case on return type */
/* Set appropriate return value and return. */
switch (type)
{
case XmSTRING_COMPONENT_DIRECTION:
*direction = *(XmStringDirection *)val;
XtFree((char *)val);
break;
case XmSTRING_COMPONENT_TAG:
*str_tag = (XmStringTag)val;
break;
case XmSTRING_COMPONENT_TEXT:
case XmSTRING_COMPONENT_LOCALE_TEXT:
*text = (char *)val;
break;
case XmSTRING_COMPONENT_SEPARATOR:
case XmSTRING_COMPONENT_END:
break;
default:
*unknown_tag = type;
*unknown_length = len;
*unknown_value = (unsigned char *)val;
type = XmSTRING_COMPONENT_UNKNOWN;
}
_XmProcessUnlock();
return(type);
}
XmStringComponentType
XmStringPeekNextComponent(XmStringContext context)
{
unsigned int len;
XtPointer val;
return XmeStringGetComponent((_XmStringContext) context, False, False, &len, &val);
}
/*
* fetch the first text 'segment' of the external TCS that matches the given
* char set.
*/
Boolean
XmStringGetLtoR(
XmString string,
XmStringTag tag,
char **text )
{
XmStringContext context;
char * t;
XmStringTag c, curtag = NULL;
XmStringDirection d;
Boolean s, is_local = FALSE, done = FALSE, is_default = FALSE;
_XmProcessLock();
if (!string) {
_XmProcessUnlock();
return(FALSE);
}
if (!tag) {
_XmProcessUnlock();
return (FALSE);
}
if ((tag == XmFONTLIST_DEFAULT_TAG) ||
(strcmp(tag, XmFONTLIST_DEFAULT_TAG) == 0))
is_local = TRUE;
*text = NULL; /* pre-condition result */
if (!is_local)
{
if ((strcmp(tag, XmSTRING_DEFAULT_CHARSET) == 0))
{
curtag = _XmStringGetCurrentCharset();
is_default = TRUE;
}
else curtag = tag;
}
XmStringInitContext (&context, string);
while ( ! done)
{
if (XmStringGetNextSegment (context, &t, &c, &d, &s))
{
if (c && ((d == XmSTRING_DIRECTION_L_TO_R) ||
(d == XmSTRING_DIRECTION_UNSET)) &&
(((is_local || is_default) &&
((c == XmFONTLIST_DEFAULT_TAG) ||
(strcmp(c, XmFONTLIST_DEFAULT_TAG) == 0) ||
(strcmp(c, _XmStringGetCurrentCharset()) == 0))) ||
(curtag && (strcmp (c, curtag) == 0))))
{
*text = t; /* OK, pass text to caller */
done = TRUE;
}
else
XtFree (t); /* not this text */
if (c)
XtFree (c); /* always dump charset */
}
else
done = TRUE;
}
XmStringFreeContext (context);
_XmProcessUnlock();
return (*text != NULL);
}
|