]> Pileus Git - ~andy/gtk/blob - gdk/quartz/gdkquartzscreen.h
x11: Clean up xsettings header
[~andy/gtk] / gdk / quartz / gdkquartzscreen.h
1 /* gdkquartzscreen.h
2  *
3  * Copyright (C) 2009, 2010  Kristian Rietveld  <kris@gtk.org>
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library. If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #ifndef __GDK_QUARTZ_SCREEN_H__
20 #define __GDK_QUARTZ_SCREEN_H__
21
22 #if !defined(__GDKQUARTZ_H_INSIDE__) && !defined (GDK_COMPILATION)
23 #error "Only <gdk/gdkquartz.h> can be included directly."
24 #endif
25
26 G_BEGIN_DECLS
27
28 #include <gdk/gdk.h>
29
30 #define GDK_TYPE_QUARTZ_SCREEN              (gdk_quartz_screen_get_type ())
31 #define GDK_QUARTZ_SCREEN(object)           (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_QUARTZ_SCREEN, GdkQuartzScreen))
32 #define GDK_QUARTZ_SCREEN_CLASS(klass)      (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_QUARTZ_SCREEN, GdkQuartzScreenClass))
33 #define GDK_IS_QUARTZ_SCREEN(object)        (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_QUARTZ_SCREEN))
34 #define GDK_IS_QUARTZ_SCREEN_CLASS(klass)   (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_QUARTZ_SCREEN))
35 #define GDK_QUARTZ_SCREEN_GET_CLASS(obj)    (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_QUARTZ_SCREEN, GdkQuartzScreenClass))
36
37 #ifdef GDK_COMPILATION
38 typedef struct _GdkQuartzScreen GdkQuartzScreen;
39 #else
40 typedef GdkScreen GdkQuartzScreen;
41 #endif
42 typedef struct _GdkQuartzScreenClass GdkQuartzScreenClass;
43
44
45 GType      gdk_quartz_screen_get_type (void);
46
47 G_END_DECLS
48
49 #endif /* _GDK_QUARTZ_SCREEN_H_ */