mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-06 16:50:11 +00:00
7f2e4c38a9
Update includes subsequently where it matters. Fixes build on Mac OS
X 10.4.
(cherry picked from commit e634f3fbe0
)
51 lines
1.7 KiB
C
51 lines
1.7 KiB
C
/* gdkquartz.h
|
|
*
|
|
* Copyright (C) 2005-2007 Imendio AB
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef __GDK_QUARTZ_H__
|
|
#define __GDK_QUARTZ_H__
|
|
|
|
#include <AppKit/AppKit.h>
|
|
#include <gdk/gdkprivate.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
/* NSInteger only exists in Leopard and newer. This check has to be
|
|
* done after inclusion of the system headers. If NSInteger has not
|
|
* been defined, we know for sure that we are on 32-bit.
|
|
*/
|
|
#ifndef NSINTEGER_DEFINED
|
|
typedef int NSInteger;
|
|
typedef unsigned int NSUInteger;
|
|
#endif
|
|
|
|
#ifndef CGFLOAT_DEFINED
|
|
typedef float CGFloat;
|
|
#endif
|
|
|
|
NSWindow *gdk_quartz_window_get_nswindow (GdkWindow *window);
|
|
NSView *gdk_quartz_window_get_nsview (GdkWindow *window);
|
|
NSImage *gdk_quartz_pixbuf_to_ns_image_libgtk_only (GdkPixbuf *pixbuf);
|
|
id gdk_quartz_drag_context_get_dragging_info_libgtk_only (GdkDragContext *context);
|
|
NSEvent *gdk_quartz_event_get_nsevent (GdkEvent *event);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GDK_QUARTZ_H__ */
|