/* $XConsortium: ObsoXme.c /main/5 1995/07/15 20:54:09 drk $ */ /* * @OPENGROUP_COPYRIGHT@ * COPYRIGHT NOTICE * Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc. * Copyright (c) 1996, 1997, 1998, 1999, 2000 The Open Group * ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for * the full copyright text. * * This software is subject to an open license. It may only be * used on, with or for operating systems which are themselves open * source systems. You must contact The Open Group for a license * allowing distribution and sublicensing of this software on, with, * or for operating systems which are not Open Source programs. * * See http://www.opengroup.org/openmotif/license for full * details of the license agreement. Any use, reproduction, or * distribution of the program constitutes recipient's acceptance of * this agreement. * * EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS * PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY * WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY * OR FITNESS FOR A PARTICULAR PURPOSE * * EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT * NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE * EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGES. * */ /* * HISTORY */ /* ** This file contains the _Xm routines replaced by Xme functions ** in 2.0. We do not want to mix them with other _Xm in Obso2_0.c ** since there is a higher probability that these have been used ** by programs (that's why they are Xme now) */ #define NO_XM_1_2_BC #include #include #include #include "RegionI.h" #include /****************************_XmDrawShadows****************************/ void _XmDrawShadows(Display *display, Drawable d, GC top_gc, GC bottom_gc, #if NeedWidePrototypes int x, int y, int width, int height, int shad_thick, #else Position x, Position y, Dimension width, Dimension height, Dimension shad_thick, #endif unsigned int shad_type) { XmeDrawShadows(display, d, top_gc, bottom_gc, x, y, width, height, shad_thick, shad_type); } /*****************************_XmClearBorder*********************************/ void _XmClearBorder (Display *display, Window w, #if NeedWidePrototypes int x, int y, int width, int height, int shadow_thick) #else Position x, Position y, Dimension width, Dimension height, Dimension shadow_thick) #endif /* NeedWidePrototypes */ { XmeClearBorder (display, w, x, y, width, height, shadow_thick); } /******************************_XmDrawSeparator**********************/ void _XmDrawSeparator(Display *display, Drawable d, GC top_gc, GC bottom_gc, GC separator_gc, #if NeedWidePrototypes int x, int y, int width, int height, int shadow_thick, int margin, unsigned int orientation, unsigned int separator_type) #else Position x, Position y, Dimension width, Dimension height, Dimension shadow_thick, Dimension margin, unsigned char orientation, unsigned char separator_type) #endif /* NeedWidePrototypes */ { XmeDrawSeparator(display, d, top_gc, bottom_gc, separator_gc, x, y, width, height, shadow_thick, margin, orientation, separator_type); } /***********************_XmDrawDiamond**********************************/ void _XmDrawDiamond(Display *display, Drawable d, GC top_gc, GC bottom_gc, GC center_gc, #if NeedWidePrototypes int x, int y, int width, int height, int shadow_thick, int fill) #else Position x, Position y, Dimension width, Dimension height, Dimension shadow_thick, Dimension fill) #endif /* NeedWidePrototypes */ { XmeDrawDiamond (display, d, top_gc, bottom_gc, center_gc, x, y, width, height, shadow_thick, fill); } /****************************_XmDrawSimpleHighlight************************/ void _XmDrawSimpleHighlight(Display *display, Drawable d, GC gc, #if NeedWidePrototypes int x, int y, int width, int height, int highlight_thickness) #else Position x, Position y, Dimension width, Dimension height, Dimension highlight_thickness) #endif /* NeedWidePrototypes */ { XmeDrawHighlight(display, d, gc, x, y, width, height, highlight_thickness); } /****************************_XmDrawArrow**********************************/ void _XmDrawArrow(Display *display, Drawable d, GC top_gc, GC bot_gc, GC cent_gc, #if NeedWidePrototypes int x, int y, int width, int height, int shadow_thick, unsigned int direction) #else Position x, Position y, Dimension width, Dimension height, Dimension shadow_thick, unsigned char direction) #endif /* NeedWidePrototypes */ { XmeDrawArrow(display, d, top_gc, bot_gc, cent_gc, x, y, width, height, shadow_thick, direction); } /**********************************************************************/ void _XmFromHorizontalPixels( Widget widget, int offset, XtArgVal *value ) { XmeFromHorizontalPixels(widget, offset, value); } /**********************************************************************/ void _XmFromVerticalPixels( Widget widget, int offset, XtArgVal *value ) { XmeFromVerticalPixels(widget, offset, value); } /**********************************************************************/ XmImportOperator _XmToHorizontalPixels( Widget widget, int offset, XtArgVal *value ) { return XmeToHorizontalPixels( widget, offset, value ); } /********************************************************************/ XmImportOperator _XmToVerticalPixels( Widget widget, int offset, XtArgVal *value ) { return XmeToVerticalPixels( widget, offset, value ); } /********************************************************************/ void _XmNavigChangeManaged( Widget wid ) { XmeNavigChangeManaged(wid); } /********************************************************************/ void _XmRedisplayGadgets( Widget w, register XEvent *event, Region region ) { XmeRedisplayGadgets( w, event, region ); } /********************************************************************/ Widget _XmGetTextualDragIcon( Widget w ) { return XmeGetTextualDragIcon(w); } /********************************************************************/ void _XmVirtualToActualKeysym( Display *dpy, KeySym virtKeysym, KeySym *actualKeysymRtn, Modifiers *modifiersRtn ) { int num_keys; XmKeyBinding keys; /* Initialize the return parameters. */ *actualKeysymRtn = NoSymbol; *modifiersRtn = 0; /* Arbitrarily return the first keysym in the list. */ num_keys = XmeVirtualToActualKeysyms(dpy, virtKeysym, &keys); if (num_keys > 0) { *actualKeysymRtn = keys[0].keysym; *modifiersRtn = keys[0].modifiers; } XtFree((char*) keys); } /********************************************************************/ Cursor _XmGetNullCursor( Widget w ) { return XmeGetNullCursor(w); } /********************************************************************/ void _XmWarning( Widget w, char *message ) { XmeWarning( w, message ); } /********************************************************************/ XmFontList _XmGetDefaultFontList( Widget w, #if NeedWidePrototypes unsigned int fontListType ) #else unsigned char fontListType ) #endif /* NeedWidePrototypes */ { return XmeGetDefaultRenderTable( w, fontListType ); } /********************************************************************/ Boolean _XmFontListGetDefaultFont( XmFontList fontlist, XFontStruct **font_struct ) { return XmeRenderTableGetDefaultFont(fontlist, font_struct); } /********************************************************************/ XtGeometryResult _XmGMReplyToQueryGeometry(Widget widget, XtWidgetGeometry * intended, XtWidgetGeometry * desired) { return XmeReplyToQueryGeometry(widget, intended, desired); } /********************************************************************/ Boolean _XmStringsAreEqual( register char *in_str, register char *test_str ) { return XmeNamesAreEqual( in_str, test_str ); } /********************************************************************/ void _XmGetMaxCursorSize( Widget w, Dimension *width, Dimension *height ) { XmeQueryBestCursorSize(w, width, height); } /********************************************************************/ Boolean _XmStringIsXmString( XmString string ) { return XmeStringIsValid(string); } /********************************************************************/ XmGadget _XmInputInGadget( Widget wid, register int x, register int y ) { return (XmGadget) XmObjectAtPoint( wid, x, y ); } /********************************************************************/ XmString _XmOSGetLocalizedString( char *reserved, Widget widget, char *resource, String string) { return XmeGetLocalizedString( reserved, widget, resource, string); } /********************************************************************/ int _XmMicroSleep( long usecs) { return XmeMicroSleep( usecs ); } /********************************************************************/ String _XmOSGetHomeDirName() { return XmeGetHomeDirName(); } /********************************************************************/ void _XmStringUpdateWMShellTitle( XmString xmstr, Widget shell) { XmeSetWMShellTitle(xmstr, shell); } /************************************************************************ * * _XmResizeObject * Change the width or height of a widget or gadget. * ************************************************************************/ void _XmResizeObject( Widget wid, #if NeedWidePrototypes int width, int height, int border_width ) #else Dimension width, Dimension height, Dimension border_width ) #endif /* NeedWidePrototypes */ { RectObj g = (RectObj) wid ; XmDropSiteStartUpdate(wid); if (XtIsWidget (g)) XtResizeWidget ((Widget) g, width, height, border_width); else XmeConfigureObject((Widget) g, g->rectangle.x, g->rectangle.y, width, height, 0); XmDropSiteEndUpdate(wid); } /************************************************************************ * * _XmMoveObject * Change the origin of a widget or gadget. * ************************************************************************/ void _XmMoveObject( Widget wid, #if NeedWidePrototypes int x, int y ) #else Position x, Position y ) #endif /* NeedWidePrototypes */ { RectObj g = (RectObj) wid ; XmDropSiteStartUpdate(wid); if (XtIsWidget (g)) XtMoveWidget ((Widget) g, x, y); else XmeConfigureObject((Widget) g, x, y, g->rectangle.width, g->rectangle.height, 0); XmDropSiteEndUpdate(wid); } /************************************************************************ * * _XmConfigureObject * Change the dimensional aspects of a widget or gadget. * ************************************************************************/ void _XmConfigureObject( Widget wid, #if NeedWidePrototypes int x, int y, int width, int height, int border_width ) #else Position x, Position y, Dimension width, Dimension height, Dimension border_width ) #endif /* NeedWidePrototypes */ { XmeConfigureObject( wid, x, y, width, height, border_width ); }