/**
 *
 * $Id: LTCvt.c,v 1.4 1997/12/28 21:34:51 u27113 Exp $
 *
 * Copyright (C) 1995 Free Software Foundation, Inc.
 *
 * This file is part of the GNU LessTif Library.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public
 * License along with this library; if not, write to the Free
 * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 *
 **/

static char rcsid[] = "$Id: LTCvt.c,v 1.4 1997/12/28 21:34:51 u27113 Exp $";

#ifdef NONSTANDARD_CONVERTERS 

#include <LTconfig.h>
#include <XmI/XmI.h>
#include <XmI/HashI.h>
#include <X11/Xfuncs.h>
#include <XmI/ImageCacheI.h>

#include <Xm/XmP.h>
#include <Xm/ScreenP.h>

#include<XmI/XmXpm.h>

#include <XmI/DebugUtil.h>

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static char *_search_path = NULL;

extern void LTCreateSearchPath(void);
extern Boolean LTAddPixmapToCache(char *pixmap_name, Pixmap pixmap,
				  Screen *screen,
				  Pixel foreground, Pixel background,
				  int depth, int width, int height,
				  int hot_x, int hot_y);

/*
 * _XmNSEGetPixmap is not part of the OSF/Motif API.
 * This routine is used with the string to pixmap converter
 * routine.  It does a lookup into the cache based on the name
 * of the pixmap and also where the foreground, background
 * and depth are equal to zero.
 */
Pixmap
_XmNSEGetPixmap(Screen *screen, char *fname)
{
    static Colormap _cmap;

    XmXpmAttributes xpm_attrib;
    Pixmap pmap;
    Pixmap mask;

    Display *dpy;
    Window w;

    char *pathname_to_pixmap = NULL;

    dpy = DisplayOfScreen(screen);
    w = RootWindowOfScreen(screen);

    /* initialize colormap if it hasn't been done */
    if (_cmap == (Colormap)NULL)
    {
	XWindowAttributes w_attrib;
	XGetWindowAttributes(dpy, w, &w_attrib);
	_cmap = w_attrib.colormap;
    }

    /*
     * Set the foreground, background and depth all to zero 
     * for now.
     */
    pmap = XmGetPixmapByDepth(screen, fname, 0, 0, 0);
    if (pmap != XmUNSPECIFIED_PIXMAP)
    {
	return pmap;
    }

    if (_search_path == NULL)
    {
	LTCreateSearchPath();
    }

    /*
     * Attempt to find pixmap in search_path
     * if an absolute path was not given.
     */
    if (fname != NULL && fname[0] == '/')
    {
	pathname_to_pixmap = XtNewString(fname);
    }
    else
    {
	SubstitutionRec sub;

	sub.match = 'B';
	sub.substitution = fname;

	pathname_to_pixmap = XtResolvePathname(dpy,
					       "bitmaps",
					       NULL,
					       NULL,
					       _search_path,
					       &sub,
					       1,
					       NULL);
    }

    if (pathname_to_pixmap == NULL || strlen(pathname_to_pixmap) == 0)
    {
	return XmUNSPECIFIED_PIXMAP;
    }

    xpm_attrib.colormap = _cmap;
    xpm_attrib.closeness = 40000;
    xpm_attrib.valuemask = XmXpmSize | XmXpmReturnPixels
	| XmXpmColormap | XmXpmCloseness;

    if (_XmXpmReadFileToPixmap(dpy, w, pathname_to_pixmap,
			       &pmap, &mask,
			       &xpm_attrib) == XmXpmSuccess)
    {
	LTAddPixmapToCache(fname, pmap, screen, 0, 0, 0, 0, 0, 0, 0);
	/* FIX ME! */
    }
    else
    {
	/* could not find it so lets return it as unspecified */
	pmap = XmUNSPECIFIED_PIXMAP;
    }

    XtFree(pathname_to_pixmap);

    return pmap;
}

/*
 * _XmNSECvtStringToPixmap is not part of the OSF/Motif API.
 * This routine is used to convert a string to a pixmap.
 * This is done by calling the _XmNSEGetPixmap routine with the
 * supplied string.  
 */
static Boolean
_XmNSECvtStringToPixmap(Display *dpy,
		        XrmValue *args,
		        Cardinal *num_args,
		        XrmValue *from,
		        XrmValue *to,
		        XtPointer *converter_data)
{
    static Pixmap _pmap;
    Screen *screen;
    char *name;
    Pixmap _XmNSEGetPixmap(Screen *, char *);

    if (_XmGetDefaultDisplay() == NULL)
    {
	return False;
    }

    if (*num_args != 1)
    {
	XtWarningMsg("wrongParameters",
		     "cvtStringToPixmap",
		     "XtToolkitError",
		     "String to Pixmap conversion needs screen argument",
		     (String *)NULL,
		     (Cardinal *)NULL);
    }

    /* get arguments */
    screen = *((Screen **)args[0].addr);
    name = (char *)from->addr;

    /* over kill check */
    if (name == NULL
	|| strcmp(name, "None") == 0
	|| strcmp(name, "XmUNSPECIFIED_PIXMAP") == 0)
    {
	_pmap = XmUNSPECIFIED_PIXMAP;
    }
    else
    {
	_pmap = _XmNSEGetPixmap(screen, name);
    }

    if (to->addr == NULL)
    {
	to->addr = (XPointer)&_pmap;
	to->size = sizeof(Pixmap);
    }
    else
    {
	if (to->size >= sizeof(Pixmap))
	{
	    *((Pixmap *)to->addr) = _pmap;
	    to->size = sizeof(Pixmap);
	}
	else
	{
	    XtDisplayStringConversionWarning(dpy, (char *)from->addr,
					     XmRPixmap);
	}
    }

    converter_data = converter_data;	/* keeps compiler happy */

    return True;
}

