~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to gdk/gdkprivate.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-09-05 07:16:24 UTC
  • mfrom: (1.3.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 127.
  • Revision ID: james.westby@ubuntu.com-20090905071624-ehjbg50t3hvthzlm
Tags: upstream-2.17.11
Import upstream version 2.17.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
#define GDK_PARENT_RELATIVE_BG ((GdkPixmap *)1L)
35
35
#define GDK_NO_BG ((GdkPixmap *)2L)
36
36
 
37
 
#define GDK_WINDOW_TYPE(d) (((GdkWindowObject*)(GDK_WINDOW (d)))->window_type)
38
 
#define GDK_WINDOW_DESTROYED(d) (((GdkWindowObject*)(GDK_WINDOW (d)))->destroyed)
 
37
#ifndef GDK_COMPILATION
 
38
#define GDK_WINDOW_TYPE(d) (gdk_window_get_window_type (GDK_WINDOW (d)))
 
39
#define GDK_WINDOW_DESTROYED(d) (gdk_window_is_destroyed (GDK_WINDOW (d)))
 
40
#endif
39
41
 
40
42
void gdk_window_destroy_notify       (GdkWindow *window);
41
43
 
43
45
                                  GdkWindowState unset_flags,
44
46
                                  GdkWindowState set_flags);
45
47
 
46
 
gboolean _gdk_window_event_parent_of (GdkWindow *parent,
47
 
                                      GdkWindow *child);
48
 
 
49
48
/* Tests whether a pair of x,y may cause overflows when converted to Pango
50
49
 * units (multiplied by PANGO_SCALE).  We don't allow the entire range, leave
51
50
 * some space for additions afterwards, to be safe...