diff options
author | hobbs <hobbs> | 1999-12-14 06:52:56 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-14 06:52:56 (GMT) |
commit | 62e9e6611d2da6b8113210d5002611c40909231e (patch) | |
tree | d71daf20f0d14dbde6c6e706cba933f5c57bfa4f /mac/tkMacXStubs.c | |
parent | b6b6ff8f0eee42e270a45b019789faa444ed4dad (diff) | |
download | tk-62e9e6611d2da6b8113210d5002611c40909231e.zip tk-62e9e6611d2da6b8113210d5002611c40909231e.tar.gz tk-62e9e6611d2da6b8113210d5002611c40909231e.tar.bz2 |
* mac/tkMacDraw.c: mac still needs pointer warping routine
* mac/tkMacXStubs.c:
* win/tkWinDraw.c:
* win/tkWinPointer.c: added support for pointer warping and
platform specific support for dash patch items
Diffstat (limited to 'mac/tkMacXStubs.c')
-rw-r--r-- | mac/tkMacXStubs.c | 62 |
1 files changed, 61 insertions, 1 deletions
diff --git a/mac/tkMacXStubs.c b/mac/tkMacXStubs.c index a099c78..a555ecf 100644 --- a/mac/tkMacXStubs.c +++ b/mac/tkMacXStubs.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacXStubs.c,v 1.7 1999/05/22 06:35:49 jingham Exp $ + * RCS: @(#) $Id: tkMacXStubs.c,v 1.8 1999/12/14 06:52:56 hobbs Exp $ */ #include "tkInt.h" @@ -463,6 +463,66 @@ XSendEvent( return 0; } +void +XClearWindow(display, w) + Display* display; + Window w; +{ +} + +void +XDrawPoint(display, d, gc, x, y) + Display* display; + Drawable d; + GC gc; + int x; + int y; +{ +} + +void +XDrawPoints(display, d, gc, points, npoints, mode) + Display* display; + Drawable d; + GC gc; + XPoint* points; + int npoints; + int mode; +{ +} + +void +XWarpPointer(display, src_w, dest_w, src_x, src_y, src_width, + src_height, dest_x, dest_y) + Display* display; + Window src_w; + Window dest_w; + int src_x; + int src_y; + unsigned int src_width; + unsigned int src_height; + int dest_x; + int dest_y; +{ +} + +void +XQueryColor(display, colormap, def_in_out) + Display* display; + Colormap colormap; + XColor* def_in_out; +{ +} + +void +XQueryColors(display, colormap, defs_in_out, ncolors) + Display* display; + Colormap colormap; + XColor* defs_in_out; + int ncolors; +{ +} + int XGetWindowProperty( Display *display, |