mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-17 23:00:07 +00:00
6d7a643f7c
(Part 2) * gdk/gdkprivate.h: Remove gdk_*_lookup() defines, since they are defined by the individual backends already. * gdk/gdkregion-generic.h, gdk/gdktypes.h: Put gdkregionbox & gdksegment back together again. Yes, there really is a good reason for this, if you are using the gdkregion internals, and if you're not, why do you care? * gdk/gdkwindow.c: Fix inverted condition * gdk/linux-fb: Compiles (for me - it will not work elsewhere most likely). * gtk/gtkcolorsel.c, gtk/gtkwindow.c: Add include for linux-fb * gtk/gtkrange.c: Redraw trough when moving. * gtk/gtktypeutils.c: Fix warning by adding const cast. * modules/linux-fb/basic.c: Fix unknown glyph retrieval.
25 lines
670 B
C
25 lines
670 B
C
#ifndef GDKFB_H
|
|
#define GDKFB_H 1
|
|
|
|
#include "gdk/gdkprivate.h"
|
|
|
|
typedef struct _GdkFBDisplay GdkFBDisplay;
|
|
typedef struct _GdkFBWindow GdkFBWindow;
|
|
|
|
extern GdkFBWindow *gdk_root_window;
|
|
extern GdkFBDisplay *gdk_display;
|
|
|
|
#define GDK_ROOT_WINDOW() gdk_root_window
|
|
#define GDK_ROOT_PARENT() ((GdkWindow *)gdk_parent_root)
|
|
#define GDK_DISPLAY() gdk_display
|
|
|
|
extern const char *gdk_progclass;
|
|
|
|
#define gdk_window_foreign_new(xid) gdk_window_ref(xid)
|
|
#define gdk_window_lookup(xid) ((GdkWindow*) (xid))
|
|
#define gdk_pixmap_lookup(xid) ((GdkPixmap*) (xid))
|
|
#define gdk_font_lookup(xid) ((GdkFont*) (xid))
|
|
|
|
|
|
#endif /* GDKFB_H */
|