2018-04-30 12:10:44 +00:00
|
|
|
/*
|
|
|
|
* Copyright © 2018 Benjamin Otte
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors: Benjamin Otte <otte@gnome.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2018-06-14 02:58:50 +00:00
|
|
|
#include "gdkdropprivate.h"
|
2018-05-23 17:41:54 +00:00
|
|
|
|
2018-06-02 04:24:23 +00:00
|
|
|
#include "gdkcontentdeserializer.h"
|
2018-04-30 12:10:44 +00:00
|
|
|
#include "gdkcontentformats.h"
|
|
|
|
#include "gdkcontentprovider.h"
|
|
|
|
#include "gdkcontentserializer.h"
|
|
|
|
#include "gdkcursor.h"
|
2018-05-23 17:41:54 +00:00
|
|
|
#include "gdkdisplay.h"
|
2018-04-30 12:10:44 +00:00
|
|
|
#include "gdkenumtypes.h"
|
|
|
|
#include "gdkeventsprivate.h"
|
2018-05-23 17:41:54 +00:00
|
|
|
#include "gdkinternals.h"
|
|
|
|
#include "gdkintl.h"
|
2018-05-31 19:45:22 +00:00
|
|
|
#include "gdkpipeiostreamprivate.h"
|
2018-05-23 17:41:54 +00:00
|
|
|
#include "gdksurface.h"
|
2018-04-30 12:10:44 +00:00
|
|
|
|
|
|
|
enum {
|
|
|
|
PROP_0,
|
2018-05-14 00:49:33 +00:00
|
|
|
PROP_ACTIONS,
|
2018-04-30 12:10:44 +00:00
|
|
|
PROP_DEVICE,
|
|
|
|
PROP_DISPLAY,
|
2018-05-16 02:49:58 +00:00
|
|
|
PROP_DRAG,
|
2018-04-30 12:10:44 +00:00
|
|
|
PROP_FORMATS,
|
2018-05-23 16:30:14 +00:00
|
|
|
PROP_SURFACE,
|
2018-04-30 12:10:44 +00:00
|
|
|
N_PROPERTIES
|
|
|
|
};
|
|
|
|
|
|
|
|
static GParamSpec *properties[N_PROPERTIES] = { NULL, };
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (GdkDrop, gdk_drop, G_TYPE_OBJECT)
|
2018-04-30 12:10:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkDrop:
|
|
|
|
*
|
|
|
|
* The GdkDrop struct contains only private fields and
|
|
|
|
* should not be accessed directly.
|
|
|
|
*/
|
|
|
|
|
2018-05-14 02:16:25 +00:00
|
|
|
static void
|
|
|
|
gdk_drop_default_status (GdkDrop *self,
|
|
|
|
GdkDragAction actions)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-05-31 19:45:22 +00:00
|
|
|
static void
|
|
|
|
gdk_drop_read_local_write_done (GObject *drag,
|
|
|
|
GAsyncResult *result,
|
|
|
|
gpointer stream)
|
|
|
|
{
|
|
|
|
/* we don't care about the error, we just want to clean up */
|
2018-06-29 17:34:14 +00:00
|
|
|
gdk_drag_write_finish (GDK_DRAG (drag), result, NULL);
|
2018-05-31 19:45:22 +00:00
|
|
|
|
|
|
|
/* XXX: Do we need to close_async() here? */
|
|
|
|
g_output_stream_close (stream, NULL, NULL);
|
|
|
|
|
|
|
|
g_object_unref (stream);
|
|
|
|
}
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
static void
|
2018-05-07 22:47:26 +00:00
|
|
|
gdk_drop_read_local_async (GdkDrop *self,
|
|
|
|
GdkContentFormats *formats,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2018-05-31 19:45:22 +00:00
|
|
|
GdkContentFormats *content_formats;
|
|
|
|
const char *mime_type;
|
2018-05-07 22:47:26 +00:00
|
|
|
GTask *task;
|
|
|
|
|
|
|
|
task = g_task_new (self, cancellable, callback, user_data);
|
|
|
|
g_task_set_priority (task, io_priority);
|
|
|
|
g_task_set_source_tag (task, gdk_drop_read_local_async);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
if (self->drag == NULL)
|
2018-05-31 19:45:22 +00:00
|
|
|
{
|
|
|
|
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("Drag'n'drop from other applications is not supported."));
|
|
|
|
g_object_unref (task);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
content_formats = gdk_content_provider_ref_formats (self->drag->content);
|
2018-05-31 19:45:22 +00:00
|
|
|
content_formats = gdk_content_formats_union_serialize_mime_types (content_formats);
|
|
|
|
mime_type = gdk_content_formats_match_mime_type (content_formats, formats);
|
|
|
|
|
|
|
|
if (mime_type != NULL)
|
|
|
|
{
|
|
|
|
GOutputStream *output_stream;
|
|
|
|
GIOStream *stream;
|
|
|
|
|
|
|
|
stream = gdk_pipe_io_stream_new ();
|
|
|
|
output_stream = g_io_stream_get_output_stream (stream);
|
2018-07-03 22:59:18 +00:00
|
|
|
gdk_drag_write_async (self->drag,
|
2018-05-31 19:45:22 +00:00
|
|
|
mime_type,
|
|
|
|
output_stream,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
gdk_drop_read_local_write_done,
|
|
|
|
g_object_ref (output_stream));
|
|
|
|
g_task_set_task_data (task, (gpointer) mime_type, NULL);
|
|
|
|
g_task_return_pointer (task, g_object_ref (g_io_stream_get_input_stream (stream)), g_object_unref);
|
|
|
|
|
|
|
|
g_object_unref (stream);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_task_return_new_error (task, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
|
|
|
|
_("No compatible formats to transfer contents."));
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_content_formats_unref (content_formats);
|
2018-05-07 22:47:26 +00:00
|
|
|
g_object_unref (task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GInputStream *
|
|
|
|
gdk_drop_read_local_finish (GdkDrop *self,
|
|
|
|
const char **out_mime_type,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
2018-04-30 12:10:44 +00:00
|
|
|
{
|
2018-05-07 22:47:26 +00:00
|
|
|
g_return_val_if_fail (g_task_is_valid (result, self), NULL);
|
|
|
|
g_return_val_if_fail (g_task_get_source_tag (G_TASK (result)) == gdk_drop_read_local_async, NULL);
|
|
|
|
|
|
|
|
if (out_mime_type)
|
|
|
|
*out_mime_type = g_task_get_task_data (G_TASK (result));
|
|
|
|
|
|
|
|
return g_task_propagate_pointer (G_TASK (result), error);
|
2018-04-30 12:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_drop_set_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkDrop *self = GDK_DROP (gobject);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2018-05-14 00:49:33 +00:00
|
|
|
case PROP_ACTIONS:
|
|
|
|
gdk_drop_set_actions (self, g_value_get_flags (value));
|
|
|
|
break;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
case PROP_DEVICE:
|
2018-07-03 22:59:18 +00:00
|
|
|
self->device = g_value_dup_object (value);
|
|
|
|
g_assert (self->device != NULL);
|
|
|
|
if (self->surface)
|
|
|
|
g_assert (gdk_surface_get_display (self->surface) == gdk_device_get_display (self->device));
|
2018-04-30 12:10:44 +00:00
|
|
|
break;
|
|
|
|
|
2018-05-16 02:49:58 +00:00
|
|
|
case PROP_DRAG:
|
2018-07-03 22:59:18 +00:00
|
|
|
self->drag = g_value_dup_object (value);
|
2018-05-16 02:49:58 +00:00
|
|
|
break;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
case PROP_FORMATS:
|
2018-07-03 22:59:18 +00:00
|
|
|
self->formats = g_value_dup_boxed (value);
|
|
|
|
g_assert (self->formats != NULL);
|
2018-04-30 12:10:44 +00:00
|
|
|
break;
|
|
|
|
|
2018-05-23 16:30:14 +00:00
|
|
|
case PROP_SURFACE:
|
2018-07-03 22:59:18 +00:00
|
|
|
self->surface = g_value_dup_object (value);
|
|
|
|
g_assert (self->surface != NULL);
|
|
|
|
if (self->device)
|
|
|
|
g_assert (gdk_surface_get_display (self->surface) == gdk_device_get_display (self->device));
|
2018-05-23 16:30:14 +00:00
|
|
|
break;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_drop_get_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GdkDrop *self = GDK_DROP (gobject);
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2018-05-14 00:49:33 +00:00
|
|
|
case PROP_ACTIONS:
|
2018-07-03 22:59:18 +00:00
|
|
|
g_value_set_flags (value, self->actions);
|
2018-05-14 00:49:33 +00:00
|
|
|
break;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
case PROP_DEVICE:
|
2018-07-03 22:59:18 +00:00
|
|
|
g_value_set_object (value, self->device);
|
2018-04-30 12:10:44 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case PROP_DISPLAY:
|
2018-07-03 22:59:18 +00:00
|
|
|
g_value_set_object (value, gdk_device_get_display (self->device));
|
2018-04-30 12:10:44 +00:00
|
|
|
break;
|
|
|
|
|
2018-05-16 02:49:58 +00:00
|
|
|
case PROP_DRAG:
|
2018-07-03 22:59:18 +00:00
|
|
|
g_value_set_object (value, self->drag);
|
2018-05-16 02:49:58 +00:00
|
|
|
break;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
case PROP_FORMATS:
|
2018-07-03 22:59:18 +00:00
|
|
|
g_value_set_boxed (value, self->formats);
|
2018-04-30 12:10:44 +00:00
|
|
|
break;
|
|
|
|
|
2018-05-23 16:30:14 +00:00
|
|
|
case PROP_SURFACE:
|
2018-07-03 22:59:18 +00:00
|
|
|
g_value_set_object (value, self->surface);
|
2018-05-23 16:30:14 +00:00
|
|
|
break;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_drop_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GdkDrop *self = GDK_DROP (object);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
g_clear_object (&self->device);
|
|
|
|
g_clear_object (&self->drag);
|
2018-04-30 12:10:44 +00:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (gdk_drop_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_drop_class_init (GdkDropClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
2018-05-14 02:16:25 +00:00
|
|
|
klass->status = gdk_drop_default_status;
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
object_class->get_property = gdk_drop_get_property;
|
|
|
|
object_class->set_property = gdk_drop_set_property;
|
|
|
|
object_class->finalize = gdk_drop_finalize;
|
|
|
|
|
2018-05-14 00:49:33 +00:00
|
|
|
/**
|
|
|
|
* GdkDrop:actions:
|
|
|
|
*
|
|
|
|
* The possible actions for this drop
|
|
|
|
*/
|
|
|
|
properties[PROP_ACTIONS] =
|
|
|
|
g_param_spec_flags ("actions",
|
|
|
|
"Actions",
|
|
|
|
"The possible actions for this drop",
|
|
|
|
GDK_TYPE_DRAG_ACTION,
|
|
|
|
GDK_ACTION_ALL,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
/**
|
|
|
|
* GdkDrop:device:
|
|
|
|
*
|
|
|
|
* The #GdkDevice performing the drop
|
|
|
|
*/
|
|
|
|
properties[PROP_DEVICE] =
|
|
|
|
g_param_spec_object ("device",
|
|
|
|
"Device",
|
|
|
|
"The device performing the drop",
|
|
|
|
GDK_TYPE_DEVICE,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkDrop:display:
|
|
|
|
*
|
|
|
|
* The #GdkDisplay that the drop belongs to.
|
|
|
|
*/
|
|
|
|
properties[PROP_DISPLAY] =
|
|
|
|
g_param_spec_object ("display",
|
|
|
|
"Display",
|
|
|
|
"Display this drag belongs to",
|
|
|
|
GDK_TYPE_DISPLAY,
|
|
|
|
G_PARAM_READABLE |
|
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
2018-05-16 02:49:58 +00:00
|
|
|
/**
|
|
|
|
* GdkDrop:drag:
|
|
|
|
*
|
|
|
|
* The #GdkDrag that initiated this drop
|
|
|
|
*/
|
|
|
|
properties[PROP_DRAG] =
|
|
|
|
g_param_spec_object ("drag",
|
|
|
|
"Drag",
|
|
|
|
"The drag that initiated this drop",
|
2018-06-29 17:34:14 +00:00
|
|
|
GDK_TYPE_DRAG,
|
2018-05-16 02:49:58 +00:00
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
/**
|
|
|
|
* GdkDrop:formats:
|
|
|
|
*
|
|
|
|
* The possible formats that the drop can provide its data in.
|
|
|
|
*/
|
|
|
|
properties[PROP_FORMATS] =
|
|
|
|
g_param_spec_boxed ("formats",
|
|
|
|
"Formats",
|
|
|
|
"The possible formats for data",
|
|
|
|
GDK_TYPE_CONTENT_FORMATS,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
G_PARAM_EXPLICIT_NOTIFY);
|
2018-05-23 16:30:14 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GdkDrop:surface:
|
|
|
|
*
|
|
|
|
* The #GdkSurface the drop happens on
|
|
|
|
*/
|
|
|
|
properties[PROP_SURFACE] =
|
|
|
|
g_param_spec_object ("surface",
|
|
|
|
"Surface",
|
|
|
|
"The surface the drop is happening on",
|
|
|
|
GDK_TYPE_SURFACE,
|
|
|
|
G_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY |
|
|
|
|
G_PARAM_STATIC_STRINGS |
|
|
|
|
G_PARAM_EXPLICIT_NOTIFY);
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
g_object_class_install_properties (object_class, N_PROPERTIES, properties);
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:47:26 +00:00
|
|
|
static void
|
|
|
|
gdk_drop_init (GdkDrop *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-04-30 12:10:44 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_get_display:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
*
|
|
|
|
* Gets the #GdkDisplay that @self was created for.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): a #GdkDisplay
|
|
|
|
**/
|
|
|
|
GdkDisplay *
|
|
|
|
gdk_drop_get_display (GdkDrop *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), NULL);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
return gdk_device_get_display (self->device);
|
2018-04-30 12:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_get_device:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
*
|
|
|
|
* Returns the #GdkDevice performing the drop.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): The #GdkDevice performing the drop.
|
|
|
|
**/
|
|
|
|
GdkDevice *
|
|
|
|
gdk_drop_get_device (GdkDrop *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), NULL);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
return self->device;
|
2018-04-30 12:10:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_get_formats:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
*
|
|
|
|
* Returns the #GdkContentFormats that the drop offers the data
|
|
|
|
* to be read in.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): The possible #GdkContentFormats
|
|
|
|
**/
|
|
|
|
GdkContentFormats *
|
|
|
|
gdk_drop_get_formats (GdkDrop *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), NULL);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
return self->formats;
|
2018-04-30 12:10:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-23 16:30:14 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_get_surface:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
*
|
|
|
|
* Returns the #GdkSurface performing the drop.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): The #GdkSurface performing the drop.
|
|
|
|
**/
|
|
|
|
GdkSurface *
|
|
|
|
gdk_drop_get_surface (GdkDrop *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), NULL);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
return self->surface;
|
2018-05-23 16:30:14 +00:00
|
|
|
}
|
|
|
|
|
2018-05-14 00:49:33 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_get_actions:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
*
|
|
|
|
* Returns the possible actions for this #GdkDrop. If this value
|
|
|
|
* contains multiple actions - ie gdk_drag_action_is_unique()
|
2018-05-14 13:09:42 +00:00
|
|
|
* returns %FALSE for the result - gdk_drag_finish() must choose
|
2018-05-14 00:49:33 +00:00
|
|
|
* the action to use when accepting the drop.
|
|
|
|
*
|
|
|
|
* This value may change over the lifetime of the #GdkDrop both
|
|
|
|
* as a response to source side actions as well as to calls to
|
2018-05-14 13:09:42 +00:00
|
|
|
* gdk_drop_status() or gdk_drag_finish(). The source side will
|
2018-05-14 00:49:33 +00:00
|
|
|
* not change this value anymore once a drop has started.
|
|
|
|
*
|
|
|
|
* Returns: The possible #GdkDragActions
|
|
|
|
**/
|
|
|
|
GdkDragAction
|
|
|
|
gdk_drop_get_actions (GdkDrop *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), 0);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
return self->actions;
|
2018-05-14 00:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_drop_set_actions (GdkDrop *self,
|
|
|
|
GdkDragAction actions)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DROP (self));
|
|
|
|
g_return_if_fail ((actions & GDK_ACTION_ASK) == 0);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
if (self->actions == actions)
|
2018-05-14 00:49:33 +00:00
|
|
|
return;
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
self->actions = actions;
|
2018-05-14 00:49:33 +00:00
|
|
|
|
|
|
|
g_object_notify_by_pspec (G_OBJECT (self), properties[PROP_ACTIONS]);
|
|
|
|
}
|
|
|
|
|
2018-05-16 02:49:58 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_get_drag:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
*
|
|
|
|
* If this is an in-app drag-and-drop operation, returns the #GdkDrag
|
|
|
|
* that corresponds to this drop.
|
|
|
|
*
|
|
|
|
* If it is not, %NULL is returned.
|
|
|
|
*
|
|
|
|
* Returns: (transfer none) (nullable): the corresponding #GdkDrag
|
|
|
|
**/
|
2018-06-29 17:34:14 +00:00
|
|
|
GdkDrag *
|
2018-05-16 02:49:58 +00:00
|
|
|
gdk_drop_get_drag (GdkDrop *self)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), 0);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
return self->drag;
|
2018-05-16 02:49:58 +00:00
|
|
|
}
|
|
|
|
|
2018-05-14 02:16:25 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_status:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @actions: Supported actions of the destination, or 0 to indicate
|
|
|
|
* that a drop will not be accepted
|
|
|
|
*
|
|
|
|
* Selects all actions that are potentially supported by the destination.
|
|
|
|
*
|
|
|
|
* When calling this function, do not restrict the passed in actions to
|
|
|
|
* the ones provided by gdk_drop_get_actions(). Those actions may
|
|
|
|
* change in the future, even depending on the actions you provide here.
|
|
|
|
*
|
|
|
|
* This function should be called by drag destinations in response to
|
|
|
|
* %GDK_DRAG_ENTER or %GDK_DRAG_MOTION events. If the destination does
|
|
|
|
* not yet know the exact actions it supports, it should set any possible
|
|
|
|
* actions first and then later call this function again.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_drop_status (GdkDrop *self,
|
|
|
|
GdkDragAction actions)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DROP (self));
|
|
|
|
|
|
|
|
GDK_DROP_GET_CLASS (self)->status (self, actions);
|
|
|
|
}
|
|
|
|
|
2018-05-15 03:45:06 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_finish:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @action: the action performed by the destination or 0 if the drop
|
|
|
|
* failed
|
|
|
|
*
|
|
|
|
* Ends the drag operation after a drop.
|
|
|
|
*
|
|
|
|
* The @action must be a single action selected from the actions
|
|
|
|
* available via gdk_drop_get_actions().
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_drop_finish (GdkDrop *self,
|
|
|
|
GdkDragAction action)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DROP (self));
|
|
|
|
g_return_if_fail (gdk_drag_action_is_unique (action));
|
|
|
|
|
|
|
|
GDK_DROP_GET_CLASS (self)->finish (self, action);
|
|
|
|
}
|
|
|
|
|
2018-05-31 19:45:22 +00:00
|
|
|
static void
|
|
|
|
gdk_drop_read_internal (GdkDrop *self,
|
|
|
|
GdkContentFormats *formats,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
2018-07-03 22:59:18 +00:00
|
|
|
if (self->drag)
|
2018-05-31 19:45:22 +00:00
|
|
|
{
|
|
|
|
gdk_drop_read_local_async (self,
|
|
|
|
formats,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
GDK_DROP_GET_CLASS (self)->read_async (self,
|
|
|
|
formats,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-07 22:47:26 +00:00
|
|
|
/**
|
|
|
|
* gdk_drop_read_async:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @mime_types: (array zero-terminated=1) (element-type utf8):
|
|
|
|
* pointer to an array of mime types
|
|
|
|
* @io_priority: the io priority for the read operation
|
|
|
|
* @cancellable: (allow-none): optional #GCancellable object,
|
|
|
|
* %NULL to ignore
|
|
|
|
* @callback: (scope async): a #GAsyncReadyCallback to call when
|
|
|
|
* the request is satisfied
|
|
|
|
* @user_data: (closure): the data to pass to @callback
|
|
|
|
*
|
|
|
|
* Asynchronously read the dropped data from a #GdkDrop
|
|
|
|
* in a format that complies with one of the mime types.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gdk_drop_read_async (GdkDrop *self,
|
|
|
|
const char **mime_types,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkContentFormats *formats;
|
|
|
|
|
|
|
|
g_return_if_fail (GDK_IS_DROP (self));
|
|
|
|
g_return_if_fail (mime_types != NULL && mime_types[0] != NULL);
|
|
|
|
g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
|
|
|
|
g_return_if_fail (callback != NULL);
|
|
|
|
|
|
|
|
formats = gdk_content_formats_new (mime_types, g_strv_length ((char **) mime_types));
|
|
|
|
|
2018-05-31 19:45:22 +00:00
|
|
|
gdk_drop_read_internal (self, formats, io_priority, cancellable, callback, user_data);
|
2018-05-07 22:47:26 +00:00
|
|
|
|
|
|
|
gdk_content_formats_unref (formats);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_read_finish:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @out_mime_type: (out) (type utf8): return location for the used mime type
|
|
|
|
* @result: a #GAsyncResult
|
|
|
|
* @error: (allow-none): location to store error information on failure, or %NULL
|
|
|
|
*
|
|
|
|
* Finishes an async drop read operation, see gdk_drop_read_async().
|
|
|
|
*
|
|
|
|
* Returns: (nullable) (transfer full): the #GInputStream, or %NULL
|
|
|
|
*/
|
|
|
|
GInputStream *
|
|
|
|
gdk_drop_read_finish (GdkDrop *self,
|
|
|
|
const char **out_mime_type,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GDK_IS_DROP (self), NULL);
|
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
|
|
|
|
|
|
|
if (g_async_result_is_tagged (result, gdk_drop_read_local_async))
|
|
|
|
{
|
|
|
|
return gdk_drop_read_local_finish (self, out_mime_type, result, error);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return GDK_DROP_GET_CLASS (self)->read_finish (self, out_mime_type, result, error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-02 04:24:23 +00:00
|
|
|
static void
|
|
|
|
gdk_drop_read_value_done (GObject *source,
|
|
|
|
GAsyncResult *result,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GTask *task = data;
|
|
|
|
GError *error = NULL;
|
|
|
|
GValue *value;
|
|
|
|
|
|
|
|
value = g_task_get_task_data (task);
|
|
|
|
|
|
|
|
if (!gdk_content_deserialize_finish (result, value, &error))
|
|
|
|
g_task_return_error (task, error);
|
|
|
|
else
|
|
|
|
g_task_return_pointer (task, value, NULL);
|
|
|
|
|
|
|
|
g_object_unref (task);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_drop_read_value_got_stream (GObject *source,
|
|
|
|
GAsyncResult *result,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GInputStream *stream;
|
|
|
|
GError *error = NULL;
|
|
|
|
GTask *task = data;
|
|
|
|
const char *mime_type;
|
|
|
|
|
|
|
|
stream = gdk_drop_read_finish (GDK_DROP (source), &mime_type, result, &error);
|
|
|
|
if (stream == NULL)
|
|
|
|
{
|
|
|
|
g_task_return_error (task, error);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
gdk_content_deserialize_async (stream,
|
|
|
|
mime_type,
|
|
|
|
G_VALUE_TYPE (g_task_get_task_data (task)),
|
|
|
|
g_task_get_priority (task),
|
|
|
|
g_task_get_cancellable (task),
|
|
|
|
gdk_drop_read_value_done,
|
|
|
|
task);
|
|
|
|
g_object_unref (stream);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
free_value (gpointer value)
|
|
|
|
{
|
|
|
|
g_value_unset (value);
|
|
|
|
g_slice_free (GValue, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gdk_drop_read_value_internal (GdkDrop *self,
|
|
|
|
GType type,
|
|
|
|
gpointer source_tag,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
GdkContentFormatsBuilder *builder;
|
|
|
|
GdkContentFormats *formats;
|
|
|
|
GValue *value;
|
|
|
|
GTask *task;
|
|
|
|
|
|
|
|
task = g_task_new (self, cancellable, callback, user_data);
|
|
|
|
g_task_set_priority (task, io_priority);
|
|
|
|
g_task_set_source_tag (task, source_tag);
|
|
|
|
value = g_slice_new0 (GValue);
|
|
|
|
g_value_init (value, type);
|
|
|
|
g_task_set_task_data (task, value, free_value);
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
if (self->drag)
|
2018-06-02 04:24:23 +00:00
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
|
2018-07-03 22:59:18 +00:00
|
|
|
if (gdk_content_provider_get_value (self->drag->content, value, &error))
|
2018-06-02 04:24:23 +00:00
|
|
|
{
|
|
|
|
g_task_return_pointer (task, value, NULL);
|
|
|
|
g_object_unref (task);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (!g_error_matches (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED))
|
|
|
|
{
|
|
|
|
g_task_return_error (task, error);
|
|
|
|
g_object_unref (task);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* fall through to regular stream transfer */
|
|
|
|
g_clear_error (&error);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
builder = gdk_content_formats_builder_new ();
|
|
|
|
gdk_content_formats_builder_add_gtype (builder, type);
|
|
|
|
formats = gdk_content_formats_builder_free_to_formats (builder);
|
|
|
|
formats = gdk_content_formats_union_deserialize_mime_types (formats);
|
|
|
|
|
|
|
|
gdk_drop_read_internal (self,
|
|
|
|
formats,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
gdk_drop_read_value_got_stream,
|
|
|
|
task);
|
|
|
|
|
|
|
|
gdk_content_formats_unref (formats);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_read_value_async:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @type: a #GType to read
|
|
|
|
* @io_priority: the [I/O priority][io-priority]
|
|
|
|
* of the request.
|
|
|
|
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: (scope async): callback to call when the request is satisfied
|
|
|
|
* @user_data: (closure): the data to pass to callback function
|
|
|
|
*
|
|
|
|
* Asynchronously request the drag operation's contents converted to the given
|
|
|
|
* @type. When the operation is finished @callback will be called.
|
|
|
|
* You can then call gdk_drop_read_value_finish() to get the resulting
|
|
|
|
* #GValue.
|
|
|
|
*
|
|
|
|
* For local drag'n'drop operations that are available in the given #GType, the
|
|
|
|
* value will be copied directly. Otherwise, GDK will try to use
|
|
|
|
* gdk_content_deserialize_async() to convert the data.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_drop_read_value_async (GdkDrop *self,
|
|
|
|
GType type,
|
|
|
|
int io_priority,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DROP (self));
|
|
|
|
g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
|
|
|
|
g_return_if_fail (callback != NULL);
|
|
|
|
|
|
|
|
gdk_drop_read_value_internal (self,
|
|
|
|
type,
|
|
|
|
gdk_drop_read_value_async,
|
|
|
|
io_priority,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_read_value_finish:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @result: a #GAsyncResult
|
|
|
|
* @error: a #GError location to store the error occurring, or %NULL to
|
|
|
|
* ignore.
|
|
|
|
*
|
|
|
|
* Finishes an async drop read started with
|
|
|
|
* gdk_drop_read_value_async().
|
|
|
|
*
|
|
|
|
* Returns: (transfer none): a #GValue containing the result.
|
|
|
|
**/
|
|
|
|
const GValue *
|
|
|
|
gdk_drop_read_value_finish (GdkDrop *self,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (g_task_is_valid (result, self), NULL);
|
|
|
|
g_return_val_if_fail (g_task_get_source_tag (G_TASK (result)) == gdk_drop_read_value_async, NULL);
|
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
|
|
|
|
|
|
|
return g_task_propagate_pointer (G_TASK (result), error);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_read_text_async:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
|
|
|
|
* @callback: (scope async): callback to call when the request is satisfied
|
|
|
|
* @user_data: (closure): the data to pass to callback function
|
|
|
|
*
|
|
|
|
* Asynchronously request the drag operation's contents converted to a string.
|
|
|
|
* When the operation is finished @callback will be called. You can then
|
|
|
|
* call gdk_drop_read_text_finish() to get the result.
|
|
|
|
*
|
|
|
|
* This is a simple wrapper around gdk_drop_read_value_async(). Use
|
|
|
|
* that function or gdk_drop_read_async() directly if you need more
|
|
|
|
* control over the operation.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gdk_drop_read_text_async (GdkDrop *self,
|
|
|
|
GCancellable *cancellable,
|
|
|
|
GAsyncReadyCallback callback,
|
|
|
|
gpointer user_data)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GDK_IS_DROP (self));
|
|
|
|
g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
|
|
|
|
g_return_if_fail (callback != NULL);
|
|
|
|
|
|
|
|
gdk_drop_read_value_internal (self,
|
|
|
|
G_TYPE_STRING,
|
|
|
|
gdk_drop_read_text_async,
|
|
|
|
G_PRIORITY_DEFAULT,
|
|
|
|
cancellable,
|
|
|
|
callback,
|
|
|
|
user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gdk_drop_read_text_finish:
|
|
|
|
* @self: a #GdkDrop
|
|
|
|
* @result: a #GAsyncResult
|
|
|
|
* @error: a #GError location to store the error occurring, or %NULL to
|
|
|
|
* ignore.
|
|
|
|
*
|
|
|
|
* Finishes an asynchronous read started with
|
|
|
|
* gdk_drop_read_text_async().
|
|
|
|
*
|
|
|
|
* Returns: (transfer full) (nullable): a new string or %NULL on error.
|
|
|
|
**/
|
|
|
|
char *
|
|
|
|
gdk_drop_read_text_finish (GdkDrop *self,
|
|
|
|
GAsyncResult *result,
|
|
|
|
GError **error)
|
|
|
|
{
|
|
|
|
const GValue *value;
|
|
|
|
|
|
|
|
g_return_val_if_fail (g_task_is_valid (result, self), NULL);
|
|
|
|
g_return_val_if_fail (g_task_get_source_tag (G_TASK (result)) == gdk_drop_read_text_async, NULL);
|
|
|
|
g_return_val_if_fail (error == NULL || *error == NULL, NULL);
|
|
|
|
|
|
|
|
value = g_task_propagate_pointer (G_TASK (result), error);
|
|
|
|
if (!value)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return g_value_dup_string (value);
|
|
|
|
}
|
|
|
|
|
2018-05-23 17:41:54 +00:00
|
|
|
static void
|
|
|
|
gdk_drop_do_emit_event (GdkEvent *event,
|
|
|
|
gboolean dont_queue)
|
|
|
|
{
|
|
|
|
if (dont_queue)
|
|
|
|
{
|
|
|
|
_gdk_event_emit (event);
|
|
|
|
g_object_unref (event);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_gdk_event_queue_append (gdk_event_get_display (event), event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void
|
|
|
|
gdk_drop_emit_enter_event (GdkDrop *self,
|
|
|
|
gboolean dont_queue,
|
|
|
|
guint32 time)
|
|
|
|
{
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_DRAG_ENTER);
|
2018-07-03 22:59:18 +00:00
|
|
|
event->any.surface = g_object_ref (self->surface);
|
2018-05-29 18:49:41 +00:00
|
|
|
event->dnd.drop = g_object_ref (self);
|
2018-05-23 17:41:54 +00:00
|
|
|
event->dnd.time = time;
|
2018-07-03 22:59:18 +00:00
|
|
|
gdk_event_set_device (event, self->device);
|
2018-05-23 17:41:54 +00:00
|
|
|
|
|
|
|
gdk_drop_do_emit_event (event, dont_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_drop_emit_motion_event (GdkDrop *self,
|
|
|
|
gboolean dont_queue,
|
|
|
|
double x_root,
|
|
|
|
double y_root,
|
|
|
|
guint32 time)
|
|
|
|
{
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_DRAG_MOTION);
|
2018-07-03 22:59:18 +00:00
|
|
|
event->any.surface = g_object_ref (self->surface);
|
2018-05-29 18:49:41 +00:00
|
|
|
event->dnd.drop = g_object_ref (self);
|
2018-05-23 17:41:54 +00:00
|
|
|
event->dnd.time = time;
|
|
|
|
event->dnd.x_root = x_root;
|
|
|
|
event->dnd.y_root = y_root;
|
2018-07-03 22:59:18 +00:00
|
|
|
gdk_event_set_device (event, self->device);
|
2018-05-23 17:41:54 +00:00
|
|
|
|
|
|
|
gdk_drop_do_emit_event (event, dont_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_drop_emit_leave_event (GdkDrop *self,
|
|
|
|
gboolean dont_queue,
|
|
|
|
guint32 time)
|
|
|
|
{
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_DRAG_LEAVE);
|
2018-07-03 22:59:18 +00:00
|
|
|
event->any.surface = g_object_ref (self->surface);
|
2018-05-29 18:49:41 +00:00
|
|
|
event->dnd.drop = g_object_ref (self);
|
2018-05-23 17:41:54 +00:00
|
|
|
event->dnd.time = time;
|
2018-07-03 22:59:18 +00:00
|
|
|
gdk_event_set_device (event, self->device);
|
2018-05-23 17:41:54 +00:00
|
|
|
|
|
|
|
gdk_drop_do_emit_event (event, dont_queue);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gdk_drop_emit_drop_event (GdkDrop *self,
|
|
|
|
gboolean dont_queue,
|
|
|
|
double x_root,
|
|
|
|
double y_root,
|
|
|
|
guint32 time)
|
|
|
|
{
|
|
|
|
GdkEvent *event;
|
|
|
|
|
|
|
|
event = gdk_event_new (GDK_DROP_START);
|
2018-07-03 22:59:18 +00:00
|
|
|
event->any.surface = g_object_ref (self->surface);
|
2018-05-29 18:49:41 +00:00
|
|
|
event->dnd.drop = g_object_ref (self);
|
2018-05-23 17:41:54 +00:00
|
|
|
event->dnd.time = time;
|
|
|
|
event->dnd.x_root = x_root;
|
|
|
|
event->dnd.y_root = y_root;
|
2018-07-03 22:59:18 +00:00
|
|
|
gdk_event_set_device (event, self->device);
|
2018-05-23 17:41:54 +00:00
|
|
|
|
|
|
|
gdk_drop_do_emit_event (event, dont_queue);
|
|
|
|
}
|
|
|
|
|