gtk2/gtk/gtkselection.c

1437 lines
39 KiB
C
Raw Normal View History

1997-11-24 22:37:52 +00:00
/* GTK - The GIMP Toolkit
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
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
* 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
*/
/* This file implements most of the work of the ICCM selection protocol.
* The code was written after an intensive study of the equivalent part
* of John Ousterhout's Tk toolkit, and does many things in much the
* same way.
*
* The one thing in the ICCM that isn't fully supported here (or in Tk)
* is side effects targets. For these to be handled properly, MULTIPLE
* targets need to be done in the order specified. This cannot be
* guaranteed with the way we do things, since if we are doing INCR
* transfers, the order will depend on the timing of the requestor.
*
* By Owen Taylor <owt1@cornell.edu> 8/16/97
1997-11-24 22:37:52 +00:00
*/
/* Terminology note: when not otherwise specified, the term "incr" below
* refers to the _sending_ part of the INCR protocol. The receiving
* portion is referred to just as "retrieval". (Terminology borrowed
* from Tk, because there is no good opposite to "retrieval" in English.
* "send" can't be made into a noun gracefully and we're already using
* "emission" for something else ....)
*/
/* The MOTIF entry widget seems to ask for the TARGETS target, then
(regardless of the reply) ask for the TEXT target. It's slightly
possible though that it somehow thinks we are responding negatively
to the TARGETS request, though I don't really think so ... */
#include <stdarg.h>
#include <string.h>
1997-11-24 22:37:52 +00:00
#include <gdk/gdkx.h>
/* we need this for gdk_window_lookup() */
#include "gtkmain.h"
#include "gtkselection.h"
#include "gtksignal.h"
/* #define DEBUG_SELECTION */
/* Maximum size of a sent chunk, in bytes. Also the default size of
our buffers */
#define GTK_SELECTION_MAX_SIZE 4000
enum {
INCR,
MULTIPLE,
TARGETS,
TIMESTAMP,
LAST_ATOM
};
typedef struct _GtkSelectionInfo GtkSelectionInfo;
typedef struct _GtkIncrConversion GtkIncrConversion;
typedef struct _GtkIncrInfo GtkIncrInfo;
typedef struct _GtkRetrievalInfo GtkRetrievalInfo;
typedef struct _GtkSelectionHandler GtkSelectionHandler;
struct _GtkSelectionInfo
{
GdkAtom selection;
GtkWidget *widget; /* widget that owns selection */
guint32 time; /* time used to acquire selection */
};
struct _GtkIncrConversion
{
GdkAtom target; /* Requested target */
GdkAtom property; /* Property to store in */
1997-11-24 22:37:52 +00:00
GtkSelectionData data; /* The data being supplied */
gint offset; /* Current offset in sent selection.
1997-11-24 22:37:52 +00:00
* -1 => All done
* -2 => Only the final (empty) portion
* left to send */
1997-11-24 22:37:52 +00:00
};
struct _GtkIncrInfo
{
GtkWidget *widget; /* Selection owner */
GdkWindow *requestor; /* Requestor window - we create a GdkWindow
so we can receive events */
GdkAtom selection; /* Selection we're sending */
1997-11-24 22:37:52 +00:00
GtkIncrConversion *conversions; /* Information about requested conversions -
* With MULTIPLE requests (benighted 1980's
* hardware idea), there can be more than
* one */
gint num_conversions;
gint num_incrs; /* number of remaining INCR style transactions */
guint32 idle_time;
};
struct _GtkRetrievalInfo
{
GtkWidget *widget;
GdkAtom selection; /* Selection being retrieved. */
GdkAtom target; /* Form of selection that we requested */
guint32 idle_time; /* Number of seconds since we last heard
from selection owner */
guchar *buffer; /* Buffer in which to accumulate results */
gint offset; /* Current offset in buffer, -1 indicates
1997-11-24 22:37:52 +00:00
not yet started */
};
struct _GtkSelectionHandler
{
GdkAtom selection; /* selection thats handled */
GdkAtom target; /* target thats handled */
GtkSelectionFunction function; /* callback function */
GtkCallbackMarshal marshal; /* Marshalling function */
1997-11-24 22:37:52 +00:00
gpointer data; /* callback data */
GtkDestroyNotify destroy; /* called when callback is removed */
1997-11-24 22:37:52 +00:00
};
/* Local Functions */
static void gtk_selection_init (void);
static gint gtk_selection_incr_timeout (GtkIncrInfo *info);
static gint gtk_selection_retrieval_timeout (GtkRetrievalInfo *info);
static void gtk_selection_retrieval_report (GtkRetrievalInfo *info,
1997-11-24 22:37:52 +00:00
GdkAtom type, gint format,
guchar *buffer, gint length);
static void gtk_selection_invoke_handler (GtkWidget *widget,
GtkSelectionData *data);
static void gtk_selection_default_handler (GtkWidget *widget,
1997-11-24 22:37:52 +00:00
GtkSelectionData *data);
/* Local Data */
static gint initialize = TRUE;
static GList *current_retrievals = NULL;
static GList *current_incrs = NULL;
static GList *current_selections = NULL;
static GdkAtom gtk_selection_atoms[LAST_ATOM];
static const char *gtk_selection_handler_key = "gtk-selection-handlers";
1997-11-24 22:37:52 +00:00
/*************************************************************
* gtk_selection_owner_set:
* Claim ownership of a selection.
* arguments:
* widget: new selection owner
* selection: which selection
* time: time (use GDK_CURRENT_TIME only if necessary)
*
* results:
*************************************************************/
gint
gtk_selection_owner_set (GtkWidget *widget,
GdkAtom selection,
guint32 time)
{
GList *tmp_list;
GtkWidget *old_owner;
GtkSelectionInfo *selection_info;
GdkWindow *window;
1997-11-24 22:37:52 +00:00
if (widget == NULL)
window = NULL;
else
{
if (!GTK_WIDGET_REALIZED (widget))
gtk_widget_realize (widget);
window = widget->window;
}
1997-11-24 22:37:52 +00:00
tmp_list = current_selections;
while (tmp_list)
{
selection_info = (GtkSelectionInfo *)tmp_list->data;
if (selection_info->selection == selection)
break;
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
if (tmp_list == NULL)
selection_info = NULL;
else
if (selection_info->widget == widget)
return TRUE;
1997-11-24 22:37:52 +00:00
if (gdk_selection_owner_set (window, selection, time, TRUE))
{
old_owner = NULL;
if (widget == NULL)
{
if (selection_info)
{
old_owner = selection_info->widget;
current_selections = g_list_remove_link (current_selections,
tmp_list);
g_list_free (tmp_list);
g_free (selection_info);
}
}
else
{
if (selection_info == NULL)
{
selection_info = g_new (GtkSelectionInfo, 1);
selection_info->selection = selection;
selection_info->widget = widget;
selection_info->time = time;
current_selections = g_list_append (current_selections,
selection_info);
}
else
{
old_owner = selection_info->widget;
selection_info->widget = widget;
selection_info->time = time;
}
}
/* If another widget in the application lost the selection,
* send it a GDK_SELECTION_CLEAR event, unless we're setting
* the owner to None, in which case an event will be sent */
if (old_owner && (widget != NULL))
{
GdkEventSelection event;
event.type = GDK_SELECTION_CLEAR;
event.window = old_owner->window;
event.selection = selection;
event.time = time;
gtk_widget_event (old_owner, (GdkEvent *) &event);
1997-11-24 22:37:52 +00:00
}
return TRUE;
}
else
return FALSE;
}
/*************************************************************
* gtk_selection_add_handler_full:
1997-11-24 22:37:52 +00:00
* Add a handler for a specified selection/target pair
*
* arguments:
* widget: The widget the handler applies to
1997-11-24 22:37:52 +00:00
* selection:
* target:
* format: Format in which this handler will return data
1997-11-24 22:37:52 +00:00
* function: Callback function (can be NULL)
* marshal: Callback marshal function
* data: User data for callback
* destroy: Called when handler removed
1997-11-24 22:37:52 +00:00
*
* results:
*************************************************************/
void
gtk_selection_add_handler (GtkWidget *widget,
GdkAtom selection,
GdkAtom target,
1997-11-24 22:37:52 +00:00
GtkSelectionFunction function,
gpointer data)
{
gtk_selection_add_handler_full (widget, selection, target, function,
NULL, data, NULL);
}
void
gtk_selection_add_handler_full (GtkWidget *widget,
GdkAtom selection,
GdkAtom target,
GtkSelectionFunction function,
GtkCallbackMarshal marshal,
gpointer data,
GtkDestroyNotify destroy)
1997-11-24 22:37:52 +00:00
{
GList *selection_handlers;
GList *tmp_list;
GtkSelectionHandler *handler;
1997-11-24 22:37:52 +00:00
g_return_if_fail (widget != NULL);
if (initialize)
gtk_selection_init ();
selection_handlers = gtk_object_get_data (GTK_OBJECT (widget),
gtk_selection_handler_key);
1997-11-24 22:37:52 +00:00
/* Reuse old handler structure, if present */
tmp_list = selection_handlers;
while (tmp_list)
{
handler = (GtkSelectionHandler *)tmp_list->data;
if ((handler->selection == selection) && (handler->target == target))
{
if (handler->destroy)
(*handler->destroy)(handler->data);
1997-11-24 22:37:52 +00:00
if (function)
{
handler->function = function;
handler->marshal = marshal;
1997-11-24 22:37:52 +00:00
handler->data = data;
handler->destroy = destroy;
1997-11-24 22:37:52 +00:00
}
else
{
selection_handlers = g_list_remove_link (selection_handlers,
tmp_list);
g_list_free (tmp_list);
g_free (handler);
}
return;
}
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
if (tmp_list == NULL && function)
{
handler = g_new (GtkSelectionHandler, 1);
handler->selection = selection;
handler->target = target;
handler->function = function;
handler->marshal = marshal;
1997-11-24 22:37:52 +00:00
handler->data = data;
handler->destroy = destroy;
1997-11-24 22:37:52 +00:00
selection_handlers = g_list_append (selection_handlers, handler);
}
gtk_object_set_data (GTK_OBJECT (widget), gtk_selection_handler_key,
selection_handlers);
}
/*************************************************************
* gtk_selection_remove_all:
* Removes all handlers and unsets ownership of all
* selections for a widget. Called when widget is being
* destroyed
*
* arguments:
* widget: The widget
* results:
*************************************************************/
void
gtk_selection_remove_all (GtkWidget *widget)
{
GList *tmp_list;
GList *next;
GtkSelectionInfo *selection_info;
GList *selection_handlers;
GtkSelectionHandler *handler;
1997-11-24 22:37:52 +00:00
/* Remove pending requests/incrs for this widget */
1997-11-24 22:37:52 +00:00
tmp_list = current_incrs;
while (tmp_list)
{
next = tmp_list->next;
if (((GtkIncrInfo *)tmp_list->data)->widget == widget)
{
current_incrs = g_list_remove_link (current_incrs, tmp_list);
/* structure will be freed in timeout */
g_list_free (tmp_list);
}
tmp_list = next;
}
1997-11-24 22:37:52 +00:00
tmp_list = current_retrievals;
while (tmp_list)
{
next = tmp_list->next;
if (((GtkRetrievalInfo *)tmp_list->data)->widget == widget)
{
current_retrievals = g_list_remove_link (current_retrievals,
tmp_list);
/* structure will be freed in timeout */
g_list_free (tmp_list);
}
tmp_list = next;
}
/* Disclaim ownership of any selections */
1997-11-24 22:37:52 +00:00
tmp_list = current_selections;
while (tmp_list)
{
next = tmp_list->next;
selection_info = (GtkSelectionInfo *)tmp_list->data;
if (selection_info->widget == widget)
{
gdk_selection_owner_set (NULL,
selection_info->selection,
GDK_CURRENT_TIME, FALSE);
current_selections = g_list_remove_link (current_selections,
tmp_list);
g_list_free (tmp_list);
g_free (selection_info);
}
tmp_list = next;
}
1997-11-24 22:37:52 +00:00
/* Now remove all handlers */
1997-11-24 22:37:52 +00:00
selection_handlers = gtk_object_get_data (GTK_OBJECT (widget),
gtk_selection_handler_key);
gtk_object_remove_data (GTK_OBJECT (widget), gtk_selection_handler_key);
1997-11-24 22:37:52 +00:00
tmp_list = selection_handlers;
while (tmp_list)
{
next = tmp_list->next;
handler = (GtkSelectionHandler *)tmp_list->data;
if (handler->destroy)
(*handler->destroy)(handler->data);
1997-11-24 22:37:52 +00:00
g_free (handler);
1997-11-24 22:37:52 +00:00
tmp_list = next;
}
1997-11-24 22:37:52 +00:00
g_list_free (selection_handlers);
}
/*************************************************************
* gtk_selection_convert:
* Request the contents of a selection. When received,
* a "selection_received" signal will be generated.
*
* arguments:
* widget: The widget which acts as requestor
1997-11-24 22:37:52 +00:00
* selection: Which selection to get
* target: Form of information desired (e.g., STRING)
* time: Time of request (usually of triggering event)
* In emergency, you could use GDK_CURRENT_TIME
1997-11-24 22:37:52 +00:00
*
* results:
* TRUE if requested succeeded. FALSE if we could not process
* request. (e.g., there was already a request in process for
* this widget).
*************************************************************/
gint
gtk_selection_convert (GtkWidget *widget,
GdkAtom selection,
GdkAtom target,
guint32 time)
1997-11-24 22:37:52 +00:00
{
GtkRetrievalInfo *info;
GList *tmp_list;
GdkWindow *owner_window;
1997-11-24 22:37:52 +00:00
g_return_val_if_fail (widget != NULL, FALSE);
1997-11-24 22:37:52 +00:00
if (initialize)
gtk_selection_init ();
if (!GTK_WIDGET_REALIZED (widget))
gtk_widget_realize (widget);
1997-11-24 22:37:52 +00:00
/* Check to see if there are already any retrievals in progress for
this widget. If we changed GDK to use the selection for the
window property in which to store the retrieved information, then
we could support multiple retrievals for different selections.
This might be useful for DND. */
1997-11-24 22:37:52 +00:00
tmp_list = current_retrievals;
while (tmp_list)
{
info = (GtkRetrievalInfo *)tmp_list->data;
if (info->widget == widget)
return FALSE;
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
info = g_new (GtkRetrievalInfo, 1);
1997-11-24 22:37:52 +00:00
info->widget = widget;
info->selection = selection;
info->target = target;
info->buffer = NULL;
info->offset = -1;
1997-11-24 22:37:52 +00:00
/* Check if this process has current owner. If so, call handler
procedure directly to avoid deadlocks with INCR. */
1997-11-24 22:37:52 +00:00
owner_window = gdk_selection_owner_get (selection);
if (owner_window != NULL)
{
GtkWidget *owner_widget;
GtkSelectionData selection_data;
1997-11-24 22:37:52 +00:00
selection_data.selection = selection;
selection_data.target = target;
selection_data.data = NULL;
selection_data.length = -1;
1997-11-24 22:37:52 +00:00
gdk_window_get_user_data (owner_window, (gpointer *)&owner_widget);
1997-11-24 22:37:52 +00:00
if (owner_widget != NULL)
{
gtk_selection_invoke_handler (owner_widget,
&selection_data);
1997-11-24 22:37:52 +00:00
gtk_selection_retrieval_report (info,
selection_data.type,
selection_data.format,
selection_data.data,
selection_data.length);
1997-11-24 22:37:52 +00:00
g_free (selection_data.data);
g_free (info);
return TRUE;
}
}
/* Otherwise, we need to go through X */
1997-11-24 22:37:52 +00:00
current_retrievals = g_list_append (current_retrievals, info);
gdk_selection_convert (widget->window, selection, target, time);
gtk_timeout_add (1000, (GtkFunction) gtk_selection_retrieval_timeout, info);
1997-11-24 22:37:52 +00:00
return TRUE;
}
/*************************************************************
* gtk_selection_data_set:
* Store new data into a GtkSelectionData object. Should
* _only_ by called from a selection handler callback.
* Null terminates the stored data.
* arguments:
* type: the type of selection data
* format: format (number of bits in a unit)
* data: pointer to the data (will be copied)
* length: length of the data
1997-11-24 22:37:52 +00:00
* results:
*************************************************************/
void
gtk_selection_data_set (GtkSelectionData *selection_data,
GdkAtom type,
gint format,
guchar *data,
gint length)
1997-11-24 22:37:52 +00:00
{
if (selection_data->data)
g_free (selection_data->data);
1997-11-24 22:37:52 +00:00
selection_data->type = type;
selection_data->format = format;
1997-11-24 22:37:52 +00:00
if (data)
{
selection_data->data = g_new (guchar, length+1);
memcpy (selection_data->data, data, length);
selection_data->data[length] = 0;
}
else
selection_data->data = NULL;
1997-11-24 22:37:52 +00:00
selection_data->length = length;
}
/*************************************************************
* gtk_selection_init:
* Initialize local variables
* arguments:
*
* results:
*************************************************************/
static void
gtk_selection_init (void)
{
gtk_selection_atoms[INCR] = gdk_atom_intern ("INCR", FALSE);
gtk_selection_atoms[MULTIPLE] = gdk_atom_intern ("MULTIPLE", FALSE);
gtk_selection_atoms[TIMESTAMP] = gdk_atom_intern ("TIMESTAMP", FALSE);
gtk_selection_atoms[TARGETS] = gdk_atom_intern ("TARGETS", FALSE);
}
/*************************************************************
* gtk_selection_clear:
* Handler for "selection_clear_event"
* arguments:
* widget:
* event:
* results:
*************************************************************/
gint
gtk_selection_clear (GtkWidget *widget,
GdkEventSelection *event)
{
/* FIXME: there can be a problem if we change the selection
via gtk_selection_owner_set after another client claims
the selection, but before we get the notification event.
Tk filters based on serial #'s, which aren't retained by
GTK. Filtering based on time's will be inherently
somewhat unreliable. */
1997-11-24 22:37:52 +00:00
GList *tmp_list;
GtkSelectionInfo *selection_info;
1997-11-24 22:37:52 +00:00
tmp_list = current_selections;
while (tmp_list)
{
selection_info = (GtkSelectionInfo *)tmp_list->data;
if ((selection_info->selection == event->selection) &&
(selection_info->widget == widget))
break;
tmp_list = tmp_list->next;
}
Try to figure out if this is Digital Unix and we need -std1 to get the Sat May 9 20:11:20 1998 Owen Taylor <otaylor@gtk.org> * configure.in (LIBS): Try to figure out if this is Digital Unix and we need -std1 to get the right prototypes. Sat May 9 20:08:12 1998 Owen Taylor <otaylor@gtk.org> * glib/gmem.c: Experimentally restore GMemChunk to its primeval state - where mem areas are freed incrementally instead of searching the tree every time a mem area is completely empty. Also, always keep one mem chunk around. (Reduced calls to malloc() a lot, but doesn't really improve performance significiantly) Fri May 8 21:31:50 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkwidget.c (gtk_widget_queue_draw): Free the draw-queue when we are done. (gtk_widget_queue_draw/_queu_resize): Always return FALSE and avoid having two idles at the same time. Fri May 8 21:04:00 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtktext.c: Various fixes to make sure cache lines are freed if line_start_cache doesn't point to the beginning of the cache. Thu May 7 09:44:22 1998 Owen Taylor <otaylor@gtk.org> * style_set improvements for GtkText and GtkEntry Tue May 5 19:49:27 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdkpixmap.c: Patches from Gordon Matzigkeit to speed things up and remove code duplication. Reintegrated buffer overflow patches, and added some extra paranoia. Tue May 5 17:04:14 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdk.c (gdk_event_translate): A guint * was being passed where X expected a Keysym *, and keysyms are long's on Alpha Linux. This was causing segfaults in Xlib, apparently because of alignment. (Bug located by Juergen Haas <haas@forwiss.uni-passau.de>) Tue May 5 19:11:27 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkdrawingarea.c (gtk_drawing_area_realize): Always set GDK_EXPOSURE_MASK for DrawingAreas Tue May 5 14:32:37 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkwidget.[ch]: removed gtk_widge_propagate_default_style (superceded by RC file reparsing capabilities) * gtk/gtkwindow.c: Add handling for _GDK_READ_RFCILES client events. (Shouldn't be sent to the InputOnly leader, which it is now by gdk_event_send_clientmessage_toall * gtk/testgtk.c: Added extra button to rcfiles test to send out _GDK_READ_RCFILES events. Tue May 5 11:03:00 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkselection.c (gtk_selection_clear): Fixed reversed conditionals that caused segfault on some platforms. Tue May 5 00:44:47 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkcontainer.c (gtk_container_set_focus_[hv]adjustment): cast to GTK_OBJECT for gtk_object_ref.
1998-05-10 02:46:20 +00:00
if (tmp_list)
{
if (selection_info->time > event->time)
return FALSE; /* return FALSE to indicate that
* the selection was out of date,
* and this clear should be ignored */
Try to figure out if this is Digital Unix and we need -std1 to get the Sat May 9 20:11:20 1998 Owen Taylor <otaylor@gtk.org> * configure.in (LIBS): Try to figure out if this is Digital Unix and we need -std1 to get the right prototypes. Sat May 9 20:08:12 1998 Owen Taylor <otaylor@gtk.org> * glib/gmem.c: Experimentally restore GMemChunk to its primeval state - where mem areas are freed incrementally instead of searching the tree every time a mem area is completely empty. Also, always keep one mem chunk around. (Reduced calls to malloc() a lot, but doesn't really improve performance significiantly) Fri May 8 21:31:50 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkwidget.c (gtk_widget_queue_draw): Free the draw-queue when we are done. (gtk_widget_queue_draw/_queu_resize): Always return FALSE and avoid having two idles at the same time. Fri May 8 21:04:00 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtktext.c: Various fixes to make sure cache lines are freed if line_start_cache doesn't point to the beginning of the cache. Thu May 7 09:44:22 1998 Owen Taylor <otaylor@gtk.org> * style_set improvements for GtkText and GtkEntry Tue May 5 19:49:27 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdkpixmap.c: Patches from Gordon Matzigkeit to speed things up and remove code duplication. Reintegrated buffer overflow patches, and added some extra paranoia. Tue May 5 17:04:14 1998 Owen Taylor <otaylor@gtk.org> * gdk/gdk.c (gdk_event_translate): A guint * was being passed where X expected a Keysym *, and keysyms are long's on Alpha Linux. This was causing segfaults in Xlib, apparently because of alignment. (Bug located by Juergen Haas <haas@forwiss.uni-passau.de>) Tue May 5 19:11:27 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkdrawingarea.c (gtk_drawing_area_realize): Always set GDK_EXPOSURE_MASK for DrawingAreas Tue May 5 14:32:37 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkwidget.[ch]: removed gtk_widge_propagate_default_style (superceded by RC file reparsing capabilities) * gtk/gtkwindow.c: Add handling for _GDK_READ_RFCILES client events. (Shouldn't be sent to the InputOnly leader, which it is now by gdk_event_send_clientmessage_toall * gtk/testgtk.c: Added extra button to rcfiles test to send out _GDK_READ_RCFILES events. Tue May 5 11:03:00 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkselection.c (gtk_selection_clear): Fixed reversed conditionals that caused segfault on some platforms. Tue May 5 00:44:47 1998 Owen Taylor <otaylor@gtk.org> * gtk/gtkcontainer.c (gtk_container_set_focus_[hv]adjustment): cast to GTK_OBJECT for gtk_object_ref.
1998-05-10 02:46:20 +00:00
else
{
current_selections = g_list_remove_link (current_selections, tmp_list);
g_list_free (tmp_list);
g_free (selection_info);
}
}
1997-11-24 22:37:52 +00:00
return TRUE;
}
/*************************************************************
* gtk_selection_request:
* Handler for "selection_request_event"
* arguments:
* widget:
* event:
* results:
*************************************************************/
gint
gtk_selection_request (GtkWidget *widget,
GdkEventSelection *event)
{
GtkIncrInfo *info;
GList *tmp_list;
guchar *mult_atoms;
int i;
1997-11-24 22:37:52 +00:00
/* Check if we own selection */
1997-11-24 22:37:52 +00:00
tmp_list = current_selections;
while (tmp_list)
{
GtkSelectionInfo *selection_info = (GtkSelectionInfo *)tmp_list->data;
1997-11-24 22:37:52 +00:00
if ((selection_info->selection == event->selection) &&
(selection_info->widget == widget))
break;
1997-11-24 22:37:52 +00:00
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
if (tmp_list == NULL)
return FALSE;
info = g_new(GtkIncrInfo, 1);
1997-11-24 22:37:52 +00:00
info->widget = widget;
info->selection = event->selection;
info->num_incrs = 0;
1997-11-24 22:37:52 +00:00
/* Create GdkWindow structure for the requestor */
1997-11-24 22:37:52 +00:00
info->requestor = gdk_window_lookup (event->requestor);
if (!info->requestor)
info->requestor = gdk_window_foreign_new (event->requestor);
/* Determine conversions we need to perform */
1997-11-24 22:37:52 +00:00
if (event->target == gtk_selection_atoms[MULTIPLE])
{
GdkAtom type;
gint format;
gint length;
1997-11-24 22:37:52 +00:00
mult_atoms = NULL;
if (!gdk_property_get (info->requestor, event->property, GDK_SELECTION_TYPE_ATOM,
0, GTK_SELECTION_MAX_SIZE, FALSE,
&type, &format, &length, &mult_atoms) ||
type != GDK_SELECTION_TYPE_ATOM || format != 8*sizeof(GdkAtom))
1997-11-24 22:37:52 +00:00
{
gdk_selection_send_notify (event->requestor, event->selection,
event->target, GDK_NONE, event->time);
g_free (mult_atoms);
g_free (info);
return TRUE;
}
1997-11-24 22:37:52 +00:00
info->num_conversions = length / (2*sizeof (GdkAtom));
info->conversions = g_new (GtkIncrConversion, info->num_conversions);
1997-11-24 22:37:52 +00:00
for (i=0; i<info->num_conversions; i++)
{
info->conversions[i].target = ((GdkAtom *)mult_atoms)[2*i];
info->conversions[i].property = ((GdkAtom *)mult_atoms)[2*i+1];
}
}
else /* only a single conversion */
{
info->conversions = g_new (GtkIncrConversion, 1);
info->num_conversions = 1;
info->conversions[0].target = event->target;
info->conversions[0].property = event->property;
mult_atoms = (guchar *)info->conversions;
}
1997-11-24 22:37:52 +00:00
/* Loop through conversions and determine which of these are big
enough to require doing them via INCR */
for (i=0; i<info->num_conversions; i++)
{
GtkSelectionData data;
gint items;
1997-11-24 22:37:52 +00:00
data.selection = event->selection;
data.target = info->conversions[i].target;
data.data = NULL;
data.length = -1;
1997-11-24 22:37:52 +00:00
#ifdef DEBUG_SELECTION
g_message ("Selection %ld, target %ld (%s) requested by 0x%x (property = %ld)",
event->selection, info->conversions[i].target,
gdk_atom_name(info->conversions[i].target),
event->requestor, event->property);
1997-11-24 22:37:52 +00:00
#endif
gtk_selection_invoke_handler (widget, &data);
1997-11-24 22:37:52 +00:00
if (data.length < 0)
{
((GdkAtom *)mult_atoms)[2*i+1] = GDK_NONE;
info->conversions[i].property = GDK_NONE;
continue;
}
g_return_val_if_fail ((data.format >= 8) && (data.format % 8 == 0), FALSE);
1997-11-24 22:37:52 +00:00
items = (data.length + data.format/8 - 1) / (data.format/8);
1997-11-24 22:37:52 +00:00
if (data.length > GTK_SELECTION_MAX_SIZE)
{
/* Sending via INCR */
info->conversions[i].offset = 0;
info->conversions[i].data = data;
info->num_incrs++;
gdk_property_change (info->requestor,
info->conversions[i].property,
gtk_selection_atoms[INCR],
8*sizeof (GdkAtom),
GDK_PROP_MODE_REPLACE,
(guchar *)&items, 1);
}
else
{
info->conversions[i].offset = -1;
1997-11-24 22:37:52 +00:00
gdk_property_change (info->requestor,
info->conversions[i].property,
data.type,
data.format,
GDK_PROP_MODE_REPLACE,
data.data, items);
1997-11-24 22:37:52 +00:00
g_free (data.data);
}
}
1997-11-24 22:37:52 +00:00
/* If we have some INCR's, we need to send the rest of the data in
a callback */
1997-11-24 22:37:52 +00:00
if (info->num_incrs > 0)
{
/* FIXME: this could be dangerous if window doesn't still
exist */
1997-11-24 22:37:52 +00:00
#ifdef DEBUG_SELECTION
g_message ("Starting INCR...");
1997-11-24 22:37:52 +00:00
#endif
1997-11-24 22:37:52 +00:00
gdk_window_set_events (info->requestor,
gdk_window_get_events (info->requestor) |
GDK_PROPERTY_CHANGE_MASK);
current_incrs = g_list_append (current_incrs, info);
gtk_timeout_add (1000, (GtkFunction)gtk_selection_incr_timeout, info);
}
1997-11-24 22:37:52 +00:00
/* If it was a MULTIPLE request, set the property to indicate which
conversions succeeded */
if (event->target == gtk_selection_atoms[MULTIPLE])
{
gdk_property_change (info->requestor, event->property,
GDK_SELECTION_TYPE_ATOM, 8*sizeof(GdkAtom),
GDK_PROP_MODE_REPLACE,
mult_atoms, info->num_conversions);
g_free (mult_atoms);
}
1997-11-24 22:37:52 +00:00
gdk_selection_send_notify (event->requestor, event->selection, event->target,
event->property, event->time);
1997-11-24 22:37:52 +00:00
if (info->num_incrs == 0)
{
g_free (info->conversions);
g_free (info);
}
1997-11-24 22:37:52 +00:00
return TRUE;
}
/*************************************************************
* gtk_selection_incr_event:
* Called whenever an PropertyNotify event occurs for an
* GdkWindow with user_data == NULL. These will be notifications
* that a window we are sending the selection to via the
* INCR protocol has deleted a property and is ready for
* more data.
*
* arguments:
* window: the requestor window
* event: the property event structure
1997-11-24 22:37:52 +00:00
*
* results:
*************************************************************/
gint
gtk_selection_incr_event (GdkWindow *window,
1997-11-24 22:37:52 +00:00
GdkEventProperty *event)
{
GList *tmp_list;
GtkIncrInfo *info;
gint num_bytes;
guchar *buffer;
1997-11-24 22:37:52 +00:00
int i;
if (event->state != GDK_PROPERTY_DELETE)
return FALSE;
1997-11-24 22:37:52 +00:00
#ifdef DEBUG_SELECTION
g_message ("PropertyDelete, property %ld", event->atom);
1997-11-24 22:37:52 +00:00
#endif
1997-11-24 22:37:52 +00:00
/* Now find the appropriate ongoing INCR */
tmp_list = current_incrs;
while (tmp_list)
{
info = (GtkIncrInfo *)tmp_list->data;
if (info->requestor == event->window)
break;
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
if (tmp_list == NULL)
return FALSE;
1997-11-24 22:37:52 +00:00
/* Find out which target this is for */
for (i=0; i<info->num_conversions; i++)
{
if (info->conversions[i].property == event->atom &&
info->conversions[i].offset != -1)
{
info->idle_time = 0;
if (info->conversions[i].offset == -2) /* only the last 0-length
piece*/
{
num_bytes = 0;
buffer = NULL;
}
else
{
num_bytes = info->conversions[i].data.length -
info->conversions[i].offset;
buffer = info->conversions[i].data.data +
info->conversions[i].offset;
1997-11-24 22:37:52 +00:00
if (num_bytes > GTK_SELECTION_MAX_SIZE)
{
num_bytes = GTK_SELECTION_MAX_SIZE;
info->conversions[i].offset += GTK_SELECTION_MAX_SIZE;
}
else
info->conversions[i].offset = -2;
}
#ifdef DEBUG_SELECTION
g_message ("INCR: put %d bytes (offset = %d) into window 0x%lx , property %ld",
num_bytes, info->conversions[i].offset,
GDK_WINDOW_XWINDOW(info->requestor), event->atom);
1997-11-24 22:37:52 +00:00
#endif
gdk_property_change (info->requestor, event->atom,
info->conversions[i].data.type,
info->conversions[i].data.format,
GDK_PROP_MODE_REPLACE,
buffer,
(num_bytes + info->conversions[i].data.format/8 - 1) /
(info->conversions[i].data.format/8));
1997-11-24 22:37:52 +00:00
if (info->conversions[i].offset == -2)
{
g_free (info->conversions[i].data.data);
info->conversions[i].data.data = NULL;
}
if (num_bytes == 0)
{
info->num_incrs--;
info->conversions[i].offset = -1;
}
}
break;
}
1997-11-24 22:37:52 +00:00
/* Check if we're finished with all the targets */
1997-11-24 22:37:52 +00:00
if (info->num_incrs == 0)
{
current_incrs = g_list_remove_link (current_incrs, tmp_list);
g_list_free (tmp_list);
/* Let the timeout free it */
}
return TRUE;
}
/*************************************************************
* gtk_selection_incr_timeout:
* Timeout callback for the sending portion of the INCR
* protocol
* arguments:
* info: Information about this incr
1997-11-24 22:37:52 +00:00
* results:
*************************************************************/
static gint
gtk_selection_incr_timeout (GtkIncrInfo *info)
{
GList *tmp_list;
/* Determine if retrieval has finished by checking if it still in
list of pending retrievals */
1997-11-24 22:37:52 +00:00
tmp_list = current_incrs;
while (tmp_list)
{
if (info == (GtkIncrInfo *)tmp_list->data)
break;
tmp_list = tmp_list->next;
}
/* If retrieval is finished */
if (!tmp_list || info->idle_time >= 5)
{
if (tmp_list && info->idle_time >= 5)
{
current_incrs = g_list_remove_link (current_incrs, tmp_list);
g_list_free (tmp_list);
}
g_free (info->conversions);
/* FIXME: we should check if requestor window is still in use,
and if not, remove it? */
1997-11-24 22:37:52 +00:00
g_free (info);
return FALSE; /* remove timeout */
}
else
{
info->idle_time++;
return TRUE; /* timeout will happen again */
}
}
/*************************************************************
* gtk_selection_notify:
* Handler for "selection_notify_event" signals on windows
* where a retrieval is currently in process. The selection
* owner has responded to our conversion request.
* arguments:
* widget: Widget getting signal
* event: Selection event structure
* info: Information about this retrieval
1997-11-24 22:37:52 +00:00
* results:
* was event handled?
*************************************************************/
gint
gtk_selection_notify (GtkWidget *widget,
1997-11-24 22:37:52 +00:00
GdkEventSelection *event)
{
GList *tmp_list;
GtkRetrievalInfo *info;
guchar *buffer;
gint length;
GdkAtom type;
gint format;
1997-11-24 22:37:52 +00:00
#ifdef DEBUG_SELECTION
g_message ("Initial receipt of selection %ld, target %ld (property = %ld)",
event->selection, event->target, event->property);
1997-11-24 22:37:52 +00:00
#endif
tmp_list = current_retrievals;
while (tmp_list)
{
info = (GtkRetrievalInfo *)tmp_list->data;
if (info->widget == widget && info->selection == event->selection)
break;
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
if (!tmp_list) /* no retrieval in progress */
return FALSE;
1997-11-24 22:37:52 +00:00
if (event->property == GDK_NONE)
{
current_retrievals = g_list_remove_link (current_retrievals, tmp_list);
g_list_free (tmp_list);
/* structure will be freed in timeout */
gtk_selection_retrieval_report (info,
GDK_NONE, 0, NULL, -1);
1997-11-24 22:37:52 +00:00
return TRUE;
}
length = gdk_selection_property_get (widget->window, &buffer,
&type, &format);
1997-11-24 22:37:52 +00:00
if (type == gtk_selection_atoms[INCR])
{
/* The remainder of the selection will come through PropertyNotify
events */
1997-11-24 22:37:52 +00:00
info->idle_time = 0;
info->offset = 0; /* Mark as OK to proceed */
gdk_window_set_events (widget->window,
gdk_window_get_events (widget->window)
| GDK_PROPERTY_CHANGE_MASK);
}
else
{
/* We don't delete the info structure - that will happen in timeout */
current_retrievals = g_list_remove_link (current_retrievals, tmp_list);
g_list_free (tmp_list);
1997-11-24 22:37:52 +00:00
info->offset = length;
gtk_selection_retrieval_report (info,
type, format,
buffer, length);
}
1997-11-24 22:37:52 +00:00
gdk_property_delete (widget->window, event->property);
1997-11-24 22:37:52 +00:00
g_free (buffer);
1997-11-24 22:37:52 +00:00
return TRUE;
}
/*************************************************************
* gtk_selection_property_notify:
* Handler for "property_notify_event" signals on windows
* where a retrieval is currently in process. The selection
* owner has added more data.
* arguments:
* widget: Widget getting signal
* event: Property event structure
* info: Information about this retrieval
1997-11-24 22:37:52 +00:00
* results:
* was event handled?
*************************************************************/
gint
gtk_selection_property_notify (GtkWidget *widget,
1997-11-24 22:37:52 +00:00
GdkEventProperty *event)
{
GList *tmp_list;
GtkRetrievalInfo *info;
guchar *new_buffer;
int length;
GdkAtom type;
gint format;
1997-11-24 22:37:52 +00:00
if ((event->state != GDK_PROPERTY_NEW_VALUE) || /* property was deleted */
(event->atom != gdk_selection_property)) /* not the right property */
return FALSE;
1997-11-24 22:37:52 +00:00
#ifdef DEBUG_SELECTION
g_message ("PropertyNewValue, property %ld",
event->atom);
1997-11-24 22:37:52 +00:00
#endif
tmp_list = current_retrievals;
while (tmp_list)
{
info = (GtkRetrievalInfo *)tmp_list->data;
if (info->widget == widget)
break;
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
if (!tmp_list) /* No retrieval in progress */
return FALSE;
1997-11-24 22:37:52 +00:00
if (info->offset < 0) /* We haven't got the SelectionNotify
for this retrieval yet */
return FALSE;
1997-11-24 22:37:52 +00:00
info->idle_time = 0;
length = gdk_selection_property_get (widget->window, &new_buffer,
&type, &format);
gdk_property_delete (widget->window, event->atom);
1997-11-24 22:37:52 +00:00
/* We could do a lot better efficiency-wise by paying attention to
what length was sent in the initial INCR transaction, instead of
doing memory allocation at every step. But its only guaranteed to
be a _lower bound_ (pretty useless!) */
1997-11-24 22:37:52 +00:00
if (length == 0 || type == GDK_NONE) /* final zero length portion */
{
/* Info structure will be freed in timeout */
current_retrievals = g_list_remove_link (current_retrievals, tmp_list);
g_list_free (tmp_list);
gtk_selection_retrieval_report (info,
type, format,
(type == GDK_NONE) ? NULL : info->buffer,
(type == GDK_NONE) ? -1 : info->offset);
}
else /* append on newly arrived data */
{
if (!info->buffer)
{
#ifdef DEBUG_SELECTION
g_message ("Start - Adding %d bytes at offset 0",
length);
1997-11-24 22:37:52 +00:00
#endif
info->buffer = new_buffer;
info->offset = length;
}
else
{
1997-11-24 22:37:52 +00:00
#ifdef DEBUG_SELECTION
g_message ("Appending %d bytes at offset %d",
length,info->offset);
1997-11-24 22:37:52 +00:00
#endif
/* We copy length+1 bytes to preserve guaranteed null termination */
info->buffer = g_realloc (info->buffer, info->offset+length+1);
memcpy (info->buffer + info->offset, new_buffer, length+1);
info->offset += length;
g_free (new_buffer);
}
}
1997-11-24 22:37:52 +00:00
return TRUE;
}
/*************************************************************
* gtk_selection_retrieval_timeout:
* Timeout callback while receiving a selection.
* arguments:
* info: Information about this retrieval
* results:
*************************************************************/
static gint
gtk_selection_retrieval_timeout (GtkRetrievalInfo *info)
{
GList *tmp_list;
/* Determine if retrieval has finished by checking if it still in
list of pending retrievals */
1997-11-24 22:37:52 +00:00
tmp_list = current_retrievals;
while (tmp_list)
{
if (info == (GtkRetrievalInfo *)tmp_list->data)
break;
tmp_list = tmp_list->next;
}
/* If retrieval is finished */
if (!tmp_list || info->idle_time >= 5)
{
if (tmp_list && info->idle_time >= 5)
{
current_retrievals = g_list_remove_link (current_retrievals, tmp_list);
g_list_free (tmp_list);
gtk_selection_retrieval_report (info, GDK_NONE, 0, NULL, -1);
}
g_free (info->buffer);
g_free (info);
return FALSE; /* remove timeout */
}
else
{
info->idle_time++;
return TRUE; /* timeout will happen again */
}
1997-11-24 22:37:52 +00:00
}
/*************************************************************
* gtk_selection_retrieval_report:
* Emits a "selection_received" signal.
* arguments:
* info: information about the retrieval that completed
* buffer: buffer containing data (NULL => errror)
1997-11-24 22:37:52 +00:00
* results:
*************************************************************/
static void
gtk_selection_retrieval_report (GtkRetrievalInfo *info,
GdkAtom type, gint format,
guchar *buffer, gint length)
{
GtkSelectionData data;
1997-11-24 22:37:52 +00:00
data.selection = info->selection;
data.target = info->target;
data.type = type;
data.format = format;
1997-11-24 22:37:52 +00:00
data.length = length;
data.data = buffer;
1997-11-24 22:37:52 +00:00
gtk_signal_emit_by_name (GTK_OBJECT(info->widget),
"selection_received", &data);
}
/*************************************************************
* gtk_selection_invoke_handler:
* Finds and invokes handler for specified
* widget/selection/target combination, calls
* gtk_selection_default_handler if none exists.
*
1997-11-24 22:37:52 +00:00
* arguments:
* widget: selection owner
* data: selection data [INOUT]
*
1997-11-24 22:37:52 +00:00
* results:
* Number of bytes written to buffer, -1 if error
1997-11-24 22:37:52 +00:00
*************************************************************/
static void
gtk_selection_invoke_handler (GtkWidget *widget,
GtkSelectionData *data)
1997-11-24 22:37:52 +00:00
{
GList *tmp_list;
GtkSelectionHandler *handler;
g_return_if_fail (widget != NULL);
1997-11-24 22:37:52 +00:00
tmp_list = gtk_object_get_data (GTK_OBJECT (widget),
gtk_selection_handler_key);
1997-11-24 22:37:52 +00:00
while (tmp_list)
{
handler = (GtkSelectionHandler *)tmp_list->data;
if ((handler->selection == data->selection) &&
(handler->target == data->target))
break;
1997-11-24 22:37:52 +00:00
tmp_list = tmp_list->next;
}
if (tmp_list == NULL)
gtk_selection_default_handler (widget, data);
else
{
if (handler->marshal)
{
GtkArg args[2];
args[0].type = GTK_TYPE_BOXED;
args[0].name = NULL;
GTK_VALUE_BOXED(args[0]) = data;
args[1].type = GTK_TYPE_NONE;
args[1].name = NULL;
handler->marshal (GTK_OBJECT(widget), handler->data, 1, args);
}
else
if (handler->function)
handler->function (widget, data, handler->data);
}
1997-11-24 22:37:52 +00:00
}
/*************************************************************
* gtk_selection_default_handler:
* Handles some default targets that exist for any widget
* If it can't fit results into buffer, returns -1. This
* won't happen in any conceivable case, since it would
* require 1000 selection targets!
*
* arguments:
* widget: selection owner
* data: selection data [INOUT]
*
1997-11-24 22:37:52 +00:00
*************************************************************/
static void
gtk_selection_default_handler (GtkWidget *widget,
1997-11-24 22:37:52 +00:00
GtkSelectionData *data)
{
if (data->target == gtk_selection_atoms[TIMESTAMP])
{
/* Time which was used to obtain selection */
GList *tmp_list;
GtkSelectionInfo *selection_info;
tmp_list = current_selections;
while (tmp_list)
{
selection_info = (GtkSelectionInfo *)tmp_list->data;
if ((selection_info->widget == widget) &&
(selection_info->selection == data->selection))
{
gtk_selection_data_set (data,
GDK_SELECTION_TYPE_INTEGER,
sizeof (guint32)*8,
(guchar *)&selection_info->time,
sizeof (guint32));
return;
}
1997-11-24 22:37:52 +00:00
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
data->length = -1;
}
else if (data->target == gtk_selection_atoms[TARGETS])
{
/* List of all targets supported for this widget/selection pair */
GdkAtom *p;
gint count;
GList *tmp_list;
GtkSelectionHandler *handler;
1997-11-24 22:37:52 +00:00
count = 3;
tmp_list = gtk_object_get_data (GTK_OBJECT(widget),
gtk_selection_handler_key);
while (tmp_list)
{
handler = (GtkSelectionHandler *)tmp_list->data;
1997-11-24 22:37:52 +00:00
if (handler->selection == data->selection)
count++;
tmp_list = tmp_list->next;
}
1997-11-24 22:37:52 +00:00
data->type = GDK_SELECTION_TYPE_ATOM;
data->format = 8*sizeof (GdkAtom);
data->length = count*sizeof (GdkAtom);
1997-11-24 22:37:52 +00:00
p = g_new (GdkAtom, count);
data->data = (guchar *)p;
1997-11-24 22:37:52 +00:00
*p++ = gtk_selection_atoms[TIMESTAMP];
*p++ = gtk_selection_atoms[TARGETS];
*p++ = gtk_selection_atoms[MULTIPLE];
1997-11-24 22:37:52 +00:00
tmp_list = gtk_object_get_data (GTK_OBJECT(widget),
gtk_selection_handler_key);
while (tmp_list)
{
handler = (GtkSelectionHandler *)tmp_list->data;
1997-11-24 22:37:52 +00:00
if (handler->selection == data->selection)
*p++ = handler->target;
1997-11-24 22:37:52 +00:00
tmp_list = tmp_list->next;
}
}
else
{
data->length = -1;
}
}
new functions gtk_selection_data_copy and gtk_selection_data_free. Tue Jun 9 01:57:23 1998 Tim Janik <timj@gtk.org> * gtk/gtkselection.h: * gtk/gtkselection.c: new functions gtk_selection_data_copy and gtk_selection_data_free. * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call for "selection_received", which was completely bogus. * other fixups to gtk_signal_new() calls all over the place. * gtk/gtktypebuiltins.h: types as variables (formerly macros). * gtk/gtktypebuiltins_vars.c: type variable implementations. * gtk/gtktypebuiltins_ids.c: array entries for builtin type declarations. * gtk/gtktypebuiltins_evals.c: enum value arrays. * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build gtk.defs. * gtk/gtk.defs: generated file with scheme syntax for type definitions of gtk and gdk structures and enums. * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: reworked type ids, so they are variables not macros anymore (this fixes binary incompatibility with new enum definitions). * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible key bindings for this widget. * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class' handler. * gtk/gtkobject.h: * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse() again. new functions gtk_object_class_user_signal_new () and gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType flag on the signal creation. Mon Jun 8 20:52:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
1998-06-09 07:11:55 +00:00
GtkSelectioData*
gtk_selection_data_copy (GtkSelectionData *data)
{
GtkSelectionData *new_data;
new functions gtk_selection_data_copy and gtk_selection_data_free. Tue Jun 9 01:57:23 1998 Tim Janik <timj@gtk.org> * gtk/gtkselection.h: * gtk/gtkselection.c: new functions gtk_selection_data_copy and gtk_selection_data_free. * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call for "selection_received", which was completely bogus. * other fixups to gtk_signal_new() calls all over the place. * gtk/gtktypebuiltins.h: types as variables (formerly macros). * gtk/gtktypebuiltins_vars.c: type variable implementations. * gtk/gtktypebuiltins_ids.c: array entries for builtin type declarations. * gtk/gtktypebuiltins_evals.c: enum value arrays. * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build gtk.defs. * gtk/gtk.defs: generated file with scheme syntax for type definitions of gtk and gdk structures and enums. * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: reworked type ids, so they are variables not macros anymore (this fixes binary incompatibility with new enum definitions). * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible key bindings for this widget. * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class' handler. * gtk/gtkobject.h: * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse() again. new functions gtk_object_class_user_signal_new () and gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType flag on the signal creation. Mon Jun 8 20:52:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
1998-06-09 07:11:55 +00:00
g_return_val_if_fail (data != NULL, NULL);
new functions gtk_selection_data_copy and gtk_selection_data_free. Tue Jun 9 01:57:23 1998 Tim Janik <timj@gtk.org> * gtk/gtkselection.h: * gtk/gtkselection.c: new functions gtk_selection_data_copy and gtk_selection_data_free. * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call for "selection_received", which was completely bogus. * other fixups to gtk_signal_new() calls all over the place. * gtk/gtktypebuiltins.h: types as variables (formerly macros). * gtk/gtktypebuiltins_vars.c: type variable implementations. * gtk/gtktypebuiltins_ids.c: array entries for builtin type declarations. * gtk/gtktypebuiltins_evals.c: enum value arrays. * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build gtk.defs. * gtk/gtk.defs: generated file with scheme syntax for type definitions of gtk and gdk structures and enums. * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: reworked type ids, so they are variables not macros anymore (this fixes binary incompatibility with new enum definitions). * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible key bindings for this widget. * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class' handler. * gtk/gtkobject.h: * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse() again. new functions gtk_object_class_user_signal_new () and gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType flag on the signal creation. Mon Jun 8 20:52:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
1998-06-09 07:11:55 +00:00
new_data = g_new (GtkSelectionData, 1);
*new_data = *data;
new functions gtk_selection_data_copy and gtk_selection_data_free. Tue Jun 9 01:57:23 1998 Tim Janik <timj@gtk.org> * gtk/gtkselection.h: * gtk/gtkselection.c: new functions gtk_selection_data_copy and gtk_selection_data_free. * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call for "selection_received", which was completely bogus. * other fixups to gtk_signal_new() calls all over the place. * gtk/gtktypebuiltins.h: types as variables (formerly macros). * gtk/gtktypebuiltins_vars.c: type variable implementations. * gtk/gtktypebuiltins_ids.c: array entries for builtin type declarations. * gtk/gtktypebuiltins_evals.c: enum value arrays. * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build gtk.defs. * gtk/gtk.defs: generated file with scheme syntax for type definitions of gtk and gdk structures and enums. * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: reworked type ids, so they are variables not macros anymore (this fixes binary incompatibility with new enum definitions). * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible key bindings for this widget. * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class' handler. * gtk/gtkobject.h: * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse() again. new functions gtk_object_class_user_signal_new () and gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType flag on the signal creation. Mon Jun 8 20:52:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
1998-06-09 07:11:55 +00:00
return new_data;
}
void
gtk_selection_data_free (GtkSelectionData *data)
{
g_return_if_fail (data != NULL);
new functions gtk_selection_data_copy and gtk_selection_data_free. Tue Jun 9 01:57:23 1998 Tim Janik <timj@gtk.org> * gtk/gtkselection.h: * gtk/gtkselection.c: new functions gtk_selection_data_copy and gtk_selection_data_free. * gtk/gtkwidget.c (gtk_widget_class_init): fixed gtk_signal_new() call for "selection_received", which was completely bogus. * other fixups to gtk_signal_new() calls all over the place. * gtk/gtktypebuiltins.h: types as variables (formerly macros). * gtk/gtktypebuiltins_vars.c: type variable implementations. * gtk/gtktypebuiltins_ids.c: array entries for builtin type declarations. * gtk/gtktypebuiltins_evals.c: enum value arrays. * gtk/gtk-boxed.defs: gtk and gdk structure definitions, used to build gtk.defs. * gtk/gtk.defs: generated file with scheme syntax for type definitions of gtk and gdk structures and enums. * gtk/gtktypeutils.h: * gtk/gtktypeutils.c: reworked type ids, so they are variables not macros anymore (this fixes binary incompatibility with new enum definitions). * gtk/gtkwidget.c (gtk_widget_real_key_press_event): proccess possible key bindings for this widget. * gtk/gtkwindow.c (gtk_window_key_press_event): chain parent class' handler. * gtk/gtkobject.h: * gtk/gtkobject.c: removed gtk_object_class_new_user_signal_no_recurse() again. new functions gtk_object_class_user_signal_new () and gtk_object_class_user_signal_newv (), to feature the GtkSignalRunType flag on the signal creation. Mon Jun 8 20:52:21 1998 Tim Janik <timj@gtk.org> * gtk/gtkcontainer.h: new signal GtkContainer::set_focus_child.
1998-06-09 07:11:55 +00:00
g_free (data);
}