/* Begin stuff copied from X11/Xmu/Converters.h */
#define XtRShapeStyle "ShapeStyle"
#define XtERectangle "Rectangle"
#define XtEOval "Oval"
#define XtEEllipse "Ellipse"
#define XtERoundedRectangle "RoundedRectangle"

#define XmuShapeRectangle 1
#define XmuShapeOval 2
#define XmuShapeEllipse 3
#define XmuShapeRoundedRectangle 4
/* End stuff copied from X11/Xmu/Converters.h */

#ifndef	XtCXtToolkitError
#define	XtCXtToolkitError	"XtToolkitError"
#endif

static String XtNwrongParameters = "wrongParameters";

typedef struct
{
    int value;
    char *name;
    int size;
}
ConversionMap;

static ConversionMap boolean_map[] =
{
    {True, XtEtrue, sizeof(XtEtrue)},
    {False, XtEfalse, sizeof(XtEfalse)},
    {True, XtEon, sizeof(XtEon)},
    {False, XtEoff, sizeof(XtEoff)},
    {True, XtEyes, sizeof(XtEyes)},
    {False, XtEno, sizeof(XtEno)},
};

static ConversionMap shape_style_map[] =
{
    {XmuShapeRectangle, XtERectangle, sizeof(XtERectangle)},
    {XmuShapeRectangle, "ShapeRectangle", sizeof("ShapeRectangle")},
    {XmuShapeOval, XtEOval, sizeof(XtEOval)},
    {XmuShapeOval, "ShapeOval", sizeof("ShapeOval")},
    {XmuShapeEllipse, "ShapeEllipse", sizeof("ShapeEllipse")},
    {XmuShapeEllipse, XtEEllipse, sizeof(XtEEllipse)},
    {XmuShapeRoundedRectangle, "ShapeRoundedRectangle",
     sizeof("ShapeRoundedRectangle")},
    {XmuShapeRoundedRectangle, XtERoundedRectangle,
     sizeof(XtERoundedRectangle)},
};


#define	string_convert_done(value) \
	{							\
	    if (toVal->addr != NULL) {				\
		if (toVal->size < size) {		        \
		    toVal->size = size;			        \
		    return False;				\
		}						\
		strcpy((char *) toVal->addr, value);	\
	    }							\
	    else {						\
		toVal->addr = (XtPointer)value;			\
	    }							\
	    toVal->size = size; 				\
	    return True;					\
	}

#define map_convert_done(value) \
	{							\
	    if (toVal->addr != NULL) {				\
		if (toVal->size < value.size) {		        \
		    toVal->size = value.size;		        \
		    return False;				\
		}						\
		strcpy((char *) toVal->addr, value.name);	\
	    }							\
	    else {						\
		toVal->addr = value.name;       		\
	    }							\
	    toVal->size = value.size; 				\
	    return True;					\
	}

static Boolean _XmNSECvtShapeStyleToString();
static Boolean _XmNSECvtBooleanToString();
static Boolean _XmNSECvtBoolToString();

static void
XtDisplayConversionWarning(type, from, to)
     String type;
     int from;
     String to;
{
    String params[2];
    Cardinal num_params = 2;

    params[0] = (String)from;
    params[1] = (String)to;
    XtWarningMsg("conversionError", type, XtCXtToolkitError,
		 "Cannot convert value %d to type %s",
		 params, &num_params);
}

static Boolean
_XmNSECvtShapeStyleToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int *i = (int *)(fromVal->addr);
    int index;


    for (index = 0; XtNumber(shape_style_map); index++)
    {
	if (*i == shape_style_map[index].value)
	{
	    map_convert_done(shape_style_map[index]);
	}
    }

    XtDisplayConversionWarning(XtRShapeStyle, *i, XtRString);
    return False;
}

static Boolean
_XmNSECvtBooleanToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    Boolean *i = (Boolean *)(fromVal->addr);
    int index;


    for (index = 0; XtNumber(boolean_map); index++)
    {
	if (*i == boolean_map[index].value)
	{
	    map_convert_done(boolean_map[index]);
	}
    }

    XtDisplayConversionWarning(XtRBoolean, *i, XtRString);
    return False;
}

static Boolean
_XmNSECvtBoolToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    Boolean *i = (Boolean *)(fromVal->addr);
    int index;


    for (index = 0; XtNumber(boolean_map); index++)
    {
	if (*i == boolean_map[index].value)
	{
	    map_convert_done(boolean_map[index]);
	}
    }

    XtDisplayConversionWarning(XtRBool, *i, XtRString);
    return False;
}

