mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 03:10:09 +00:00
Started compatibility header for renames.
Sun Oct 3 23:09:06 1999 Owen Taylor <otaylor@redhat.com> * gdk/gdkcompat.h: Started compatibility header for renames.
This commit is contained in:
parent
91f7a92ecd
commit
a8d8872c0c
34
gdk/gdkcompat.h
Normal file
34
gdk/gdkcompat.h
Normal file
@ -0,0 +1,34 @@
|
||||
#ifndef __GDK_COMPAT_H__
|
||||
#define __GDK_COMPAT_H__
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif /* __cplusplus */
|
||||
|
||||
/* use -DGDK_DISABLE_COMPAT_H to compile your code and asure that it
|
||||
* works with future GTK+ versions as well.
|
||||
*/
|
||||
#ifndef GDK_DISABLE_COMPAT_H
|
||||
|
||||
#define GdkWindowType GdkDrawableType
|
||||
|
||||
#define gdk_window_get_size gdk_drawable_get_size
|
||||
#define gdk_window_get_type gdk_drawable_get_type
|
||||
#define gdk_window_get_colormap gdk_drawable_get_colormap
|
||||
#define gdk_window_set_colormap gdk_drawable_set_colormap
|
||||
#define gdk_window_get_visual gdk_drawable_get_visual
|
||||
|
||||
#define gdk_window_copy_area(drawable,gc,x,y,source_drawable,source_x,source_y,width,height) \
|
||||
gdk_draw_pixmap(drawable,gc,source_drawable,source_x,source_y,x,y,width,height)
|
||||
|
||||
#define GDK_WINDOW_PIXMAP GDK_DRAWABLE_PIXMAP
|
||||
|
||||
#endif /* GDK_DISABLE_COMPAT_H */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif /* __cplusplus */
|
||||
|
||||
#endif /* __GDK_COMPAT_H__ */
|
||||
|
Loading…
Reference in New Issue
Block a user