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
|
2000-07-26 11:33:08 +00:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
2000-05-31 21:50:38 +00:00
|
|
|
* 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
|
2000-07-26 11:33:08 +00:00
|
|
|
* Lesser General Public License for more details.
|
2000-05-31 21:50:38 +00:00
|
|
|
*
|
2000-07-26 11:33:08 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2000-05-31 21:50:38 +00:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2000-07-26 11:33:08 +00:00
|
|
|
* Modified by the GTK+ Team and others 1997-2000. See the AUTHORS
|
2000-05-31 21:50:38 +00:00
|
|
|
* 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>
|
2000-11-15 13:48:13 +00:00
|
|
|
#include <gdk/gdkinternals.h>
|
2000-05-31 21:50:38 +00:00
|
|
|
#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-12-05 11:39:26 +00:00
|
|
|
#define GDK_TYPE_DRAWABLE_IMPL_FBDATA (gdk_drawable_impl_fb_get_type ())
|
2000-11-13 17:40:23 +00:00
|
|
|
#define GDK_DRAWABLE_IMPL_FBDATA(win) ((GdkDrawableFBData *)((GdkWindowObject *)(win))->impl)
|
2000-12-05 11:39:26 +00:00
|
|
|
#define GDK_IS_DRAWABLE_IMPL_FBDATA(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_DRAWABLE_IMPL_FBDATA))
|
|
|
|
#define GDK_DRAWABLE_IMPL(win) ((GdkDrawable *)((GdkWindowObject *)(win))->impl)
|
|
|
|
#define GDK_WINDOW_IMPL_FBDATA(win) ((GdkWindowFBData *)((GdkWindowObject *)(win))->impl)
|
|
|
|
#define GDK_PIXMAP_IMPL_FBDATA(win) ((GdkPixmapFBData *)((GdkWindowObject *)(win))->impl)
|
|
|
|
#define GDK_DRAWABLE_FBDATA(win) ((GdkDrawableFBData *)(win))
|
|
|
|
#define GDK_PIXMAP_FBDATA(win) ((GdkPixmapFBData *)(win))
|
|
|
|
#define GDK_WINDOW_FBDATA(win) ((GdkWindowFBData *)(win))
|
|
|
|
#define GDK_FONT_FB(f) ((GdkFontPrivateFB *)(f))
|
|
|
|
#define GDK_CURSOR_FB(c) ((GdkCursorPrivateFB *)(c))
|
2000-05-31 21:50:38 +00:00
|
|
|
|
2001-05-10 22:44:27 +00:00
|
|
|
#define CHECK_IMPL_AND_INTF
|
|
|
|
|
|
|
|
#ifdef CHECK_IMPL_AND_INTF
|
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) \
|
2000-11-15 13:48:13 +00:00
|
|
|
g_assert(G_OBJECT_TYPE(drawable) == gdk_window_object_get_type() || G_OBJECT_TYPE(drawable) == gdk_pixmap_get_type())
|
2001-05-10 22:44:27 +00:00
|
|
|
#else
|
|
|
|
#define GDK_CHECK_IMPL(drawable)
|
|
|
|
#define GDK_CHECK_INTF(drawable)
|
|
|
|
#endif
|
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-11-15 12:45:30 +00:00
|
|
|
typedef struct _GdkFBDrawingContext GdkFBDrawingContext;
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
#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
|
|
|
|
2000-11-09 12:15:40 +00:00
|
|
|
/* Due to excursions in gdk, this stuff has to be stored here
|
|
|
|
instead of in GdkDrawable where it belongs */
|
2000-07-24 16:19:00 +00:00
|
|
|
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;
|
|
|
|
|
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;
|
|
|
|
|
2000-08-30 00:33:38 +00:00
|
|
|
GType gdk_drawable_impl_fb_get_type (void) G_GNUC_CONST;
|
2000-07-24 16:19:00 +00:00
|
|
|
|
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;
|
|
|
|
|
2001-01-12 15:45:26 +00:00
|
|
|
GdkRegion *shape; /* Can also be GDK_FB_USE_CHILD_SHAPE */
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
GdkEventMask event_mask;
|
|
|
|
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
|
|
|
|
{
|
2000-12-08 12:38:48 +00:00
|
|
|
int tty_fd;
|
|
|
|
int console_fd;
|
|
|
|
int vt, start_vt;
|
Added ENABLE_SHADOW_FB
2001-01-11 Alexander Larsson <alexl@redhat.com>
* acconfig.h:
Added ENABLE_SHADOW_FB
* configure.in:
Added --disable-shadowfb
* gdk/linux-fb/gdkcursor-fb.c:
Update shadowfb when updating cursor
* gdk/linux-fb/gdkdrawable-fb2.c:
Added wrappers for shadowfb that calls the normal drawable
methods, but calls gdk_shadow_fb_update(bounding box) when
GdkWindows are drawed to.
Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
which also returns the bounding box.
* gdk/linux-fb/gdkfb.h:
Added GdkFBAngle type and gdk_fb_set_rotation declaration.
* gdk/linux-fb/gdkgeometry-fb.c:
Update shadowfb when scrolling window.
* gdk/linux-fb/gdkglobals-fb.c:
Add _gdk_fb_screen_angle.
* gdk/linux-fb/gdkkeyboard-fb.c:
Test code for screen rotation. Shift-F2 in the xlate driver
rotates the screen.
* gdk/linux-fb/gdkmain-fb.c:
Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
* gdk/linux-fb/gdkmouse-fb.c:
Use fb_width/height instead of modeinfo.xres/yres.
* gdk/linux-fb/gdkprivate-fb.h:
Added fb_men, fb_width, fb_height & fb_stride. When using
shadow fb these can differ from the framebuffer stuff.
Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
_gdk_fb_screen_angle. Removed CM, RP.
* gdk/linux-fb/gdkrender-fb.c:
Added code for shadowfb handling and screen rotation using
shadowfb.
* gdk/linux-fb/gdkwindow-fb.c:
Use fb_mem, fb_stride, fb_width, fb_height.
Added recompute_rowstride to reset the rowstride of all windows.
Added gdk_fb_recompute_all() which recomputes rootwindow size,
window abs positions and window rowstrides. Usefull when the
rotation has changed.
2001-01-11 16:39:21 +00:00
|
|
|
|
|
|
|
/* Used by rendering code: */
|
|
|
|
guchar *fb_mem;
|
|
|
|
gint fb_width; /* In pixels */
|
|
|
|
gint fb_height; /* In pixels */
|
|
|
|
gint fb_stride; /* In bytes */
|
|
|
|
|
2000-12-08 12:38:48 +00:00
|
|
|
int fb_fd;
|
Added ENABLE_SHADOW_FB
2001-01-11 Alexander Larsson <alexl@redhat.com>
* acconfig.h:
Added ENABLE_SHADOW_FB
* configure.in:
Added --disable-shadowfb
* gdk/linux-fb/gdkcursor-fb.c:
Update shadowfb when updating cursor
* gdk/linux-fb/gdkdrawable-fb2.c:
Added wrappers for shadowfb that calls the normal drawable
methods, but calls gdk_shadow_fb_update(bounding box) when
GdkWindows are drawed to.
Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
which also returns the bounding box.
* gdk/linux-fb/gdkfb.h:
Added GdkFBAngle type and gdk_fb_set_rotation declaration.
* gdk/linux-fb/gdkgeometry-fb.c:
Update shadowfb when scrolling window.
* gdk/linux-fb/gdkglobals-fb.c:
Add _gdk_fb_screen_angle.
* gdk/linux-fb/gdkkeyboard-fb.c:
Test code for screen rotation. Shift-F2 in the xlate driver
rotates the screen.
* gdk/linux-fb/gdkmain-fb.c:
Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
* gdk/linux-fb/gdkmouse-fb.c:
Use fb_width/height instead of modeinfo.xres/yres.
* gdk/linux-fb/gdkprivate-fb.h:
Added fb_men, fb_width, fb_height & fb_stride. When using
shadow fb these can differ from the framebuffer stuff.
Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
_gdk_fb_screen_angle. Removed CM, RP.
* gdk/linux-fb/gdkrender-fb.c:
Added code for shadowfb handling and screen rotation using
shadowfb.
* gdk/linux-fb/gdkwindow-fb.c:
Use fb_mem, fb_stride, fb_width, fb_height.
Added recompute_rowstride to reset the rowstride of all windows.
Added gdk_fb_recompute_all() which recomputes rootwindow size,
window abs positions and window rowstrides. Usefull when the
rotation has changed.
2001-01-11 16:39:21 +00:00
|
|
|
guchar *fb_mmap;
|
2000-05-31 21:50:38 +00:00
|
|
|
gpointer active_cmap;
|
|
|
|
gulong mem_len;
|
|
|
|
struct fb_fix_screeninfo sinfo;
|
|
|
|
struct fb_var_screeninfo modeinfo;
|
2000-12-08 12:38:48 +00:00
|
|
|
struct fb_var_screeninfo orig_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 {
|
|
|
|
GHashTable *hash;
|
|
|
|
GdkColorInfo *info;
|
|
|
|
guint sync_tag;
|
|
|
|
} GdkColormapPrivateFB;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
GdkCursor base;
|
|
|
|
GdkPixmap *cursor, *mask;
|
2000-06-20 20:20:38 +00:00
|
|
|
int hot_x, hot_y;
|
2000-05-31 21:50:38 +00:00
|
|
|
} GdkCursorPrivateFB;
|
|
|
|
|
2001-01-19 10:38:12 +00:00
|
|
|
/* Define this to emulate slow emulation of
|
|
|
|
GdkFonts using PangoFont */
|
|
|
|
#define EMULATE_GDKFONT
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkFontPrivate base;
|
2001-01-19 10:38:12 +00:00
|
|
|
#ifdef EMULATE_GDKFONT
|
|
|
|
/* For PangoFont emulation: */
|
|
|
|
char *name;
|
|
|
|
PangoFont *pango_font;
|
|
|
|
#else
|
|
|
|
/* For bogus GdkFonts: */
|
2000-11-29 13:49:37 +00:00
|
|
|
int size;
|
2001-01-19 10:38:12 +00:00
|
|
|
#endif
|
2000-05-31 21:50:38 +00:00
|
|
|
} GdkFontPrivateFB;
|
|
|
|
|
|
|
|
typedef struct {
|
2000-11-13 17:40:23 +00:00
|
|
|
/* Empty */
|
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-11-15 12:45:30 +00:00
|
|
|
typedef enum {
|
|
|
|
GPR_USED_BG,
|
|
|
|
GPR_AA_GRAYVAL,
|
|
|
|
GPR_NONE,
|
|
|
|
GPR_ERR_BOUNDS
|
|
|
|
} GetPixelRet;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
GDK_FB_SRC_BPP_1,
|
|
|
|
GDK_FB_SRC_BPP_8,
|
|
|
|
GDK_FB_SRC_BPP_16,
|
|
|
|
GDK_FB_SRC_BPP_24,
|
|
|
|
GDK_FB_SRC_BPP_32,
|
|
|
|
GDK_FB_SRC_BPP_7_AA_GRAYVAL,
|
|
|
|
GDK_FB_SRC_BPP_8_AA_GRAYVAL,
|
|
|
|
GDK_NUM_FB_SRCBPP
|
|
|
|
} GdkFbSrcBPP;
|
|
|
|
|
|
|
|
typedef void gdk_fb_draw_drawable_func (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkPixmap *src,
|
|
|
|
GdkFBDrawingContext *dc,
|
|
|
|
gint start_y,
|
|
|
|
gint end_y,
|
|
|
|
gint start_x,
|
|
|
|
gint end_x,
|
|
|
|
gint src_x_off,
|
|
|
|
gint src_y_off,
|
|
|
|
gint draw_direction);
|
|
|
|
|
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;
|
2000-11-15 12:45:30 +00:00
|
|
|
guchar alu;
|
|
|
|
|
|
|
|
/* The GC can only be used with target drawables of
|
|
|
|
* the same depth as the initial drawable
|
|
|
|
* specified in gd_gc_new().
|
|
|
|
*/
|
|
|
|
guchar depth;
|
|
|
|
|
|
|
|
/* Calculated state: */
|
|
|
|
/* These functions can only be called for drawables
|
|
|
|
* that have the same depth as the gc.
|
|
|
|
*/
|
2000-11-22 10:07:34 +00:00
|
|
|
void (*set_pixel) (GdkDrawable *drawable,
|
2000-11-15 12:45:30 +00:00
|
|
|
GdkGC *gc,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
gulong pixel);
|
|
|
|
|
|
|
|
GetPixelRet (*get_color) (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
int x,
|
|
|
|
int y,
|
|
|
|
GdkColor *color);
|
|
|
|
|
2000-11-22 10:07:34 +00:00
|
|
|
void (*fill_span) (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkSpan *span,
|
|
|
|
GdkColor *color);
|
|
|
|
|
|
|
|
void (*fill_rectangle) (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkRectangle *rect,
|
|
|
|
GdkColor *color);
|
|
|
|
|
2000-11-15 12:45:30 +00:00
|
|
|
gdk_fb_draw_drawable_func *draw_drawable[GDK_NUM_FB_SRCBPP];
|
2000-05-31 21:50:38 +00:00
|
|
|
} GdkGCFBData;
|
|
|
|
|
2000-07-24 16:19:00 +00:00
|
|
|
typedef struct {
|
|
|
|
GdkGCClass parent_class;
|
|
|
|
} GdkGCFBClass;
|
|
|
|
|
2000-11-15 12:45:30 +00:00
|
|
|
|
|
|
|
extern GdkGC *_gdk_fb_screen_gc;
|
|
|
|
|
2000-08-30 00:33:38 +00:00
|
|
|
GType gdk_gc_fb_get_type (void) G_GNUC_CONST;
|
2000-05-31 21:50:38 +00:00
|
|
|
|
2000-12-08 12:38:48 +00:00
|
|
|
void _gdk_selection_window_destroyed (GdkWindow *window);
|
|
|
|
void gdk_window_invalidate_region_clear (GdkWindow *window,
|
|
|
|
GdkRegion *region);
|
|
|
|
void gdk_window_invalidate_rect_clear (GdkWindow *window,
|
|
|
|
GdkRectangle *rect);
|
2001-01-17 15:52:22 +00:00
|
|
|
void gdk_fb_window_send_crossing_events (GdkWindow *src,
|
|
|
|
GdkWindow *dest,
|
2000-12-08 12:38:48 +00:00
|
|
|
GdkCrossingMode mode);
|
|
|
|
void gdk_fb_window_move_resize (GdkWindow *window,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean send_expose_events);
|
|
|
|
GdkWindow *gdk_fb_window_find_focus (void);
|
2001-01-15 09:54:28 +00:00
|
|
|
GdkRegion *gdk_fb_window_get_abs_shape (GdkDrawable *window);
|
|
|
|
GdkRegion *gdk_fb_window_peek_shape (GdkDrawable *window,
|
|
|
|
gint *dx,
|
|
|
|
gint *dy);
|
2000-12-21 10:33:40 +00:00
|
|
|
GdkGC * _gdk_fb_gc_new (GdkDrawable *drawable,
|
|
|
|
GdkGCValues *values,
|
|
|
|
GdkGCValuesMask values_mask);
|
2000-11-15 12:45:30 +00:00
|
|
|
|
|
|
|
#define _GDK_FB_GC_DEPTH (1<<31)
|
|
|
|
void _gdk_fb_gc_calc_state (GdkGC *gc,
|
|
|
|
GdkGCValuesMask changed);
|
|
|
|
|
|
|
|
GdkImage *_gdk_fb_get_image (GdkDrawable *drawable,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
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);
|
|
|
|
|
|
|
|
struct _GdkFBDrawingContext {
|
2000-06-20 20:20:38 +00:00
|
|
|
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;
|
2000-11-15 12:45:30 +00:00
|
|
|
};
|
2000-06-20 20:20:38 +00:00
|
|
|
|
2000-11-22 10:07:34 +00:00
|
|
|
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);
|
|
|
|
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);
|
|
|
|
void gdk_fb_fill_spans (GdkDrawable *real_drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
GdkSpan *spans,
|
|
|
|
int nspans,
|
|
|
|
gboolean sorted);
|
|
|
|
GdkRegion *gdk_fb_clip_region (GdkDrawable *drawable,
|
|
|
|
GdkGC *gc,
|
|
|
|
gboolean do_clipping,
|
2001-01-15 09:54:28 +00:00
|
|
|
gboolean do_children,
|
|
|
|
gboolean full_shapes);
|
2000-11-22 10:07:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
GdkGrabStatus gdk_fb_pointer_grab (GdkWindow *window,
|
|
|
|
gint owner_events,
|
|
|
|
GdkEventMask event_mask,
|
|
|
|
GdkWindow *confine_to,
|
|
|
|
GdkCursor *cursor,
|
|
|
|
guint32 time,
|
|
|
|
gboolean implicit_grab);
|
Added ENABLE_SHADOW_FB
2001-01-11 Alexander Larsson <alexl@redhat.com>
* acconfig.h:
Added ENABLE_SHADOW_FB
* configure.in:
Added --disable-shadowfb
* gdk/linux-fb/gdkcursor-fb.c:
Update shadowfb when updating cursor
* gdk/linux-fb/gdkdrawable-fb2.c:
Added wrappers for shadowfb that calls the normal drawable
methods, but calls gdk_shadow_fb_update(bounding box) when
GdkWindows are drawed to.
Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
which also returns the bounding box.
* gdk/linux-fb/gdkfb.h:
Added GdkFBAngle type and gdk_fb_set_rotation declaration.
* gdk/linux-fb/gdkgeometry-fb.c:
Update shadowfb when scrolling window.
* gdk/linux-fb/gdkglobals-fb.c:
Add _gdk_fb_screen_angle.
* gdk/linux-fb/gdkkeyboard-fb.c:
Test code for screen rotation. Shift-F2 in the xlate driver
rotates the screen.
* gdk/linux-fb/gdkmain-fb.c:
Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
* gdk/linux-fb/gdkmouse-fb.c:
Use fb_width/height instead of modeinfo.xres/yres.
* gdk/linux-fb/gdkprivate-fb.h:
Added fb_men, fb_width, fb_height & fb_stride. When using
shadow fb these can differ from the framebuffer stuff.
Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
_gdk_fb_screen_angle. Removed CM, RP.
* gdk/linux-fb/gdkrender-fb.c:
Added code for shadowfb handling and screen rotation using
shadowfb.
* gdk/linux-fb/gdkwindow-fb.c:
Use fb_mem, fb_stride, fb_width, fb_height.
Added recompute_rowstride to reset the rowstride of all windows.
Added gdk_fb_recompute_all() which recomputes rootwindow size,
window abs positions and window rowstrides. Usefull when the
rotation has changed.
2001-01-11 16:39:21 +00:00
|
|
|
void gdk_fb_pointer_ungrab (guint32 time,
|
2000-11-22 10:07:34 +00:00
|
|
|
gboolean implicit_grab);
|
|
|
|
|
Added ENABLE_SHADOW_FB
2001-01-11 Alexander Larsson <alexl@redhat.com>
* acconfig.h:
Added ENABLE_SHADOW_FB
* configure.in:
Added --disable-shadowfb
* gdk/linux-fb/gdkcursor-fb.c:
Update shadowfb when updating cursor
* gdk/linux-fb/gdkdrawable-fb2.c:
Added wrappers for shadowfb that calls the normal drawable
methods, but calls gdk_shadow_fb_update(bounding box) when
GdkWindows are drawed to.
Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
which also returns the bounding box.
* gdk/linux-fb/gdkfb.h:
Added GdkFBAngle type and gdk_fb_set_rotation declaration.
* gdk/linux-fb/gdkgeometry-fb.c:
Update shadowfb when scrolling window.
* gdk/linux-fb/gdkglobals-fb.c:
Add _gdk_fb_screen_angle.
* gdk/linux-fb/gdkkeyboard-fb.c:
Test code for screen rotation. Shift-F2 in the xlate driver
rotates the screen.
* gdk/linux-fb/gdkmain-fb.c:
Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
* gdk/linux-fb/gdkmouse-fb.c:
Use fb_width/height instead of modeinfo.xres/yres.
* gdk/linux-fb/gdkprivate-fb.h:
Added fb_men, fb_width, fb_height & fb_stride. When using
shadow fb these can differ from the framebuffer stuff.
Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
_gdk_fb_screen_angle. Removed CM, RP.
* gdk/linux-fb/gdkrender-fb.c:
Added code for shadowfb handling and screen rotation using
shadowfb.
* gdk/linux-fb/gdkwindow-fb.c:
Use fb_mem, fb_stride, fb_width, fb_height.
Added recompute_rowstride to reset the rowstride of all windows.
Added gdk_fb_recompute_all() which recomputes rootwindow size,
window abs positions and window rowstrides. Usefull when the
rotation has changed.
2001-01-11 16:39:21 +00:00
|
|
|
guint32 gdk_fb_get_time (void);
|
2000-11-22 10:07:34 +00:00
|
|
|
|
Added ENABLE_SHADOW_FB
2001-01-11 Alexander Larsson <alexl@redhat.com>
* acconfig.h:
Added ENABLE_SHADOW_FB
* configure.in:
Added --disable-shadowfb
* gdk/linux-fb/gdkcursor-fb.c:
Update shadowfb when updating cursor
* gdk/linux-fb/gdkdrawable-fb2.c:
Added wrappers for shadowfb that calls the normal drawable
methods, but calls gdk_shadow_fb_update(bounding box) when
GdkWindows are drawed to.
Moved gdk_draw_glyphs implementation to _gdk_draw_glyphs
which also returns the bounding box.
* gdk/linux-fb/gdkfb.h:
Added GdkFBAngle type and gdk_fb_set_rotation declaration.
* gdk/linux-fb/gdkgeometry-fb.c:
Update shadowfb when scrolling window.
* gdk/linux-fb/gdkglobals-fb.c:
Add _gdk_fb_screen_angle.
* gdk/linux-fb/gdkkeyboard-fb.c:
Test code for screen rotation. Shift-F2 in the xlate driver
rotates the screen.
* gdk/linux-fb/gdkmain-fb.c:
Handle shadowfb. Add gdk_fb_set_rotation(). Remove CM and RP.
* gdk/linux-fb/gdkmouse-fb.c:
Use fb_width/height instead of modeinfo.xres/yres.
* gdk/linux-fb/gdkprivate-fb.h:
Added fb_men, fb_width, fb_height & fb_stride. When using
shadow fb these can differ from the framebuffer stuff.
Declarations for gdk_shadow_fb_update, gdk_shadow_fb_init,
gdk_shadow_fb_stop_updates, gdk_fb_recompute_all,
_gdk_fb_screen_angle. Removed CM, RP.
* gdk/linux-fb/gdkrender-fb.c:
Added code for shadowfb handling and screen rotation using
shadowfb.
* gdk/linux-fb/gdkwindow-fb.c:
Use fb_mem, fb_stride, fb_width, fb_height.
Added recompute_rowstride to reset the rowstride of all windows.
Added gdk_fb_recompute_all() which recomputes rootwindow size,
window abs positions and window rowstrides. Usefull when the
rotation has changed.
2001-01-11 16:39:21 +00:00
|
|
|
void gdk_shadow_fb_update (gint minx,
|
|
|
|
gint miny,
|
|
|
|
gint maxx,
|
|
|
|
gint maxy);
|
|
|
|
void gdk_shadow_fb_init (void);
|
|
|
|
void gdk_shadow_fb_stop_updates (void);
|
|
|
|
void gdk_fb_recompute_all (void);
|
|
|
|
|
|
|
|
extern GdkFBAngle _gdk_fb_screen_angle;
|
2000-07-31 17:18:36 +00:00
|
|
|
|
2001-01-17 15:52:22 +00:00
|
|
|
/* Pointer grab info */
|
|
|
|
extern GdkWindow *_gdk_fb_pointer_grab_window;
|
|
|
|
extern gboolean _gdk_fb_pointer_grab_owner_events;
|
|
|
|
extern GdkWindow *_gdk_fb_pointer_grab_confine;
|
|
|
|
extern GdkEventMask _gdk_fb_pointer_grab_events;
|
2000-05-31 21:50:38 +00:00
|
|
|
extern GdkCursor *_gdk_fb_pointer_grab_cursor;
|
2001-01-17 15:52:22 +00:00
|
|
|
/* Keyboard grab info */
|
|
|
|
extern GdkWindow *_gdk_fb_keyboard_grab_window;
|
|
|
|
extern GdkEventMask _gdk_fb_keyboard_grab_events;
|
|
|
|
extern gboolean _gdk_fb_keyboard_grab_owner_events;
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
extern GdkFBDisplay *gdk_display;
|
|
|
|
extern GdkDrawableClass _gdk_fb_drawable_class;
|
|
|
|
extern FILE *debug_out;
|
2001-01-17 15:52:22 +00:00
|
|
|
GdkEvent *gdk_event_make(GdkWindow *window,
|
|
|
|
GdkEventType type,
|
|
|
|
gboolean append_to_queue);
|
|
|
|
GdkWindow * gdk_fb_pointer_event_window (GdkWindow *window,
|
|
|
|
GdkEventType type);
|
|
|
|
GdkWindow *gdk_fb_keyboard_event_window (GdkWindow *window,
|
|
|
|
GdkEventType type);
|
|
|
|
GdkWindow *gdk_fb_other_event_window (GdkWindow *window,
|
|
|
|
GdkEventType type);
|
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);
|
2000-12-06 17:27:52 +00:00
|
|
|
void gdk_fb_cursor_move (gint x, gint y, GdkWindow *in_window);
|
2000-05-31 21:50:38 +00:00
|
|
|
|
2000-12-08 12:38:48 +00:00
|
|
|
guint gdk_fb_keyboard_modifiers (void);
|
|
|
|
gboolean gdk_fb_keyboard_open (void);
|
|
|
|
void gdk_fb_keyboard_close (void);
|
|
|
|
gboolean gdk_fb_mouse_open (void);
|
|
|
|
void gdk_fb_mouse_close (void);
|
|
|
|
void gdk_fb_mouse_get_info (gint *x,
|
|
|
|
gint *y,
|
|
|
|
GdkModifierType *mask);
|
2000-12-06 17:27:52 +00:00
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
#endif /* __GDK_PRIVATE_FB_H__ */
|