2000-05-31 21:50:38 +00:00
|
|
|
/* 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 Library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library 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-1999. 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Private uninstalled header defining things local to X windowing code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GDK_PRIVATE_FB_H__
|
|
|
|
#define __GDK_PRIVATE_FB_H__
|
|
|
|
|
|
|
|
#include <gdk/gdkprivate.h>
|
|
|
|
#include <gdk/gdk.h>
|
|
|
|
#include "gdkfb.h"
|
|
|
|
#include "gdkregion-generic.h"
|
|
|
|
#include <linux/fb.h>
|
|
|
|
#include <stdio.h>
|
2000-06-20 20:20:38 +00:00
|
|
|
#include <freetype/freetype.h>
|
2000-05-31 21:50:38 +00:00
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
#define GDK_DRAWABLE_IMPL_FBDATA(win) ((GdkDrawableFBData *)((GdkWindowPrivate *)(win))->impl)
|
|
|
|
#define GDK_DRAWABLE_IMPL(win) ((GdkDrawable *)((GdkWindowPrivate *)(win))->impl)
|
|
|
|
#define GDK_WINDOW_IMPL_FBDATA(win) ((GdkWindowFBData *)((GdkWindowPrivate *)(win))->impl)
|
|
|
|
#define GDK_PIXMAP_IMPL_FBDATA(win) ((GdkPixmapFBData *)((GdkWindowPrivate *)(win))->impl)
|
|
|
|
#define GDK_DRAWABLE_FBDATA(win) ((GdkDrawableFBData *)(win))
|
|
|
|
#define GDK_PIXMAP_FBDATA(win) ((GdkPixmapFBData *)(win))
|
|
|
|
#define GDK_WINDOW_FBDATA(win) ((GdkWindowFBData *)(win))
|
2000-05-31 21:50:38 +00:00
|
|
|
#define GDK_FONT_FB(f) ((GdkFontPrivateFB *)(f))
|
|
|
|
#define GDK_CURSOR_FB(c) ((GdkCursorPrivateFB *)(c))
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
#define GDK_CHECK_IMPL(drawable) \
|
|
|
|
g_assert(G_OBJECT_TYPE(drawable) == _gdk_window_impl_get_type() || G_OBJECT_TYPE(drawable) == _gdk_pixmap_impl_get_type())
|
|
|
|
#define GDK_CHECK_INTF(drawable) \
|
|
|
|
g_assert(G_OBJECT_TYPE(drawable) == gdk_window_get_type() || G_OBJECT_TYPE(drawable) == gdk_pixmap_get_type())
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
typedef struct _GdkDrawableFBData GdkDrawableFBData;
|
|
|
|
typedef struct _GdkWindowFBData GdkWindowFBData;
|
2000-06-20 20:20:38 +00:00
|
|
|
typedef struct _GdkPixmapFBData GdkPixmapFBData;
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef GdkWindowObject GdkWindowPrivate;
|
|
|
|
#define GDK_DRAWABLE_PIXMAP (GDK_WINDOW_FOREIGN+1)
|
2000-05-31 21:50:38 +00:00
|
|
|
|
|
|
|
struct _GdkDrawableFBData
|
|
|
|
{
|
2000-07-24 16:19:00 +00:00
|
|
|
GdkDrawable parent_object;
|
|
|
|
|
|
|
|
GdkDrawable *wrapper;
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
guchar *mem;
|
|
|
|
|
|
|
|
gint abs_x, abs_y, lim_x, lim_y, llim_x, llim_y; /* computed values */
|
|
|
|
|
|
|
|
guint rowstride;
|
2000-07-24 16:19:00 +00:00
|
|
|
|
|
|
|
/* Due to excursions in gdk, this stuff has to be stored here instead of in GdkDrawable where it belongs */
|
|
|
|
gint width, height, depth;
|
|
|
|
GdkColormap *colormap;
|
|
|
|
GdkWindowType window_type;
|
2000-05-31 21:50:38 +00:00
|
|
|
};
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkDrawableClass base_class;
|
|
|
|
} GdkDrawableFBClass;
|
|
|
|
|
|
|
|
#define GDK_DRAWABLE_P(x) ((GdkDrawableFBData *)(x))
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
struct _GdkPixmapFBData
|
|
|
|
{
|
|
|
|
GdkDrawableFBData drawable_data;
|
|
|
|
};
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkDrawableFBClass klass;
|
|
|
|
} GdkPixmapFBClass;
|
|
|
|
|
|
|
|
GType gdk_drawable_impl_fb_get_type (void);
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
typedef struct {
|
|
|
|
gulong length;
|
|
|
|
GdkAtom type;
|
|
|
|
gint format;
|
|
|
|
guchar data[1];
|
|
|
|
} GdkWindowProperty;
|
|
|
|
|
|
|
|
struct _GdkWindowFBData
|
|
|
|
{
|
|
|
|
GdkDrawableFBData drawable_data;
|
|
|
|
GdkCursor *cursor;
|
|
|
|
GHashTable *properties;
|
|
|
|
|
|
|
|
GdkEventMask event_mask;
|
|
|
|
gint level;
|
|
|
|
gboolean realized : 1;
|
|
|
|
};
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkDrawableFBClass base_class;
|
|
|
|
} GdkWindowFBClass;
|
|
|
|
#define GDK_WINDOW_P(x) ((GdkWindowObject *)(x))
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
struct _GdkFBDisplay
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
guchar *fbmem;
|
|
|
|
gpointer active_cmap;
|
|
|
|
gulong mem_len;
|
|
|
|
struct fb_fix_screeninfo sinfo;
|
|
|
|
struct fb_var_screeninfo modeinfo;
|
2000-06-20 20:20:38 +00:00
|
|
|
int red_byte, green_byte, blue_byte; /* For truecolor */
|
2000-05-31 21:50:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GdkVisual base;
|
|
|
|
} GdkVisualPrivateFB;
|
|
|
|
|
|
|
|
typedef struct {
|
2000-07-24 16:19:00 +00:00
|
|
|
GdkColormap base;
|
2000-05-31 21:50:38 +00:00
|
|
|
|
|
|
|
GHashTable *hash;
|
|
|
|
GdkColorInfo *info;
|
|
|
|
guint sync_tag;
|
|
|
|
} GdkColormapPrivateFB;
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkColormapClass base_class;
|
|
|
|
} GdkColormapFBClass;
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkCursor base;
|
|
|
|
GdkPixmap *cursor, *mask;
|
2000-06-20 20:20:38 +00:00
|
|
|
int hot_x, hot_y;
|
2000-07-24 16:19:00 +00:00
|
|
|
int mask_off_x, mask_off_y;
|
2000-05-31 21:50:38 +00:00
|
|
|
} GdkCursorPrivateFB;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GdkFontPrivate base;
|
|
|
|
|
2000-06-20 20:20:38 +00:00
|
|
|
FT_Face face;
|
2000-05-31 21:50:38 +00:00
|
|
|
double size;
|
|
|
|
} GdkFontPrivateFB;
|
|
|
|
|
2000-06-20 20:20:38 +00:00
|
|
|
void gdk_fb_font_init(void);
|
|
|
|
void gdk_fb_font_fini(void);
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
typedef struct {
|
2000-07-24 16:19:00 +00:00
|
|
|
GdkImage base;
|
2000-05-31 21:50:38 +00:00
|
|
|
} GdkImagePrivateFB;
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
#define GDK_GC_FBDATA(x) ((GdkGCFBData *)(x))
|
|
|
|
#define GDK_GC_P(x) ((GdkGC *)(x))
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
typedef struct {
|
2000-07-24 16:19:00 +00:00
|
|
|
GdkGC parent_instance;
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
GdkRegion *clip_region;
|
|
|
|
gchar *dash_list;
|
|
|
|
GdkGCValuesMask values_mask;
|
|
|
|
GdkGCValues values;
|
|
|
|
gint dash_offset;
|
|
|
|
gushort dash_list_len;
|
|
|
|
guchar depth, alu;
|
|
|
|
} GdkGCFBData;
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkGCClass parent_class;
|
|
|
|
} GdkGCFBClass;
|
|
|
|
|
|
|
|
GType gdk_gc_fb_get_type (void);
|
|
|
|
#if 0
|
2000-05-31 21:50:38 +00:00
|
|
|
GdkGC * _gdk_fb_gc_new (GdkDrawable *drawable,
|
|
|
|
GdkGCValues *values,
|
|
|
|
GdkGCValuesMask values_mask);
|
2000-07-24 16:19:00 +00:00
|
|
|
#endif
|
2000-05-31 21:50:38 +00:00
|
|
|
|
|
|
|
/* Routines from gdkgeometry-fb.c */
|
|
|
|
|
|
|
|
void _gdk_window_init_position (GdkWindow *window);
|
|
|
|
void _gdk_window_move_resize_child (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
void _gdk_window_process_expose (GdkWindow *window,
|
|
|
|
gulong serial,
|
|
|
|
GdkRectangle *area);
|
2000-07-24 16:19:00 +00:00
|
|
|
void gdk_window_invalidate_region_clear(GdkWindow *window, GdkRegion *region);
|
|
|
|
void gdk_window_invalidate_rect_clear(GdkWindow *window, GdkRectangle *rect);
|
2000-05-31 21:50:38 +00:00
|
|
|
GdkGC *_gdk_fb_gc_new(GdkDrawable *drawable, GdkGCValues *values, GdkGCValuesMask values_mask);
|
|
|
|
|
|
|
|
void gdk_fb_drawable_clear(GdkDrawable *drawable);
|
|
|
|
void gdk_fb_draw_drawable (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkPixmap *src,
|
|
|
|
gint xsrc,
|
|
|
|
gint ysrc,
|
|
|
|
gint xdest,
|
|
|
|
gint ydest,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
2000-06-20 20:20:38 +00:00
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GdkWindow *bg_relto;
|
|
|
|
GdkPixmap *bgpm;
|
|
|
|
|
|
|
|
GdkRegion *real_clip_region;
|
|
|
|
|
|
|
|
guchar *mem, *clipmem;
|
|
|
|
gpointer cursor_dc;
|
|
|
|
|
|
|
|
guint rowstride, clip_rowstride;
|
|
|
|
int clipxoff, clipyoff;
|
|
|
|
|
|
|
|
gboolean draw_bg : 1;
|
|
|
|
gboolean copy_region : 1;
|
|
|
|
gboolean handle_cursor : 1;
|
|
|
|
} GdkFBDrawingContext;
|
|
|
|
|
|
|
|
void gdk_fb_drawing_context_init(GdkFBDrawingContext *dc, GdkDrawable *drawable,
|
|
|
|
GdkGC *gc, gboolean draw_bg, gboolean do_clipping);
|
|
|
|
void gdk_fb_drawing_context_finalize(GdkFBDrawingContext *dc);
|
|
|
|
|
|
|
|
void gdk_fb_draw_drawable_3 (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkPixmap *src,
|
|
|
|
GdkFBDrawingContext *dc,
|
|
|
|
gint xsrc,
|
|
|
|
gint ysrc,
|
|
|
|
gint xdest,
|
|
|
|
gint ydest,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
void gdk_fb_draw_drawable_2 (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkPixmap *src,
|
|
|
|
gint xsrc,
|
|
|
|
gint ysrc,
|
|
|
|
gint xdest,
|
|
|
|
gint ydest,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean draw_bg,
|
|
|
|
gboolean do_clipping);
|
|
|
|
void gdk_fb_draw_rectangle (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
gint filled,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
2000-07-24 16:19:00 +00:00
|
|
|
void gdk_fb_fill_spans(GdkDrawable *real_drawable, GdkGC *gc, GdkRectangle *rects, int nrects);
|
|
|
|
GdkRegion *gdk_fb_clip_region(GdkDrawable *drawable, GdkGC *gc, gboolean do_clipping, gboolean do_children);
|
2000-05-31 21:50:38 +00:00
|
|
|
|
|
|
|
extern GdkWindow *_gdk_fb_pointer_grab_window, *_gdk_fb_keyboard_grab_window, *_gdk_fb_pointer_grab_confine;
|
|
|
|
extern GdkEventMask _gdk_fb_pointer_grab_events, _gdk_fb_keyboard_grab_events;
|
|
|
|
extern GdkCursor *_gdk_fb_pointer_grab_cursor;
|
|
|
|
extern GdkFBDisplay *gdk_display;
|
|
|
|
extern GdkDrawableClass _gdk_fb_drawable_class;
|
|
|
|
extern FILE *debug_out;
|
|
|
|
GdkEvent *gdk_event_make(GdkWindow *window, GdkEventType type, gboolean append_to_queue);
|
2000-07-24 16:19:00 +00:00
|
|
|
GdkEvent *gdk_event_make_2(GdkWindow *window, GdkEventType type, gboolean append_to_queue, gint button_press_num);
|
2000-05-31 21:50:38 +00:00
|
|
|
|
|
|
|
void gdk_fb_get_cursor_rect(GdkRectangle *rect);
|
2000-07-24 16:19:00 +00:00
|
|
|
gboolean gdk_fb_cursor_need_hide(GdkRectangle *rect);
|
|
|
|
gboolean gdk_fb_cursor_region_need_hide(GdkRegion *region);
|
2000-05-31 21:50:38 +00:00
|
|
|
void gdk_fb_cursor_unhide(void);
|
2000-07-24 16:19:00 +00:00
|
|
|
void gdk_fb_cursor_reset(void);
|
2000-05-31 21:50:38 +00:00
|
|
|
void gdk_fb_cursor_hide(void);
|
|
|
|
void gdk_fb_redraw_all(void);
|
|
|
|
|
|
|
|
void gdk_input_ps2_get_mouseinfo(gint *x, gint *y, GdkModifierType *mask);
|
2000-07-24 16:19:00 +00:00
|
|
|
void gdk_fb_window_visibility_crossing(GdkWindow *window, gboolean is_show);
|
2000-05-31 21:50:38 +00:00
|
|
|
|
2000-06-20 20:20:38 +00:00
|
|
|
#define PANGO_TYPE_FB_FONT (pango_fb_font_get_type ())
|
|
|
|
#define PANGO_FB_FONT(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PANGO_TYPE_FB_FONT, PangoFBFont))
|
|
|
|
typedef struct _PangoFBFont PangoFBFont;
|
|
|
|
struct _PangoFBFont
|
|
|
|
{
|
|
|
|
PangoFont parent;
|
|
|
|
|
|
|
|
FT_Face ftf;
|
|
|
|
PangoFontDescription desc;
|
|
|
|
PangoCoverage *coverage;
|
2000-07-24 16:19:00 +00:00
|
|
|
GHashTable *glyph_info;
|
2000-06-20 20:20:38 +00:00
|
|
|
};
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
PangoRectangle extents[2];
|
|
|
|
GdkPixmapFBData fbd;
|
|
|
|
int hbearing;
|
|
|
|
} PangoFBGlyphInfo;
|
|
|
|
|
2000-06-20 20:20:38 +00:00
|
|
|
GType pango_fb_font_get_type (void);
|
|
|
|
gboolean pango_fb_has_glyph(PangoFont *font, PangoGlyph glyph);
|
|
|
|
PangoGlyph pango_fb_get_unknown_glyph(PangoFont *font);
|
2000-07-24 16:19:00 +00:00
|
|
|
PangoFBGlyphInfo *pango_fb_font_get_glyph_info(PangoFont *font, PangoGlyph glyph);
|
|
|
|
|
|
|
|
void gdk_fb_window_move_resize (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean send_expose_events);
|
2000-06-20 20:20:38 +00:00
|
|
|
|
|
|
|
extern void CM(void); /* Check for general mem corruption */
|
|
|
|
extern void RP(GdkDrawable *drawable); /* Same, for pixmaps */
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
#endif /* __GDK_PRIVATE_FB_H__ */
|