diff src/macgui.h @ 50221:609980fd9f79

(No_Cursor): Define as 0 for Mac. (XRectangle): Add X compatible rectangle type. (NativeRectangle): Declare as Rect for Mac. (CONVERT_TO_XRECT, CONVERT_FROM_XRECT, STORE_NATIVE_RECT): New macros.
author Kim F. Storm <storm@cua.dk>
date Fri, 21 Mar 2003 13:49:57 +0000
parents 8ff568a30195
children c0f3ec529c05
line wrap: on
line diff
--- a/src/macgui.h	Fri Mar 21 13:49:48 2003 +0000
+++ b/src/macgui.h	Fri Mar 21 13:49:57 2003 +0000
@@ -30,6 +30,8 @@
 
 typedef unsigned long Time;
 
+#define No_Cursor (0)  /* fix later */
+
 #if MAC_OSX
 typedef struct OpaqueWindowPtr* Window;
 #else
@@ -169,5 +171,30 @@
 
 extern int XParseGeometry ();
 
+typedef struct {
+    int x, y;
+    unsigned width, height;
+} XRectangle;
+
+#define NativeRectangle Rect
+
+#define CONVERT_TO_XRECT(xr,nr)			\
+  ((xr).x = (nr).left,				\
+   (xr).y = (nr).top,				\
+   (xr).width = ((nr).right - (nr).left),	\
+   (xr).height = ((nr).bottom - (nr).top))
+
+#define CONVERT_FROM_XRECT(xr,nr)		\
+  ((nr).left = (xr).x,				\
+   (nr).top = (xr).y,				\
+   (nr).right = ((xr).x + (xr).width),		\
+   (nr).bottom = ((xr).y + (xr).height))
+
+#define STORE_NATIVE_RECT(nr,x,y,width,height)	\
+  ((nr).left = (x),				\
+   (nr).top = (y),				\
+   (nr).right = ((nr).left + (width)),		\
+   (nr).bottom = ((nr).top + (height)))
+
 #endif /* EMACS_MACGUI_H */