static Boolean
_XmNSECvtPositionToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
		  XtNwrongParameters, "cvtPositionToString", XtCXtToolkitError,
		      "Position to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "%d", *(Position *)fromVal->addr);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtIntToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
			XtNwrongParameters, "cvtIntToString", XtCXtToolkitError,
			"Int to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "%d", *(int *)fromVal->addr);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtCardinalToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
		  XtNwrongParameters, "cvtCardinalToString", XtCXtToolkitError,
		      "Cardinal to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "%d", *(Cardinal *)fromVal->addr);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtPixelToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
		     XtNwrongParameters, "cvtPixelToString", XtCXtToolkitError,
			"Pixel to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "%ld", *(Pixel *)fromVal->addr);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtColorToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
		     XtNwrongParameters, "cvtColorToString", XtCXtToolkitError,
			"Color to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "rgb:%04hx/%04hx/%04hx", ((XColor *)fromVal->addr)->red,
	    ((XColor *)fromVal->addr)->green, ((XColor *)fromVal->addr)->blue);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtUnsignedCharToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
			XtNwrongParameters, "cvtUnsignedCharToString",
			XtCXtToolkitError,
		  "UnsignedChar to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "%d", *(unsigned char *)fromVal->addr);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtDimensionToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    static char buffer[32];

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
		 XtNwrongParameters, "cvtDimensionToString", XtCXtToolkitError,
		     "Dimension to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    sprintf(buffer, "%d", *(Dimension *)fromVal->addr);
    size = strlen(buffer);
    string_convert_done(buffer);
}

static Boolean
_XmNSECvtXmStringToString(dpy, args, numArgs, fromVal, toVal, data)
     Display *dpy;
     XrmValue *args;
     Cardinal *numArgs;
     XrmValue *fromVal;
     XrmValue *toVal;
     XtPointer *data;
{
    int size;
    char *s;

    DEBUGOUT(XdbDebug(__FILE__, NULL, "_XmNSECvtXmStringToString\n"));

    if (*numArgs != 0)
    {
	XtAppWarningMsg(XtDisplayToApplicationContext(dpy),
		 XtNwrongParameters, "cvtDimensionToString", XtCXtToolkitError,
		      "XmString to String conversion needs no extra arguments",
			(String *)NULL, (Cardinal *)NULL);
    }

    if (XmStringGetLtoR(*(XmString *)fromVal->addr, XmFONTLIST_DEFAULT_TAG, &s))
    {
	/* There's a memory leak here : nobody does free(s) */
	size = strlen(s);
	string_convert_done(s);
    }
    return False;		/* Conversion failed */
}

/* this is needed for the string to pixmap converter */
static XtConvertArgRec args[] =
{
    {
	XtBaseOffset,
	(XtPointer)XtOffsetOf(WidgetRec, core.screen),
	sizeof(Screen *)
    }
};

/*
 * register nonstandard extensions, if any
 */
void
_XmRegisterNSEConverters()
{
#if 1
    XtSetTypeConverter(XmRString,	/* source type */
		       XmRPixmap,	/* target type */
		       _XmNSECvtStringToPixmap,	/* converter routine */
		       args,	/* args for converter routine */
		       XtNumber(args),	/* number of args for converter */
		       XtCacheNone,	/* caching instructions */
		       NULL);	/* destructor function */
#endif

    XtSetTypeConverter(XmRString,	/* source type */
		       XmRXmBackgroundPixmap,	/* target type */
		       _XmNSECvtStringToPixmap,	/* converter routine */
		       args,	/* args for converter routine */
		       XtNumber(args),	/* number of args for converter */
		       XtCacheNone,	/* caching instructions */
		       NULL);	/* destructor function */

    /* Converters for reverse-direction Editres below */
    XtSetTypeConverter(XtRShapeStyle, XtRString, _XmNSECvtShapeStyleToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRBoolean, XtRString, _XmNSECvtBooleanToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRBool, XtRString, _XmNSECvtBoolToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRShapeStyle, XtRString, _XmNSECvtShapeStyleToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRBoolean, XtRString, _XmNSECvtBooleanToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRBool, XtRString, _XmNSECvtBoolToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRPosition, XtRString, _XmNSECvtPositionToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRInt, XtRString, _XmNSECvtIntToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRCardinal, XtRString, _XmNSECvtCardinalToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRPixel, XtRString, _XmNSECvtPixelToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRColor, XtRString, _XmNSECvtColorToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRUnsignedChar, XtRString,
		       _XmNSECvtUnsignedCharToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XtRDimension, XtRString, _XmNSECvtDimensionToString,
		       NULL, 0, XtCacheNone, NULL);
    XtSetTypeConverter(XmRXmString, XtRString, _XmNSECvtXmStringToString,
		       NULL, 0, XtCacheNone, NULL);
}

#endif /* NONSTANDARD_CONVERTERS */
