diff options
author | Alexander Larsson <alexl@redhat.com> | 2011-01-06 23:36:44 +0100 |
---|---|---|
committer | Alexander Larsson <alexl@redhat.com> | 2011-01-19 19:52:51 +0100 |
commit | 07db0e38b0a50dfc94bf7b4f1a9c49fa68ee19b2 (patch) | |
tree | 1472a2d4ecb1f6e0670e9f3da4ea6051f61fd9f9 /gdk/broadway/gdkbroadwaywindow.h | |
parent | 920e8b434367f9aa8aab306721cc024e66892e2e (diff) | |
download | gtk+-07db0e38b0a50dfc94bf7b4f1a9c49fa68ee19b2.tar.gz |
[broadway] Make broadway build with new gdk-backend setup
Convert all global functions to vtable calls, etc.
Diffstat (limited to 'gdk/broadway/gdkbroadwaywindow.h')
-rw-r--r-- | gdk/broadway/gdkbroadwaywindow.h | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/gdk/broadway/gdkbroadwaywindow.h b/gdk/broadway/gdkbroadwaywindow.h new file mode 100644 index 0000000000..7bb72991ed --- /dev/null +++ b/gdk/broadway/gdkbroadwaywindow.h @@ -0,0 +1,52 @@ +/* GDK - The GIMP Drawing Kit + * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald + * + * 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. + */ + +/* + * Modified by the GTK+ Team and others 1997-2000. See the AUTHORS + * file for a list of people on the GTK+ Team. See the ChangeLog + * files for a list of changes. These files are distributed with + * GTK+ at ftp://ftp.gtk.org/pub/gtk/. + */ + +#ifndef __GDK_BROADWAY_WINDOW_H__ +#define __GDK_BROADWAY_WINDOW_H__ + +#include <gdk/gdk.h> + +G_BEGIN_DECLS + +#define GDK_TYPE_BROADWAY_WINDOW (gdk_broadway_window_get_type ()) +#define GDK_BROADWAY_WINDOW(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_BROADWAY_WINDOW, GdkBroadwayWindow)) +#define GDK_BROADWAY_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GDK_TYPE_BROADWAY_WINDOW, GdkBroadwayWindowClass)) +#define GDK_IS_BROADWAY_WINDOW(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_BROADWAY_WINDOW)) +#define GDK_IS_BROADWAY_WINDOW_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GDK_TYPE_BROADWAY_WINDOW)) +#define GDK_BROADWAY_WINDOW_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GDK_TYPE_BROADWAY_WINDOW, GdkBroadwayWindowClass)) + +#ifdef GDK_COMPILATION +typedef struct _GdkBroadwayWindow GdkBroadwayWindow; +#else +typedef GdkWindow GdkBroadwayWindow; +#endif +typedef struct _GdkBroadwayWindowClass GdkBroadwayWindowClass; + +GType gdk_broadway_window_get_type (void); + +G_END_DECLS + +#endif /* __GDK_BROADWAY_WINDOW_H__ */ |