2009-12-02 08:48:42 +00:00
|
|
|
/* gtkextendedlayout.c
|
|
|
|
* Copyright (C) 2007 Openismus GmbH
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Mathias Hasselmann <mathias@openismus.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include "gtkextendedlayout.h"
|
2010-04-08 22:52:12 +00:00
|
|
|
#include "gtksizegroup.h"
|
2010-04-13 02:21:46 +00:00
|
|
|
#include "gtkprivate.h"
|
2009-12-02 08:48:42 +00:00
|
|
|
#include "gtkintl.h"
|
|
|
|
#include "gtkalias.h"
|
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
|
|
|
|
#define DEBUG_EXTENDED_LAYOUT 0
|
|
|
|
|
2010-04-17 05:51:10 +00:00
|
|
|
/* With extended layout, a widget may be requested
|
2010-04-18 02:52:27 +00:00
|
|
|
* its width for 2 or maximum 3 heights in one resize
|
2010-04-17 05:51:10 +00:00
|
|
|
*/
|
|
|
|
#define N_CACHED_SIZES 3
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
guint age;
|
|
|
|
gint for_size;
|
|
|
|
gint minimum_size;
|
|
|
|
gint natural_size;
|
|
|
|
} DesiredSize;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
DesiredSize desired_widths[N_CACHED_SIZES];
|
|
|
|
DesiredSize desired_heights[N_CACHED_SIZES];
|
|
|
|
guint cached_width_age;
|
|
|
|
guint cached_height_age;
|
|
|
|
} ExtendedLayoutCache;
|
|
|
|
|
|
|
|
static GQuark quark_cache = 0;
|
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
|
2009-12-02 08:48:42 +00:00
|
|
|
GType
|
|
|
|
gtk_extended_layout_get_type (void)
|
|
|
|
{
|
|
|
|
static GType extended_layout_type = 0;
|
|
|
|
|
|
|
|
if (G_UNLIKELY(!extended_layout_type))
|
2010-04-06 06:47:20 +00:00
|
|
|
{
|
|
|
|
extended_layout_type =
|
|
|
|
g_type_register_static_simple (G_TYPE_INTERFACE, I_("GtkExtendedLayout"),
|
|
|
|
sizeof (GtkExtendedLayoutIface),
|
|
|
|
NULL, 0, NULL, 0);
|
|
|
|
|
|
|
|
g_type_interface_add_prerequisite (extended_layout_type, GTK_TYPE_WIDGET);
|
2010-04-17 05:51:10 +00:00
|
|
|
|
|
|
|
quark_cache = g_quark_from_static_string ("gtk-extended-layout-cache");
|
2010-04-06 06:47:20 +00:00
|
|
|
}
|
2009-12-02 08:48:42 +00:00
|
|
|
|
|
|
|
return extended_layout_type;
|
|
|
|
}
|
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
/* looks for a cached size request for this for_size. If not
|
|
|
|
* found, returns the oldest entry so it can be overwritten */
|
|
|
|
static gboolean
|
2010-04-17 05:51:10 +00:00
|
|
|
get_cached_desired_size (gfloat for_size,
|
|
|
|
DesiredSize *cached_sizes,
|
|
|
|
DesiredSize **result)
|
2009-12-02 08:48:42 +00:00
|
|
|
{
|
2010-04-13 02:21:46 +00:00
|
|
|
guint i;
|
2009-12-02 08:48:42 +00:00
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
*result = &cached_sizes[0];
|
2009-12-02 08:48:42 +00:00
|
|
|
|
2010-04-17 05:51:10 +00:00
|
|
|
for (i = 0; i < N_CACHED_SIZES; i++)
|
2010-04-13 02:21:46 +00:00
|
|
|
{
|
2010-04-17 05:51:10 +00:00
|
|
|
DesiredSize *cs;
|
2010-04-11 02:32:55 +00:00
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
cs = &cached_sizes[i];
|
|
|
|
|
|
|
|
if (cs->age > 0 &&
|
|
|
|
cs->for_size == for_size)
|
|
|
|
{
|
|
|
|
*result = cs;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else if (cs->age < (*result)->age)
|
|
|
|
{
|
|
|
|
*result = cs;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
2010-04-11 02:32:55 +00:00
|
|
|
|
2010-04-17 05:51:10 +00:00
|
|
|
static void
|
|
|
|
destroy_cache (ExtendedLayoutCache *cache)
|
|
|
|
{
|
|
|
|
g_slice_free (ExtendedLayoutCache, cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
ExtendedLayoutCache *
|
|
|
|
get_cache (GtkExtendedLayout *layout, gboolean create)
|
|
|
|
{
|
|
|
|
ExtendedLayoutCache *cache;
|
|
|
|
|
|
|
|
cache = g_object_get_qdata (G_OBJECT (layout), quark_cache);
|
|
|
|
if (!cache && create)
|
|
|
|
{
|
|
|
|
cache = g_slice_new0 (ExtendedLayoutCache);
|
|
|
|
|
|
|
|
cache->cached_width_age = 1;
|
|
|
|
cache->cached_height_age = 1;
|
|
|
|
|
|
|
|
g_object_set_qdata_full (G_OBJECT (layout), quark_cache, cache,
|
|
|
|
(GDestroyNotify)destroy_cache);
|
|
|
|
}
|
|
|
|
|
|
|
|
return cache;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_size_request (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
if (GTK_WIDGET_REQUEST_NEEDED (widget))
|
|
|
|
{
|
|
|
|
gtk_widget_ensure_style (widget);
|
|
|
|
GTK_PRIVATE_UNSET_FLAG (widget, GTK_REQUEST_NEEDED);
|
|
|
|
g_signal_emit_by_name (widget,
|
|
|
|
"size-request",
|
|
|
|
&widget->requisition);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
compute_size_for_orientation (GtkExtendedLayout *layout,
|
|
|
|
GtkSizeGroupMode orientation,
|
|
|
|
gint for_size,
|
|
|
|
gint *minimum_size,
|
|
|
|
gint *natural_size)
|
|
|
|
{
|
|
|
|
ExtendedLayoutCache *cache;
|
|
|
|
DesiredSize *cached_size;
|
|
|
|
GtkWidget *widget;
|
|
|
|
gboolean found_in_cache = FALSE;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_EXTENDED_LAYOUT (layout));
|
|
|
|
g_return_if_fail (minimum_size != NULL || natural_size != NULL);
|
|
|
|
|
|
|
|
widget = GTK_WIDGET (layout);
|
|
|
|
cache = get_cache (layout, TRUE);
|
|
|
|
|
|
|
|
if (orientation == GTK_SIZE_GROUP_HORIZONTAL)
|
|
|
|
{
|
|
|
|
cached_size = &cache->desired_widths[0];
|
|
|
|
|
|
|
|
if (GTK_WIDGET_WIDTH_REQUEST_NEEDED (layout) == FALSE)
|
|
|
|
found_in_cache = get_cached_desired_size (for_size, cache->desired_widths, &cached_size);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cached_size = &cache->desired_heights[0];
|
|
|
|
|
|
|
|
if (GTK_WIDGET_WIDTH_REQUEST_NEEDED (layout) == FALSE)
|
|
|
|
found_in_cache = get_cached_desired_size (for_size, cache->desired_heights, &cached_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!found_in_cache)
|
|
|
|
{
|
|
|
|
gint min_size = 0, nat_size = 0;
|
|
|
|
gint group_size, requisition_size;
|
|
|
|
|
|
|
|
/* Unconditional size request runs but is often unhandled. */
|
|
|
|
do_size_request (widget);
|
|
|
|
|
|
|
|
if (orientation == GTK_SIZE_GROUP_HORIZONTAL)
|
|
|
|
{
|
|
|
|
requisition_size = widget->requisition.width;
|
|
|
|
|
|
|
|
if (for_size < 0)
|
2010-04-18 02:52:27 +00:00
|
|
|
GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_desired_width (layout, &min_size, &nat_size);
|
2010-04-17 05:51:10 +00:00
|
|
|
else
|
2010-04-18 02:52:27 +00:00
|
|
|
GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_width_for_height (layout, for_size, &min_size, &nat_size);
|
2010-04-17 05:51:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
requisition_size = widget->requisition.height;
|
|
|
|
|
|
|
|
if (for_size < 0)
|
2010-04-18 02:52:27 +00:00
|
|
|
GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_desired_height (layout, &min_size, &nat_size);
|
2010-04-17 05:51:10 +00:00
|
|
|
else
|
2010-04-18 02:52:27 +00:00
|
|
|
GTK_EXTENDED_LAYOUT_GET_IFACE (layout)->get_height_for_width (layout, for_size, &min_size, &nat_size);
|
2010-04-17 05:51:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Support for dangling "size-request" signals and forward derived
|
|
|
|
* classes that will not default to a ->get_desired_width() that
|
|
|
|
* returns the values in the ->requisition cache.
|
|
|
|
*/
|
|
|
|
min_size = MAX (min_size, requisition_size);
|
|
|
|
nat_size = MAX (nat_size, requisition_size);
|
|
|
|
|
|
|
|
cached_size->minimum_size = min_size;
|
|
|
|
cached_size->natural_size = nat_size;
|
|
|
|
cached_size->for_size = for_size;
|
|
|
|
|
|
|
|
if (orientation == GTK_SIZE_GROUP_HORIZONTAL)
|
|
|
|
{
|
|
|
|
cached_size->age = cache->cached_width_age;
|
|
|
|
cache->cached_width_age++;
|
|
|
|
|
|
|
|
GTK_PRIVATE_UNSET_FLAG (layout, GTK_WIDTH_REQUEST_NEEDED);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cached_size->age = cache->cached_height_age;
|
|
|
|
cache->cached_height_age++;
|
|
|
|
|
|
|
|
GTK_PRIVATE_UNSET_FLAG (layout, GTK_HEIGHT_REQUEST_NEEDED);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get size groups to compute the base requisition once one of the values have been cached,
|
|
|
|
* then go ahead and update the cache with the sizegroup computed value.
|
|
|
|
*/
|
|
|
|
group_size =
|
|
|
|
_gtk_size_group_bump_requisition (GTK_WIDGET (layout),
|
|
|
|
orientation, cached_size->minimum_size);
|
2010-04-18 02:52:27 +00:00
|
|
|
|
2010-04-17 05:51:10 +00:00
|
|
|
cached_size->minimum_size = MAX (cached_size->minimum_size, group_size);
|
|
|
|
cached_size->natural_size = MAX (cached_size->natural_size, group_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Output the MAX()s of the cached size and the size computed by GtkSizeGroup. */
|
|
|
|
if (minimum_size)
|
|
|
|
*minimum_size = cached_size->minimum_size;
|
|
|
|
|
|
|
|
if (natural_size)
|
|
|
|
*natural_size = cached_size->natural_size;
|
|
|
|
|
|
|
|
g_assert (cached_size->minimum_size <= cached_size->natural_size);
|
|
|
|
|
|
|
|
#if DEBUG_EXTENDED_LAYOUT
|
|
|
|
g_message ("%s size for orientation %s: %d is minimum %d and natural: %d",
|
|
|
|
G_OBJECT_TYPE_NAME (layout),
|
|
|
|
orientation == GTK_SIZE_GROUP_HORIZONTAL ? "horizontal" : "vertical",
|
2010-04-18 02:52:27 +00:00
|
|
|
for_size,
|
2010-04-17 05:51:10 +00:00
|
|
|
cached_size->minimum_size,
|
|
|
|
cached_size->natural_size);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-04-11 02:32:55 +00:00
|
|
|
/**
|
|
|
|
* gtk_extended_layout_is_height_for_width:
|
|
|
|
* @layout: a #GtkExtendedLayout instance
|
|
|
|
*
|
|
|
|
* Gets whether the widget prefers a height-for-width layout
|
|
|
|
* or a width-for-height layout
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the widget prefers height-for-width, %FALSE if
|
|
|
|
* the widget should be treated with a width-for-height preference.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
gtk_extended_layout_is_height_for_width (GtkExtendedLayout *layout)
|
|
|
|
{
|
|
|
|
GtkExtendedLayoutIface *iface;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GTK_IS_EXTENDED_LAYOUT (layout), FALSE);
|
|
|
|
|
|
|
|
iface = GTK_EXTENDED_LAYOUT_GET_IFACE (layout);
|
|
|
|
if (iface->is_height_for_width)
|
|
|
|
return iface->is_height_for_width (layout);
|
|
|
|
|
|
|
|
/* By default widgets are height-for-width. */
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
/**
|
|
|
|
* gtk_extended_layout_get_desired_width:
|
|
|
|
* @layout: a #GtkExtendedLayout instance
|
|
|
|
* @minimum_width: location to store the minimum size, or %NULL
|
|
|
|
* @natural_width: location to store the natural size, or %NULL
|
|
|
|
*
|
|
|
|
* Retreives a widget's minimum and natural size in a single dimension.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_extended_layout_get_desired_width (GtkExtendedLayout *layout,
|
|
|
|
gint *minimum_width,
|
|
|
|
gint *natural_width)
|
|
|
|
{
|
2010-04-17 05:51:10 +00:00
|
|
|
compute_size_for_orientation (layout, GTK_SIZE_GROUP_HORIZONTAL, -1, minimum_width, natural_width);
|
2010-04-13 02:21:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_extended_layout_get_desired_height:
|
|
|
|
* @layout: a #GtkExtendedLayout instance
|
|
|
|
* @minimum_width: location to store the minimum size, or %NULL
|
|
|
|
* @natural_width: location to store the natural size, or %NULL
|
|
|
|
*
|
|
|
|
* Retreives a widget's minimum and natural size in a single dimension.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_extended_layout_get_desired_height (GtkExtendedLayout *layout,
|
|
|
|
gint *minimum_height,
|
|
|
|
gint *natural_height)
|
|
|
|
{
|
2010-04-17 05:51:10 +00:00
|
|
|
compute_size_for_orientation (layout, GTK_SIZE_GROUP_VERTICAL, -1, minimum_height, natural_height);
|
2010-04-13 02:21:46 +00:00
|
|
|
}
|
|
|
|
|
2010-04-11 02:32:55 +00:00
|
|
|
|
|
|
|
|
2009-12-02 08:48:42 +00:00
|
|
|
/**
|
|
|
|
* gtk_extended_layout_get_width_for_height:
|
|
|
|
* @layout: a #GtkExtendedLayout instance
|
|
|
|
* @height: the size which is available for allocation
|
|
|
|
* @minimum_size: location for storing the minimum size, or %NULL
|
2010-04-13 02:21:46 +00:00
|
|
|
* @natural_size: location for storing the natural size, or %NULL
|
2009-12-02 08:48:42 +00:00
|
|
|
*
|
2010-04-06 06:47:20 +00:00
|
|
|
* Retreives a widget's desired width if it would be given
|
|
|
|
* the specified @height.
|
2009-12-02 08:48:42 +00:00
|
|
|
*
|
2010-04-06 06:47:20 +00:00
|
|
|
* Since: 3.0
|
2009-12-02 08:48:42 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_extended_layout_get_width_for_height (GtkExtendedLayout *layout,
|
|
|
|
gint height,
|
|
|
|
gint *minimum_width,
|
|
|
|
gint *natural_width)
|
|
|
|
{
|
2010-04-17 05:51:10 +00:00
|
|
|
compute_size_for_orientation (layout, GTK_SIZE_GROUP_HORIZONTAL, height, minimum_width, natural_width);
|
2009-12-02 08:48:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gtk_extended_layout_get_height_for_width:
|
|
|
|
* @layout: a #GtkExtendedLayout instance
|
|
|
|
* @width: the size which is available for allocation
|
|
|
|
* @minimum_size: location for storing the minimum size, or %NULL
|
2010-04-13 02:21:46 +00:00
|
|
|
* @natural_size: location for storing the natural size, or %NULL
|
2009-12-02 08:48:42 +00:00
|
|
|
*
|
2010-04-06 06:47:20 +00:00
|
|
|
* Retreives a widget's desired height if it would be given
|
|
|
|
* the specified @width.
|
2009-12-02 08:48:42 +00:00
|
|
|
*
|
2010-04-06 06:47:20 +00:00
|
|
|
* Since: 3.0
|
2009-12-02 08:48:42 +00:00
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_extended_layout_get_height_for_width (GtkExtendedLayout *layout,
|
|
|
|
gint width,
|
|
|
|
gint *minimum_height,
|
|
|
|
gint *natural_height)
|
|
|
|
{
|
2010-04-17 05:51:10 +00:00
|
|
|
compute_size_for_orientation (layout, GTK_SIZE_GROUP_VERTICAL, width, minimum_height, natural_height);
|
2009-12-02 08:48:42 +00:00
|
|
|
}
|
|
|
|
|
2010-04-13 02:21:46 +00:00
|
|
|
/**
|
|
|
|
* gtk_extended_layout_get_desired_size:
|
|
|
|
* @layout: a #GtkExtendedLayout instance
|
|
|
|
* @width: the size which is available for allocation
|
|
|
|
* @minimum_size: location for storing the minimum size, or %NULL
|
|
|
|
* @natural_size: location for storing the natural size, or %NULL
|
|
|
|
*
|
|
|
|
* Retreives the minimum and natural size of a widget taking
|
|
|
|
* into account the widget's preference for height-for-width management.
|
|
|
|
*
|
|
|
|
* This is used to retreive a suitable size by container widgets whom dont
|
|
|
|
* impose any restrictions on the child placement, examples of these are
|
|
|
|
* #GtkWindow and #GtkScrolledWindow.
|
|
|
|
*
|
|
|
|
* Since: 3.0
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
gtk_extended_layout_get_desired_size (GtkExtendedLayout *layout,
|
|
|
|
GtkRequisition *minimum_size,
|
|
|
|
GtkRequisition *natural_size)
|
|
|
|
{
|
|
|
|
gint min_width, nat_width;
|
|
|
|
gint min_height, nat_height;
|
|
|
|
|
|
|
|
g_return_if_fail (GTK_IS_EXTENDED_LAYOUT (layout));
|
|
|
|
|
|
|
|
if (gtk_extended_layout_is_height_for_width (layout))
|
|
|
|
{
|
|
|
|
gtk_extended_layout_get_desired_width (layout, &min_width, &nat_width);
|
2010-04-18 02:52:27 +00:00
|
|
|
gtk_extended_layout_get_height_for_width (layout, min_width, &min_height, &nat_height);
|
|
|
|
|
|
|
|
#if DEBUG_EXTENDED_LAYOUT
|
|
|
|
g_message ("%s get_desired_size min height: %d for natural width: %d",
|
|
|
|
G_OBJECT_TYPE_NAME (layout),
|
|
|
|
min_height, nat_width);
|
|
|
|
#endif
|
2010-04-13 02:21:46 +00:00
|
|
|
|
|
|
|
/* The minimum size here is the minimum height for the natrual width */
|
|
|
|
if (minimum_size)
|
|
|
|
{
|
2010-04-18 02:52:27 +00:00
|
|
|
minimum_size->width = min_width;
|
2010-04-13 02:21:46 +00:00
|
|
|
minimum_size->height = min_height;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
gtk_extended_layout_get_desired_height (layout, &min_height, &nat_height);
|
2010-04-18 02:52:27 +00:00
|
|
|
gtk_extended_layout_get_height_for_width (layout, min_height, &min_width, &nat_width);
|
|
|
|
|
|
|
|
#if DEBUG_EXTENDED_LAYOUT
|
|
|
|
g_message ("%s get_desired_size min width: %d for natural height: %d",
|
|
|
|
G_OBJECT_TYPE_NAME (layout),
|
|
|
|
min_width, nat_height);
|
|
|
|
#endif
|
2010-04-13 02:21:46 +00:00
|
|
|
|
|
|
|
/* The minimum size here is the minimum width for the natrual height */
|
|
|
|
if (minimum_size)
|
|
|
|
{
|
|
|
|
minimum_size->width = min_width;
|
2010-04-18 02:52:27 +00:00
|
|
|
minimum_size->height = min_height;
|
2010-04-13 02:21:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (natural_size)
|
|
|
|
{
|
|
|
|
natural_size->width = nat_width;
|
|
|
|
natural_size->height = nat_height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-12-02 08:48:42 +00:00
|
|
|
#define __GTK_EXTENDED_LAYOUT_C__
|
|
|
|
#include "gtkaliasdef.c"
|