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>
|
2004-07-28 16:04:53 +00:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_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 */
|
|
|
|
|
2003-05-27 21:21:00 +00:00
|
|
|
guint realized : 1;
|
2000-05-31 21:50:38 +00:00
|
|
|
};
|
|
|
|
|
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 */
|
2001-06-25 23:01:36 +00:00
|
|
|
|
|
|
|
/* fb manager */
|
|
|
|
int manager_fd;
|
|
|
|
int manager_tag;
|
|
|
|
int manager_blocked;
|
2000-05-31 21:50:38 +00:00
|
|
|
};
|
|
|
|
|
2001-06-30 04:30:32 +00:00
|
|
|
struct _GdkVisualClass
|
|
|
|
{
|
|
|
|
GObjectClass parent_class;
|
|
|
|
};
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
|
2002-01-25 17:10:03 +00:00
|
|
|
GdkImage *_gdk_fb_copy_to_image (GdkDrawable *drawable,
|
|
|
|
GdkImage *image,
|
|
|
|
gint src_x,
|
|
|
|
gint src_y,
|
|
|
|
gint dest_x,
|
|
|
|
gint dest_y,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
2000-11-15 12:45:30 +00:00
|
|
|
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;
|
|
|
|
|
2003-05-27 21:21:00 +00:00
|
|
|
guint draw_bg : 1;
|
|
|
|
guint copy_region : 1;
|
|
|
|
guint 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,
|
2002-10-16 18:41:42 +00:00
|
|
|
gboolean filled,
|
2000-11-22 10:07:34 +00:00
|
|
|
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);
|
|
|
|
|
Make gdkx.h the only installed header from gdk/x11. All structures in
Fri Sep 7 11:51:44 2001 Owen Taylor <otaylor@redhat.com>
Make gdkx.h the only installed header from gdk/x11.
All structures in gdk/x11 are opaque.
* gdk/x11/Makefile.am gdk/x11/gdkx.h gdk/x11/gdkprivate-x11.h:
Don't install gdk{drawable,pixmap,window}-x11.h.
* gdk/x11/{gdkcolormap-x11.c, gdkfont-x11.c, gdkx.h, gdkvisual-x11.c:
Move GdkColormapPrivateX11, GdkFontPrivateX GdkImagePrivateX11,
GdkVisualClass into C files.
* gdk/gdkpixmap-x11.[ch]: Make gdk_pixmap_impl_get_type() static.
* gdk/x11/{gdkcolor-x11.c, gdkcursor-x11.c, gdkdrawable-x11.c,
gdkfont-x11.c, gdkgc-x11.c, gdkx.h, gdkimage-x11,gdkvisual-x11.c}
Add public functions to replace previously exported direct
structure access.
gdk_x11_colormap_get_{xdisplay,xcolormap}
gdk_x11_cursor_get_{xdisplay,xcursor},
gdk_x11_drawable_get_{xdisplay,xcursor,gdk_x11_visual_get_xvisual,
gdk_x11_font_get_{xdisplay,xfont}, gdk_x11_image_get_{xdisplay,ximage},
gdk_x11_gc_get_{xdisplay,ximage}
* gdk/gdkprivate.h gdk/gdkinternals.h: Move GdkColorInfo,
GdkEventFilter, GdkClientFilter, GdkFontPrivate to gdkinternals.
Fix a number of variables and functions that were exported
"accidentally" from GDK.
* gdk/**.[ch]: gdk => _gdk for gdk_visual_init,
gdk_events_init, gdk_input_init, gdk_dnd_init, gdk_image_exit,
gdk_input_exit, gdk_windowing_exit, gdk_event_func, gdk_event_data,
gdk_event_notify, gdk_queued_events, gdk_queued_tail,
gdk_event_new, gdk_events_queue, gdk_events_unqueue,
gdk_event_queue_find_first, gdk_event_queue_remove_link,
gdk_event_queue_append, gdk_event_button_generate,
gdk_debug_flags, gdk_default_filters, gdk_parent_root.
* gdk/x11/{gdkevents-x11.c, gdkglobals-x11.c, gdkimage-x11.c,
gdkmain-x11.c, gdkprivate-x11.h, gdk/x11/gdkwindow-x11.c}:
gdk => _gdk for gdk_event_mask_table, gkd_nevent_masks,
gdk_wm_window_protocols, gdk_leader_window, gdk_xgrab_window,
gdk_use_xshm, gdk_input_ignore_core.
* gdk/x11/xsettings-common.h (xsettings_list_insert): Add
#defines to namespace functions into the private _gdk_
namespace.
* gdk/gdkwindow.[ch] gdk/x11/gdkx.h: Add gdk_get_default_root_window ()
to replace gdk_parent_root exported variable. Adjust and
deprecate GDK_ROOT_PARENT().
* demos/{testpixbuf-drawable.c,testpixbuf-save.c}: Fix
GDK_ROOT_PARENT usage, remove includes of port-specific
headers.
* gdk/{win32,x11,fb}/gdkinput*.[ch]: s/gdk/_gdk/ for
_gdk_input_gxid_host, _gdk_input_gxid_port, _gdk_input_ignore_core,
gdk_input_devices, _gdk_input_windows, gdk_init_input_core.
* gdk/x11/{gdkevents-x11.,c gdkglobals-x11.c, gdkmain-x11.c}
docs/Changes-2.0.txt: Remove gdk_wm_protocols,
gdk_wm_delete_window functions, gdk_wm_take_focus,
use gdk_atom_intern() instead.
* gdk/linux-fb/{gdkselection-fb.c, gdkmain-fb.c, gdkprivatefb.h}
gdk/win32/{gdkselection-win32.c, gdkmgdkwin32.h, gdkprivate-win32.h}
gdk/x11/{gdkselection-x11.c gdkx.h, gtkprivate-x11.h}
gtk/gtkselection.c
Unexport gdk_selection_property, just use
gdk_atom_intern ("GDK_SELECTION").
* gdk/x11/{gdkprivate-x11.h,gdkdrawable-x11h,gdkgc-x11.c,gdkx.h}:
Unexport gdk_drawable_impl_x11_get_type, gdk_gc_x11_get_type,
GDK_GC_X11 cast macros, GdkGCX11 structures, GdkCursorPrivate,
GdkVisualprivate, gdk_x11_gc_flush.
Make a number of public exports of variables into functions
to increase encapsulation.
* gdk/gdkinternals.h gdk/gdkinput.h gdk/gdkevents.h
gdk/linux-fb/gdkmouse-fb.c: gdk_core_pointer => _gdk_core_pointer,
move to gdkinternals.h. Add gdk_device_get_core_pointer ().
* gdk/gdkprivate.h gdk/gdkpango.c gdk/gdkinternals.h
docs/Changes-2.0.txt: Unexport gdk_parent_root, gdk_error_code,
gdk_error_warnings.
* gdk/x11/{gdkcolormap-x11.c, gdkmain-x11.c, gdkx.h}
docs/Changes-2.0.txt:
s/gdk_screen/_gdk_screen/, add gdk_x11_get_default_screen()
s/gdk_root_window/_gdk_root_window/, add gdk_x11_get_default_root_xwindow()
Add gdk_x11_get_default_xdisplay().
* gdk/gdk.h gdk/gdk.c linux-fb/gdkfb.h linux-fb/gdkglobals-fb.c
win32/gdkwin32.h x11/gdkglobals-x11.c gdk/x11/gdkmain-x11.c
gdk/x11/gdkx.h: gdk/gdk.def: Add gdk_get/set_program_class,
Don't export gdk_progclass, move --class command line
option and handling to common portion of GDK.
Miscellaneous fixes:
* gdk/x11/gdkwindow-x11.c (gdk_window_set_icon_list): Fix
g_return_val_if_fail that should have been g_return_if_fail.
* gdk/gdkinternals.h gdk/gdkprivate.h: Move
gdk_synthesize_window_state() to the semi-public gdkprivate.h.
* gtk/gtkdnd.c (_gtk_drag_source_handle_event): Remove uneeded
X11 dependency.
* gdk/linux-fb/gdkmain-fb.c gdk/win32/gdkmain-win32.c gdk/TODO:
Remove unused gdk_key_repeat_disable/restore.
* linux-fb/gdkglobals-fb.c win32/gdkglobals-win32.c
x11/gdkglobals-x11.c x11/gdkprivate-x11.h gdk/gdk.def:
Remove unused gdk_null_window_warnings variable.
* gdk/Makefile.am (DIST_SUBDIRS) nanox/*: cvs remove nanox;
it can be retrieved from the repository; it is too far
from functional to be worth having people check out;
it would be easier to start from scratch, I suspect.
* gdk/x11/gdkpixmap-x11.c: Fix lvalue usage of GDK_PIXMAP_XID().
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
* gdk/x11/gdkkeys-x11.c gdk/gdkrgb.c gdk/gdkwindow.c
gdk/x11/gdkpango-x11.c gdk/x11/gdkselection-x11.c:
Fix some accidentally global variables and unused global variables.
Add some space for future expansion to multihead.
* gdk/gdkdrawable.h: Add four reserved function pointers
for future expansion of GdkDrawableClass.
* gtk/gtkwindow.h gtk/gtkinvisible.h: Add reserved pointer
where we can put a GdkScreen * later.
2001-09-07 21:50:20 +00:00
|
|
|
extern GdkAtom _gdk_selection_property;
|
|
|
|
|
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
|
|
|
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;
|
2002-09-10 15:19:13 +00:00
|
|
|
extern GdkDisplay *_gdk_display;
|
|
|
|
extern GdkScreen *_gdk_screen;
|
2002-12-05 16:28:35 +00:00
|
|
|
|
|
|
|
extern volatile gboolean _gdk_fb_is_active_vt;
|
|
|
|
|
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);
|
2001-06-25 23:01:36 +00:00
|
|
|
gboolean gdk_fb_keyboard_init (gboolean open_dev);
|
2000-12-08 12:38:48 +00:00
|
|
|
gboolean gdk_fb_keyboard_open (void);
|
|
|
|
void gdk_fb_keyboard_close (void);
|
2001-06-25 23:01:36 +00:00
|
|
|
gboolean gdk_fb_mouse_init (gboolean open_dev);
|
2000-12-08 12:38:48 +00:00
|
|
|
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
|
|
|
|
2002-09-22 22:32:05 +00:00
|
|
|
/* Initialization */
|
|
|
|
void _gdk_windowing_window_init (void);
|
|
|
|
void _gdk_visual_init (void);
|
|
|
|
void _gdk_dnd_init (void);
|
|
|
|
void _gdk_windowing_image_init (void);
|
|
|
|
void _gdk_events_init (void);
|
|
|
|
void _gdk_input_init (void);
|
|
|
|
|
2000-05-31 21:50:38 +00:00
|
|
|
#endif /* __GDK_PRIVATE_FB_H__ */
|