1997-11-24 22:37:52 +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
|
1998-02-28 14:35:55 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
1997-11-24 22:37:52 +00:00
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
1998-04-13 02:02:47 +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.
|
1997-11-24 22:37:52 +00:00
|
|
|
*/
|
1999-02-24 07:37:18 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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/.
|
|
|
|
*/
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#ifndef __GDK_PRIVATE_H__
|
|
|
|
#define __GDK_PRIVATE_H__
|
|
|
|
|
|
|
|
#include <gdk/gdktypes.h>
|
1999-10-01 23:18:30 +00:00
|
|
|
#include <gdk/gdkevents.h>
|
|
|
|
#include <gdk/gdkfont.h>
|
|
|
|
#include <gdk/gdkgc.h>
|
|
|
|
#include <gdk/gdkim.h>
|
|
|
|
#include <gdk/gdkimage.h>
|
|
|
|
#include <gdk/gdkregion.h>
|
|
|
|
#include <gdk/gdkvisual.h>
|
|
|
|
#include <gdk/gdkwindow.h>
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
1999-10-03 22:12:41 +00:00
|
|
|
#define GDK_DRAWABLE_TYPE(d) (((GdkDrawablePrivate *)d)->window_type)
|
|
|
|
#define GDK_IS_WINDOW(d) (GDK_DRAWABLE_TYPE(d) <= GDK_WINDOW_TEMP || \
|
|
|
|
GDK_DRAWABLE_TYPE(d) == GDK_WINDOW_FOREIGN)
|
|
|
|
#define GDK_IS_PIXMAP(d) (GDK_DRAWABLE_TYPE(d) == GDK_DRAWABLE_PIXMAP)
|
|
|
|
#define GDK_DRAWABLE_DESTROYED(d) (((GdkDrawablePrivate *)d)->destroyed)
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-10-03 22:12:41 +00:00
|
|
|
#define gdk_window_lookup(xid) ((GdkWindow*) gdk_xid_table_lookup (xid))
|
|
|
|
#define gdk_pixmap_lookup(xid) ((GdkPixmap*) gdk_xid_table_lookup (xid))
|
|
|
|
#define gdk_font_lookup(xid) ((GdkFont*) gdk_xid_table_lookup (xid))
|
|
|
|
|
|
|
|
typedef struct _GdkDrawablePrivate GdkDrawablePrivate;
|
|
|
|
/* typedef struct _GdkDrawablePrivate GdkPixmapPrivate; */
|
1997-12-17 00:14:36 +00:00
|
|
|
typedef struct _GdkWindowPrivate GdkWindowPrivate;
|
1999-11-08 20:14:59 +00:00
|
|
|
typedef struct _GdkImageClass GdkImageClass;
|
1998-02-28 14:35:55 +00:00
|
|
|
typedef struct _GdkImagePrivate GdkImagePrivate;
|
|
|
|
typedef struct _GdkGCPrivate GdkGCPrivate;
|
1997-12-17 00:14:36 +00:00
|
|
|
typedef struct _GdkColormapPrivate GdkColormapPrivate;
|
1998-08-25 00:06:38 +00:00
|
|
|
typedef struct _GdkColorInfo GdkColorInfo;
|
1998-02-28 14:35:55 +00:00
|
|
|
typedef struct _GdkFontPrivate GdkFontPrivate;
|
|
|
|
typedef struct _GdkEventFilter GdkEventFilter;
|
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
|
|
|
typedef struct _GdkClientFilter GdkClientFilter;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-10-03 22:12:41 +00:00
|
|
|
struct _GdkDrawablePrivate
|
|
|
|
{
|
|
|
|
GdkDrawable drawable;
|
1999-11-08 20:14:59 +00:00
|
|
|
GdkDrawableClass *klass;
|
|
|
|
gpointer klass_data;
|
1999-10-03 22:12:41 +00:00
|
|
|
|
|
|
|
guint8 window_type;
|
|
|
|
guint ref_count;
|
|
|
|
|
|
|
|
guint16 width;
|
|
|
|
guint16 height;
|
|
|
|
|
|
|
|
GdkColormap *colormap;
|
|
|
|
|
|
|
|
guint destroyed : 2;
|
|
|
|
};
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
struct _GdkWindowPrivate
|
|
|
|
{
|
1999-10-03 22:12:41 +00:00
|
|
|
GdkDrawablePrivate drawable;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
GdkWindow *parent;
|
|
|
|
gint16 x;
|
|
|
|
gint16 y;
|
|
|
|
guint8 resize_count;
|
1999-01-15 16:00:39 +00:00
|
|
|
guint mapped : 1;
|
1999-01-27 18:21:20 +00:00
|
|
|
guint guffaw_gravity : 1;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
gint extension_events;
|
1997-12-18 02:17:14 +00:00
|
|
|
|
|
|
|
GList *filters;
|
1998-04-30 23:57:15 +00:00
|
|
|
GList *children;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
struct _GdkImageClass
|
1997-11-24 22:37:52 +00:00
|
|
|
{
|
1999-11-08 20:14:59 +00:00
|
|
|
void (*destroy) (GdkImage *image);
|
|
|
|
void (*image_put) (GdkImage *image,
|
|
|
|
GdkDrawable *window,
|
1998-02-28 14:35:55 +00:00
|
|
|
GdkGC *gc,
|
|
|
|
gint xsrc,
|
|
|
|
gint ysrc,
|
|
|
|
gint xdest,
|
|
|
|
gint ydest,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
struct _GdkImagePrivate
|
|
|
|
{
|
|
|
|
GdkImage image;
|
|
|
|
|
|
|
|
guint ref_count;
|
|
|
|
GdkImageClass *klass;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkFontPrivate
|
|
|
|
{
|
|
|
|
GdkFont font;
|
|
|
|
guint ref_count;
|
|
|
|
};
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
struct _GdkGCPrivate
|
|
|
|
{
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
1999-11-08 20:14:59 +00:00
|
|
|
GdkGCClass *klass;
|
|
|
|
gpointer klass_data;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
1998-08-25 00:06:38 +00:00
|
|
|
typedef enum {
|
|
|
|
GDK_COLOR_WRITEABLE = 1 << 0
|
|
|
|
} GdkColorInfoFlags;
|
|
|
|
|
|
|
|
struct _GdkColorInfo
|
|
|
|
{
|
|
|
|
GdkColorInfoFlags flags;
|
|
|
|
guint ref_count;
|
|
|
|
};
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
struct _GdkColormapPrivate
|
|
|
|
{
|
|
|
|
GdkColormap colormap;
|
|
|
|
GdkVisual *visual;
|
1998-08-25 00:06:38 +00:00
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
1997-12-18 02:17:14 +00:00
|
|
|
struct _GdkEventFilter {
|
|
|
|
GdkFilterFunc function;
|
|
|
|
gpointer data;
|
|
|
|
};
|
1997-11-27 04:16:39 +00:00
|
|
|
|
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
|
|
|
struct _GdkClientFilter {
|
|
|
|
GdkAtom type;
|
|
|
|
GdkFilterFunc function;
|
|
|
|
gpointer data;
|
|
|
|
};
|
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
GDK_ARG_STRING,
|
|
|
|
GDK_ARG_INT,
|
|
|
|
GDK_ARG_BOOL,
|
|
|
|
GDK_ARG_NOBOOL,
|
|
|
|
GDK_ARG_CALLBACK
|
|
|
|
} GdkArgType;
|
|
|
|
|
1997-11-27 04:16:39 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
typedef struct _GdkArgContext GdkArgContext;
|
|
|
|
typedef struct _GdkArgDesc GdkArgDesc;
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
typedef void (*GdkArgFunc) (const char *name, const char *arg, gpointer data);
|
|
|
|
|
|
|
|
struct _GdkArgContext
|
1997-11-27 04:16:39 +00:00
|
|
|
{
|
1999-11-08 20:14:59 +00:00
|
|
|
GPtrArray *tables;
|
|
|
|
gpointer cb_data;
|
1997-11-27 04:16:39 +00:00
|
|
|
};
|
1997-12-18 02:17:14 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
struct _GdkArgDesc
|
1998-02-28 14:35:55 +00:00
|
|
|
{
|
1999-11-08 20:14:59 +00:00
|
|
|
const char *name;
|
|
|
|
GdkArgType type;
|
|
|
|
gpointer location;
|
|
|
|
GdkArgFunc callback;
|
1998-02-28 14:35:55 +00:00
|
|
|
};
|
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
typedef enum {
|
1998-06-15 21:27:17 +00:00
|
|
|
GDK_DEBUG_MISC = 1 << 0,
|
|
|
|
GDK_DEBUG_EVENTS = 1 << 1,
|
|
|
|
GDK_DEBUG_DND = 1 << 2,
|
|
|
|
GDK_DEBUG_COLOR_CONTEXT = 1 << 3,
|
|
|
|
GDK_DEBUG_XIM = 1 << 4
|
|
|
|
} GdkDebugFlag;
|
1997-12-17 00:14:36 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
void gdk_event_button_generate (GdkEvent *event);
|
|
|
|
|
|
|
|
/* FIFO's for event queue, and for events put back using
|
|
|
|
* gdk_event_put().
|
|
|
|
*/
|
|
|
|
extern GList *gdk_queued_events;
|
|
|
|
extern GList *gdk_queued_tail;
|
|
|
|
|
|
|
|
extern GdkEventFunc gdk_event_func; /* Callback for events */
|
|
|
|
extern gpointer gdk_event_data;
|
|
|
|
extern GDestroyNotify gdk_event_notify;
|
|
|
|
|
|
|
|
GdkEvent* gdk_event_new (void);
|
|
|
|
|
|
|
|
void gdk_events_init (void);
|
|
|
|
void gdk_events_queue (void);
|
|
|
|
GdkEvent* gdk_event_unqueue (void);
|
|
|
|
|
|
|
|
GList* gdk_event_queue_find_first (void);
|
|
|
|
void gdk_event_queue_remove_link (GList *node);
|
|
|
|
void gdk_event_queue_append (GdkEvent *event);
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
void gdk_window_init (void);
|
|
|
|
void gdk_visual_init (void);
|
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
|
|
|
void gdk_dnd_init (void);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
void gdk_image_init (void);
|
1999-11-08 20:14:59 +00:00
|
|
|
void gdk_image_exit (void);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
void gdk_input_init (void);
|
|
|
|
void gdk_input_exit (void);
|
|
|
|
|
|
|
|
void gdk_windowing_exit (void);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
void gdk_window_add_colormap_windows (GdkWindow *window);
|
1998-02-28 14:35:55 +00:00
|
|
|
void gdk_window_destroy_notify (GdkWindow *window);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-26 21:28:00 +00:00
|
|
|
/* If you pass x = y = -1, it queries the pointer
|
|
|
|
to find out where it currently is.
|
|
|
|
If you pass x = y = -2, it does anything necessary
|
|
|
|
to know that the drag is ending.
|
|
|
|
*/
|
|
|
|
void gdk_dnd_display_drag_cursor(gint x,
|
|
|
|
gint y,
|
|
|
|
gboolean drag_ok,
|
|
|
|
gboolean change_made);
|
|
|
|
|
1998-02-28 14:35:55 +00:00
|
|
|
extern gint gdk_debug_level;
|
1999-11-08 20:14:59 +00:00
|
|
|
extern gboolean gdk_show_events;
|
1998-02-28 14:35:55 +00:00
|
|
|
extern gint gdk_screen;
|
1999-11-21 22:56:37 +00:00
|
|
|
GDKVAR GdkWindow *gdk_parent_root;
|
1999-12-11 23:04:55 +00:00
|
|
|
GDKVAR gint gdk_error_code;
|
|
|
|
GDKVAR gint gdk_error_warnings;
|
1998-03-06 00:39:11 +00:00
|
|
|
extern GList *gdk_default_filters;
|
1998-12-15 07:32:11 +00:00
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
GdkWindow* _gdk_window_alloc (void);
|
|
|
|
|
|
|
|
/* Font/string functions implemented in module-specific code */
|
|
|
|
gint _gdk_font_strlen (GdkFont *font, const char *str);
|
|
|
|
void _gdk_font_destroy (GdkFont *font);
|
|
|
|
|
|
|
|
void _gdk_colormap_real_destroy (GdkColormap *colormap);
|
|
|
|
|
2000-01-29 22:26:41 +00:00
|
|
|
void _gdk_cursor_destroy (GdkCursor *cursor);
|
|
|
|
|
1999-11-08 20:14:59 +00:00
|
|
|
/* Initialization */
|
|
|
|
|
|
|
|
extern GdkArgDesc _gdk_windowing_args[];
|
|
|
|
gboolean _gdk_windowing_init_check (int argc, char **argv);
|
1998-05-16 02:13:12 +00:00
|
|
|
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
#ifdef USE_XIM
|
|
|
|
/* XIM support */
|
|
|
|
gint gdk_im_open (void);
|
|
|
|
void gdk_im_close (void);
|
|
|
|
void gdk_ic_cleanup (void);
|
1998-12-09 13:01:17 +00:00
|
|
|
#endif /* USE_XIM */
|
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
|
|
|
|
1998-02-19 06:21:27 +00:00
|
|
|
/* Debugging support */
|
|
|
|
|
|
|
|
#ifdef G_ENABLE_DEBUG
|
|
|
|
|
1998-02-28 14:35:55 +00:00
|
|
|
#define GDK_NOTE(type,action) G_STMT_START { \
|
|
|
|
if (gdk_debug_flags & GDK_DEBUG_##type) \
|
|
|
|
{ action; }; } G_STMT_END
|
1998-02-19 06:21:27 +00:00
|
|
|
|
|
|
|
#else /* !G_ENABLE_DEBUG */
|
|
|
|
|
|
|
|
#define GDK_NOTE(type,action)
|
|
|
|
|
|
|
|
#endif /* G_ENABLE_DEBUG */
|
|
|
|
|
1999-11-21 22:56:37 +00:00
|
|
|
GDKVAR guint gdk_debug_flags;
|
1998-02-19 06:21:27 +00:00
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GDK_PRIVATE_H__ */
|