]> Pileus Git - ~andy/gtk/blob - gdk/quartz/gdkquartzwindow.h
Change FSF Address
[~andy/gtk] / gdk / quartz / gdkquartzwindow.h
1 /* gdkquartzwindow.h
2  *
3  * Copyright (C) 2005  Imendio AB
4  * Copyright (C) 2010  Kristian Rietveld  <kris@gtk.org>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #if !defined (__GDKQUARTZ_H_INSIDE__) && !defined (GDK_COMPILATION)
21 #error "Only <gdk/gdkquartz.h> can be included directly."
22 #endif
23
24 #ifndef __GDK_QUARTZ_WINDOW_H__
25 #define __GDK_QUARTZ_WINDOW_H__
26
27 #include <gdk/gdk.h>
28
29 G_BEGIN_DECLS
30
31 #define GDK_TYPE_QUARTZ_WINDOW              (gdk_quartz_window_get_type ())
32 #define GDK_QUARTZ_WINDOW(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_QUARTZ_WINDOW, GdkQuartzWindow))
33 #define GDK_QUARTZ_WINDOW_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_QUARTZ_WINDOW, GdkQuartzWindowClass))
34 #define GDK_IS_QUARTZ_WINDOW(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_QUARTZ_WINDOW))
35 #define GDK_IS_QUARTZ_WINDOW_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_QUARTZ_WINDOW))
36 #define GDK_QUARTZ_WINDOW_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_QUARTZ_WINDOW, GdkQuartzWindowClass))
37
38 #ifdef GDK_COMPILATION
39 typedef struct _GdkQuartzWindow GdkQuartzWindow;
40 #else
41 typedef GdkWindow GdkQuartzWindow;
42 #endif
43 typedef struct _GdkQuartzWindowClass GdkQuartzWindowClass;
44
45 GType     gdk_quartz_window_get_type     (void);
46
47 NSWindow *gdk_quartz_window_get_nswindow (GdkWindow *window);
48 NSView   *gdk_quartz_window_get_nsview   (GdkWindow *window);
49
50 G_END_DECLS
51
52 #endif /* __GDK_QUARTZ_WINDOW_H__ */