gecko-dev/cmd/xfe/XfeWidgets/Xfe/StringUtil.c

139 строки
3.8 KiB
C

/* -*- Mode: C; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
*
* The contents of this file are subject to the Netscape Public License
* Version 1.0 (the "NPL"); you may not use this file except in
* compliance with the NPL. You may obtain a copy of the NPL at
* http://www.mozilla.org/NPL/
*
* Software distributed under the NPL is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
* for the specific language governing rights and limitations under the
* NPL.
*
* The Initial Developer of this code under the NPL is Netscape
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
* Reserved.
*/
/*-----------------------------------------*/
/* */
/* Name: <Xfe/StringUtil.c> */
/* Description: Xfe widgets XmString utilities. */
/* Author: Ramiro Estrugo <ramiro@netscape.com> */
/* */
/*----------------------------------------------------------------------*/
#include <Xfe/XfeP.h>
#include <Xm/LabelP.h>
#include <Xm/LabelGP.h>
#include <Xfe/LabelP.h>
/*----------------------------------------------------------------------*/
/* */
/* This function is useful when effecient access to a widget's */
/* XmNlabelString is needed. It avoids the GetValues() and */
/* XmStringCopy() overhead. Of course, the result should be */
/* considered read only. */
/* */
/*----------------------------------------------------------------------*/
/* extern */ XmString
XfeFastAccessLabelString(Widget w)
{
XmString label_string = NULL;
assert( _XfeIsAlive(w) );
if (!_XfeIsAlive(w))
{
return NULL;
}
if (XfeIsLabel(w))
{
label_string = ((XfeLabelWidget) w) -> xfe_label . label_string;
}
#ifdef DEBUG_ramiro
else
{
assert( 0 );
}
#endif
return label_string;
}
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/* */
/* XmString utils */
/* */
/*----------------------------------------------------------------------*/
/* extern */ XmString
XfeXmStringCopy(Widget w,XmString xm_string,String fallback)
{
XmString new_xm_string;
/* Make sure the string is setup properly */
if (!xm_string)
{
/* If no xmstring is given, create using the fallback cstring */
new_xm_string = XmStringCreateLocalized(fallback);
}
else
{
/* Otherwise make a carbon copy - no check done to verify xmstring */
new_xm_string = XmStringCopy(xm_string);
}
return new_xm_string;
}
/*----------------------------------------------------------------------*/
/* extern */ String
XfeXmStringGetPSZ(XmString xm_string,char * tag)
{
String psz_string = NULL;
if (xm_string)
{
XmStringGetLtoR(xm_string,tag,&psz_string);
}
return psz_string;
}
/*----------------------------------------------------------------------*/
/*extern*/ void
XfeSetXmStringPSZ(Widget w,String name,char * tag,char * value)
{
XmString xm_string;
assert( w != NULL );
assert( name != NULL );
xm_string = XmStringCreateLtoR(value,tag);
XtVaSetValues(w,name,xm_string,NULL);
if (xm_string)
{
XmStringFree(xm_string);
}
}
/*----------------------------------------------------------------------*/
/*----------------------------------------------------------------------*/
/* */
/* XmStringTable utils */
/* */
/*----------------------------------------------------------------------*/
/* extern */ XmString *
XfeXmStringTableCopy(XmString * items,Cardinal num_items)
{
XmString * copy = NULL;
return copy;
}
/*----------------------------------------------------------------------*/