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
|
|
|
*/
|
|
|
|
#ifndef __GDK_PRIVATE_H__
|
|
|
|
#define __GDK_PRIVATE_H__
|
|
|
|
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <gdk/gdktypes.h>
|
|
|
|
|
1998-02-28 14:35:55 +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))
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
1997-12-17 00:14:36 +00:00
|
|
|
typedef struct _GdkWindowPrivate GdkWindowPrivate;
|
|
|
|
typedef struct _GdkWindowPrivate GdkPixmapPrivate;
|
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;
|
1997-12-17 00:14:36 +00:00
|
|
|
typedef struct _GdkVisualPrivate GdkVisualPrivate;
|
1998-02-28 14:35:55 +00:00
|
|
|
typedef struct _GdkFontPrivate GdkFontPrivate;
|
1997-12-17 00:14:36 +00:00
|
|
|
typedef struct _GdkCursorPrivate GdkCursorPrivate;
|
1998-02-28 14:35:55 +00:00
|
|
|
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-12-17 00:14:36 +00:00
|
|
|
typedef struct _GdkColorContextPrivate GdkColorContextPrivate;
|
1998-02-28 14:35:55 +00:00
|
|
|
typedef struct _GdkRegionPrivate GdkRegionPrivate;
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct _GdkWindowPrivate
|
|
|
|
{
|
|
|
|
GdkWindow window;
|
|
|
|
GdkWindow *parent;
|
|
|
|
Window xwindow;
|
|
|
|
Display *xdisplay;
|
|
|
|
gint16 x;
|
|
|
|
gint16 y;
|
|
|
|
guint16 width;
|
|
|
|
guint16 height;
|
|
|
|
guint8 resize_count;
|
|
|
|
guint8 window_type;
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
1998-01-02 03:36:27 +00:00
|
|
|
guint destroyed : 2;
|
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
|
|
|
GdkColormap *colormap;
|
|
|
|
GList *children;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkImagePrivate
|
|
|
|
{
|
|
|
|
GdkImage image;
|
|
|
|
XImage *ximage;
|
|
|
|
Display *xdisplay;
|
|
|
|
gpointer x_shm_info;
|
|
|
|
|
|
|
|
void (*image_put) (GdkDrawable *window,
|
1998-02-28 14:35:55 +00:00
|
|
|
GdkGC *gc,
|
|
|
|
GdkImage *image,
|
|
|
|
gint xsrc,
|
|
|
|
gint ysrc,
|
|
|
|
gint xdest,
|
|
|
|
gint ydest,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkGCPrivate
|
|
|
|
{
|
|
|
|
GdkGC gc;
|
|
|
|
GC xgc;
|
|
|
|
Display *xdisplay;
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
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;
|
|
|
|
Colormap xcolormap;
|
|
|
|
Display *xdisplay;
|
|
|
|
GdkVisual *visual;
|
|
|
|
gint private_val;
|
1998-08-25 00:06:38 +00:00
|
|
|
|
|
|
|
GHashTable *hash;
|
|
|
|
GdkColorInfo *info;
|
|
|
|
time_t last_sync_time;
|
|
|
|
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkVisualPrivate
|
|
|
|
{
|
|
|
|
GdkVisual visual;
|
|
|
|
Visual *xvisual;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkFontPrivate
|
|
|
|
{
|
|
|
|
GdkFont font;
|
|
|
|
/* XFontStruct *xfont; */
|
|
|
|
/* generic pointer point to XFontStruct or XFontSet */
|
|
|
|
gpointer xfont;
|
|
|
|
Display *xdisplay;
|
1998-01-30 23:47:09 +00:00
|
|
|
guint ref_count;
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct _GdkCursorPrivate
|
|
|
|
{
|
|
|
|
GdkCursor cursor;
|
|
|
|
Cursor xcursor;
|
|
|
|
Display *xdisplay;
|
|
|
|
};
|
|
|
|
|
1998-02-26 21:28:00 +00:00
|
|
|
struct _GdkDndCursorInfo {
|
1998-02-28 14:35:55 +00:00
|
|
|
Cursor gdk_cursor_dragdefault, gdk_cursor_dragok;
|
|
|
|
GdkWindow *drag_pm_default, *drag_pm_ok;
|
|
|
|
GdkPoint default_hotspot, ok_hotspot;
|
1998-03-10 21:57:05 +00:00
|
|
|
GList *xids;
|
1998-02-26 21:28:00 +00:00
|
|
|
};
|
|
|
|
typedef struct _GdkDndCursorInfo GdkDndCursorInfo;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
struct _GdkDndGlobals {
|
1998-02-28 14:35:55 +00:00
|
|
|
GdkAtom gdk_XdeEnter, gdk_XdeLeave, gdk_XdeRequest;
|
|
|
|
GdkAtom gdk_XdeDataAvailable, gdk_XdeDataShow, gdk_XdeCancel;
|
|
|
|
GdkAtom gdk_XdeTypelist;
|
1998-02-26 21:28:00 +00:00
|
|
|
|
|
|
|
GdkDndCursorInfo *c;
|
1998-02-28 14:35:55 +00:00
|
|
|
GdkWindow **drag_startwindows;
|
|
|
|
guint drag_numwindows;
|
|
|
|
gboolean drag_really, drag_perhaps, dnd_grabbed;
|
|
|
|
Window dnd_drag_target;
|
|
|
|
GdkPoint drag_dropcoords;
|
1998-03-06 05:14:09 +00:00
|
|
|
|
|
|
|
GdkPoint dnd_drag_start, dnd_drag_oldpos;
|
|
|
|
GdkRectangle dnd_drag_dropzone;
|
|
|
|
GdkWindowPrivate *real_sw;
|
|
|
|
Window dnd_drag_curwin;
|
1998-03-10 02:48:02 +00:00
|
|
|
Time last_drop_time; /* An incredible hack, sosumi miguel */
|
1997-11-24 22:37:52 +00:00
|
|
|
};
|
|
|
|
typedef struct _GdkDndGlobals GdkDndGlobals;
|
|
|
|
|
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;
|
|
|
|
};
|
|
|
|
|
1997-11-27 04:16:39 +00:00
|
|
|
#ifdef 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
|
|
|
typedef struct _GdkICPrivate GdkICPrivate;
|
|
|
|
|
1997-12-17 00:14:36 +00:00
|
|
|
struct _GdkICPrivate
|
1997-11-27 04:16:39 +00:00
|
|
|
{
|
|
|
|
XIC xic;
|
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
|
|
|
GdkICAttr *attr;
|
|
|
|
GdkICAttributesType mask;
|
1997-11-27 04:16:39 +00:00
|
|
|
};
|
1997-12-18 02:17:14 +00:00
|
|
|
|
1997-11-27 04:16:39 +00:00
|
|
|
#endif /* USE_XIM */
|
|
|
|
|
1997-12-17 00:14:36 +00:00
|
|
|
struct _GdkColorContextPrivate
|
|
|
|
{
|
|
|
|
GdkColorContext color_context;
|
|
|
|
Display *xdisplay;
|
|
|
|
XStandardColormap std_cmap;
|
|
|
|
};
|
|
|
|
|
1998-02-28 14:35:55 +00:00
|
|
|
struct _GdkRegionPrivate
|
|
|
|
{
|
|
|
|
GdkRegion region;
|
|
|
|
Region xregion;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
1998-12-15 07:32:11 +00:00
|
|
|
void gdk_events_init (void);
|
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);
|
|
|
|
void gdk_image_exit (void);
|
|
|
|
|
|
|
|
GdkColormap* gdk_colormap_lookup (Colormap xcolormap);
|
1998-02-28 14:35:55 +00:00
|
|
|
GdkVisual* gdk_visual_lookup (Visual *xvisual);
|
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-28 14:35:55 +00:00
|
|
|
void gdk_xid_table_insert (XID *xid,
|
|
|
|
gpointer data);
|
|
|
|
void gdk_xid_table_remove (XID xid);
|
|
|
|
gpointer gdk_xid_table_lookup (XID xid);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-03-08 21:47:14 +00:00
|
|
|
gint gdk_send_xevent (Window window, gboolean propagate, glong event_mask,
|
|
|
|
XEvent *event_send);
|
|
|
|
|
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-03-07 18:38:18 +00:00
|
|
|
/* Please see gdkwindow.c for comments on how to use */
|
1998-03-11 22:24:54 +00:00
|
|
|
Window gdk_window_xid_at(Window base, gint bx, gint by, gint x, gint y, GList *excludes, gboolean excl_child);
|
|
|
|
Window gdk_window_xid_at_coords(gint x, gint y, GList *excludes, gboolean excl_child);
|
1997-11-24 22:37:52 +00:00
|
|
|
|
1998-02-28 14:35:55 +00:00
|
|
|
extern gint gdk_debug_level;
|
|
|
|
extern gint gdk_show_events;
|
|
|
|
extern gint gdk_use_xshm;
|
|
|
|
extern gint gdk_stack_trace;
|
|
|
|
extern gchar *gdk_display_name;
|
|
|
|
extern Display *gdk_display;
|
|
|
|
extern gint gdk_screen;
|
|
|
|
extern Window gdk_root_window;
|
|
|
|
extern Window gdk_leader_window;
|
|
|
|
extern GdkWindowPrivate gdk_root_parent;
|
|
|
|
extern Atom gdk_wm_delete_window;
|
|
|
|
extern Atom gdk_wm_take_focus;
|
|
|
|
extern Atom gdk_wm_protocols;
|
|
|
|
extern Atom gdk_wm_window_protocols[];
|
|
|
|
extern Atom gdk_selection_property;
|
|
|
|
extern GdkDndGlobals gdk_dnd;
|
|
|
|
extern GdkWindow *selection_owner[];
|
|
|
|
extern gchar *gdk_progclass;
|
|
|
|
extern gint gdk_error_code;
|
|
|
|
extern gint gdk_error_warnings;
|
1998-03-01 23:51:59 +00:00
|
|
|
extern gint gdk_null_window_warnings;
|
1998-03-06 00:39:11 +00:00
|
|
|
extern GList *gdk_default_filters;
|
1998-12-15 07:32:11 +00:00
|
|
|
extern const int gdk_nevent_masks;
|
|
|
|
extern const int gdk_event_mask_table[];
|
|
|
|
|
|
|
|
extern GdkWindowPrivate *gdk_xgrab_window; /* Window that currently holds the
|
|
|
|
* x pointer grab
|
|
|
|
*/
|
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);
|
|
|
|
|
|
|
|
extern GdkICPrivate *gdk_xim_ic; /* currently using IC */
|
|
|
|
extern GdkWindow *gdk_xim_window; /* currently using Window */
|
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 */
|
|
|
|
|
|
|
|
extern guint gdk_debug_flags;
|
|
|
|
|
1997-11-24 22:37:52 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* __GDK_PRIVATE_H__ */
|