2010-09-25 02:34:21 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpcanvastextcursor.c
|
|
|
|
* Copyright (C) 2010 Michael Natterer <mitch@gimp.org>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-12 05:27:07 +08:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2010-09-25 02:34:21 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gegl.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
|
|
#include "libgimpbase/gimpbase.h"
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
|
|
|
|
#include "display-types.h"
|
|
|
|
|
|
|
|
#include "gimpcanvastextcursor.h"
|
|
|
|
#include "gimpdisplayshell.h"
|
|
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_X,
|
|
|
|
PROP_Y,
|
|
|
|
PROP_WIDTH,
|
|
|
|
PROP_HEIGHT,
|
2018-07-29 12:57:38 +08:00
|
|
|
PROP_OVERWRITE,
|
|
|
|
PROP_DIRECTION
|
2010-09-25 02:34:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct _GimpCanvasTextCursorPrivate GimpCanvasTextCursorPrivate;
|
|
|
|
|
|
|
|
struct _GimpCanvasTextCursorPrivate
|
|
|
|
{
|
2018-07-29 12:57:38 +08:00
|
|
|
gint x;
|
|
|
|
gint y;
|
|
|
|
gint width;
|
|
|
|
gint height;
|
|
|
|
gboolean overwrite;
|
|
|
|
GimpTextDirection direction;
|
2010-09-25 02:34:21 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define GET_PRIVATE(text_cursor) \
|
app, libgimp*, modules: don't use g_type_class_add_private() ...
... and G_TYPE_INSTANCE_GET_PRIVATE()
g_type_class_add_private() and G_TYPE_INSTANCE_GET_PRIVATE() were
deprecated in GLib 2.58. Instead, use
G_DEFINE_[ABSTRACT_]TYPE_WITH_PRIVATE(), and
G_ADD_PRIVATE[_DYNAMIC](), and the implictly-defined
foo_get_instance_private() functions, all of which are available in
the GLib versions we depend on.
This commit only covers types registered using one of the
G_DEFINE_FOO() macros (i.e., most types), but not types with a
custom registration function, of which we still have a few -- GLib
currently only provides a (non-deprecated) public API for adding a
private struct using the G_DEFINE_FOO() macros.
Note that this commit was 99% auto-generated (because I'm not
*that* crazy :), so if there are any style mismatches... we'll have
to live with them for now.
2018-09-19 00:09:39 +08:00
|
|
|
((GimpCanvasTextCursorPrivate *) gimp_canvas_text_cursor_get_instance_private ((GimpCanvasTextCursor *) (text_cursor)))
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
|
2013-04-18 21:45:08 +08:00
|
|
|
static void gimp_canvas_text_cursor_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_canvas_text_cursor_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_canvas_text_cursor_draw (GimpCanvasItem *item,
|
|
|
|
cairo_t *cr);
|
|
|
|
static cairo_region_t * gimp_canvas_text_cursor_get_extents (GimpCanvasItem *item);
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
|
app, libgimp*, modules: don't use g_type_class_add_private() ...
... and G_TYPE_INSTANCE_GET_PRIVATE()
g_type_class_add_private() and G_TYPE_INSTANCE_GET_PRIVATE() were
deprecated in GLib 2.58. Instead, use
G_DEFINE_[ABSTRACT_]TYPE_WITH_PRIVATE(), and
G_ADD_PRIVATE[_DYNAMIC](), and the implictly-defined
foo_get_instance_private() functions, all of which are available in
the GLib versions we depend on.
This commit only covers types registered using one of the
G_DEFINE_FOO() macros (i.e., most types), but not types with a
custom registration function, of which we still have a few -- GLib
currently only provides a (non-deprecated) public API for adding a
private struct using the G_DEFINE_FOO() macros.
Note that this commit was 99% auto-generated (because I'm not
*that* crazy :), so if there are any style mismatches... we'll have
to live with them for now.
2018-09-19 00:09:39 +08:00
|
|
|
G_DEFINE_TYPE_WITH_PRIVATE (GimpCanvasTextCursor, gimp_canvas_text_cursor,
|
|
|
|
GIMP_TYPE_CANVAS_ITEM)
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
#define parent_class gimp_canvas_text_cursor_parent_class
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_text_cursor_class_init (GimpCanvasTextCursorClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpCanvasItemClass *item_class = GIMP_CANVAS_ITEM_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->set_property = gimp_canvas_text_cursor_set_property;
|
|
|
|
object_class->get_property = gimp_canvas_text_cursor_get_property;
|
|
|
|
|
|
|
|
item_class->draw = gimp_canvas_text_cursor_draw;
|
|
|
|
item_class->get_extents = gimp_canvas_text_cursor_get_extents;
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_X,
|
|
|
|
g_param_spec_int ("x", NULL, NULL,
|
|
|
|
-GIMP_MAX_IMAGE_SIZE,
|
|
|
|
GIMP_MAX_IMAGE_SIZE, 0,
|
|
|
|
GIMP_PARAM_READWRITE));
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_Y,
|
|
|
|
g_param_spec_int ("y", NULL, NULL,
|
|
|
|
-GIMP_MAX_IMAGE_SIZE,
|
|
|
|
GIMP_MAX_IMAGE_SIZE, 0,
|
|
|
|
GIMP_PARAM_READWRITE));
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_WIDTH,
|
|
|
|
g_param_spec_int ("width", NULL, NULL,
|
|
|
|
-GIMP_MAX_IMAGE_SIZE,
|
|
|
|
GIMP_MAX_IMAGE_SIZE, 0,
|
|
|
|
GIMP_PARAM_READWRITE));
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_HEIGHT,
|
|
|
|
g_param_spec_int ("height", NULL, NULL,
|
|
|
|
-GIMP_MAX_IMAGE_SIZE,
|
|
|
|
GIMP_MAX_IMAGE_SIZE, 0,
|
|
|
|
GIMP_PARAM_READWRITE));
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_OVERWRITE,
|
|
|
|
g_param_spec_boolean ("overwrite", NULL, NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_READWRITE));
|
|
|
|
|
2018-07-29 12:57:38 +08:00
|
|
|
g_object_class_install_property (object_class, PROP_DIRECTION,
|
|
|
|
g_param_spec_enum ("direction", NULL, NULL,
|
|
|
|
gimp_text_direction_get_type(),
|
|
|
|
GIMP_TEXT_DIRECTION_LTR,
|
|
|
|
GIMP_PARAM_READWRITE));
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_text_cursor_init (GimpCanvasTextCursor *text_cursor)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_text_cursor_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpCanvasTextCursorPrivate *private = GET_PRIVATE (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_X:
|
|
|
|
private->x = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case PROP_Y:
|
|
|
|
private->y = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case PROP_WIDTH:
|
|
|
|
private->width = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case PROP_HEIGHT:
|
|
|
|
private->height = g_value_get_int (value);
|
|
|
|
break;
|
|
|
|
case PROP_OVERWRITE:
|
|
|
|
private->overwrite = g_value_get_boolean (value);
|
|
|
|
break;
|
2018-07-29 12:57:38 +08:00
|
|
|
case PROP_DIRECTION:
|
|
|
|
private->direction = g_value_get_enum (value);
|
|
|
|
break;
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_text_cursor_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpCanvasTextCursorPrivate *private = GET_PRIVATE (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_X:
|
|
|
|
g_value_set_int (value, private->x);
|
|
|
|
break;
|
|
|
|
case PROP_Y:
|
|
|
|
g_value_set_int (value, private->y);
|
|
|
|
break;
|
|
|
|
case PROP_WIDTH:
|
|
|
|
g_value_set_int (value, private->width);
|
|
|
|
break;
|
|
|
|
case PROP_HEIGHT:
|
|
|
|
g_value_set_int (value, private->height);
|
|
|
|
break;
|
|
|
|
case PROP_OVERWRITE:
|
|
|
|
g_value_set_boolean (value, private->overwrite);
|
|
|
|
break;
|
2018-07-29 12:57:38 +08:00
|
|
|
case PROP_DIRECTION:
|
|
|
|
g_value_set_enum (value, private->direction);
|
|
|
|
break;
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-04-18 19:53:42 +08:00
|
|
|
gimp_canvas_text_cursor_transform (GimpCanvasItem *item,
|
|
|
|
gdouble *x,
|
|
|
|
gdouble *y,
|
|
|
|
gdouble *w,
|
|
|
|
gdouble *h)
|
2010-09-25 02:34:21 +08:00
|
|
|
{
|
|
|
|
GimpCanvasTextCursorPrivate *private = GET_PRIVATE (item);
|
|
|
|
|
2013-04-18 19:53:42 +08:00
|
|
|
gimp_canvas_item_transform_xy_f (item,
|
|
|
|
MIN (private->x,
|
|
|
|
private->x + private->width),
|
|
|
|
MIN (private->y,
|
|
|
|
private->y + private->height),
|
|
|
|
x, y);
|
|
|
|
gimp_canvas_item_transform_xy_f (item,
|
|
|
|
MAX (private->x,
|
|
|
|
private->x + private->width),
|
|
|
|
MAX (private->y,
|
|
|
|
private->y + private->height),
|
|
|
|
w, h);
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
*w -= *x;
|
|
|
|
*h -= *y;
|
|
|
|
|
2010-10-03 01:49:59 +08:00
|
|
|
*x = floor (*x) + 0.5;
|
|
|
|
*y = floor (*y) + 0.5;
|
2018-07-29 12:57:38 +08:00
|
|
|
switch (private->direction)
|
|
|
|
{
|
|
|
|
case GIMP_TEXT_DIRECTION_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_RTL:
|
|
|
|
break;
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL_UPRIGHT:
|
|
|
|
*x = *x - *w;
|
|
|
|
break;
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR_UPRIGHT:
|
|
|
|
*y = *y + *h;
|
|
|
|
break;
|
|
|
|
}
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
if (private->overwrite)
|
|
|
|
{
|
2010-10-03 01:49:59 +08:00
|
|
|
*w = ceil (*w) - 1.0;
|
|
|
|
*h = ceil (*h) - 1.0;
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-29 12:57:38 +08:00
|
|
|
switch (private->direction)
|
|
|
|
{
|
|
|
|
case GIMP_TEXT_DIRECTION_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_RTL:
|
|
|
|
*w = 0;
|
|
|
|
*h = ceil (*h) - 1.0;
|
|
|
|
break;
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL_UPRIGHT:
|
|
|
|
*w = ceil (*w) - 1.0;
|
|
|
|
*h = 0;
|
|
|
|
break;
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR_UPRIGHT:
|
|
|
|
*w = ceil (*w) - 1.0;
|
|
|
|
*h = 0;
|
|
|
|
break;
|
|
|
|
}
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2013-04-18 21:45:08 +08:00
|
|
|
gimp_canvas_text_cursor_draw (GimpCanvasItem *item,
|
|
|
|
cairo_t *cr)
|
2010-09-25 02:34:21 +08:00
|
|
|
{
|
|
|
|
GimpCanvasTextCursorPrivate *private = GET_PRIVATE (item);
|
|
|
|
gdouble x, y;
|
|
|
|
gdouble w, h;
|
|
|
|
|
2013-04-18 19:53:42 +08:00
|
|
|
gimp_canvas_text_cursor_transform (item, &x, &y, &w, &h);
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
if (private->overwrite)
|
|
|
|
{
|
|
|
|
cairo_rectangle (cr, x, y, w, h);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-29 12:57:38 +08:00
|
|
|
switch (private->direction)
|
|
|
|
{
|
|
|
|
case GIMP_TEXT_DIRECTION_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_RTL:
|
|
|
|
cairo_move_to (cr, x, y);
|
|
|
|
cairo_line_to (cr, x, y + h);
|
|
|
|
|
|
|
|
cairo_move_to (cr, x - 3.0, y);
|
|
|
|
cairo_line_to (cr, x + 3.0, y);
|
|
|
|
|
|
|
|
cairo_move_to (cr, x - 3.0, y + h);
|
|
|
|
cairo_line_to (cr, x + 3.0, y + h);
|
|
|
|
break;
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL_UPRIGHT:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR_UPRIGHT:
|
|
|
|
cairo_move_to (cr, x, y);
|
|
|
|
cairo_line_to (cr, x + w, y);
|
|
|
|
|
|
|
|
cairo_move_to (cr, x, y - 3.0);
|
|
|
|
cairo_line_to (cr, x, y + 3.0);
|
|
|
|
|
|
|
|
cairo_move_to (cr, x + w, y - 3.0);
|
|
|
|
cairo_line_to (cr, x + w, y + 3.0);
|
|
|
|
break;
|
|
|
|
}
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
|
2010-10-01 20:54:53 +08:00
|
|
|
_gimp_canvas_item_stroke (item, cr);
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
|
2010-10-19 01:59:13 +08:00
|
|
|
static cairo_region_t *
|
2013-04-18 21:45:08 +08:00
|
|
|
gimp_canvas_text_cursor_get_extents (GimpCanvasItem *item)
|
2010-09-25 02:34:21 +08:00
|
|
|
{
|
|
|
|
GimpCanvasTextCursorPrivate *private = GET_PRIVATE (item);
|
2011-04-11 00:15:16 +08:00
|
|
|
cairo_rectangle_int_t rectangle;
|
2010-09-25 02:34:21 +08:00
|
|
|
gdouble x, y;
|
|
|
|
gdouble w, h;
|
|
|
|
|
2013-04-18 19:53:42 +08:00
|
|
|
gimp_canvas_text_cursor_transform (item, &x, &y, &w, &h);
|
2010-09-25 02:34:21 +08:00
|
|
|
|
|
|
|
if (private->overwrite)
|
|
|
|
{
|
|
|
|
rectangle.x = floor (x - 1.5);
|
|
|
|
rectangle.y = floor (y - 1.5);
|
|
|
|
rectangle.width = ceil (w + 3.0);
|
|
|
|
rectangle.height = ceil (h + 3.0);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-07-29 12:57:38 +08:00
|
|
|
switch (private->direction)
|
|
|
|
{
|
|
|
|
case GIMP_TEXT_DIRECTION_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_RTL:
|
|
|
|
rectangle.x = floor (x - 4.5);
|
|
|
|
rectangle.y = floor (y - 1.5);
|
|
|
|
rectangle.width = ceil (9.0);
|
|
|
|
rectangle.height = ceil (h + 3.0);
|
|
|
|
break;
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_RTL_UPRIGHT:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR:
|
|
|
|
case GIMP_TEXT_DIRECTION_TTB_LTR_UPRIGHT:
|
|
|
|
rectangle.x = floor (x - 1.5);
|
|
|
|
rectangle.y = floor (y - 4.5);
|
|
|
|
rectangle.width = ceil (w + 3.0);
|
|
|
|
rectangle.height = ceil (9.0);
|
|
|
|
break;
|
|
|
|
}
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
|
2011-04-11 00:15:16 +08:00
|
|
|
return cairo_region_create_rectangle (&rectangle);
|
2010-09-25 02:34:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
GimpCanvasItem *
|
2010-10-01 20:13:45 +08:00
|
|
|
gimp_canvas_text_cursor_new (GimpDisplayShell *shell,
|
|
|
|
PangoRectangle *cursor,
|
2018-07-29 12:57:38 +08:00
|
|
|
gboolean overwrite,
|
|
|
|
GimpTextDirection direction)
|
2010-09-25 02:34:21 +08:00
|
|
|
{
|
2010-10-01 20:13:45 +08:00
|
|
|
g_return_val_if_fail (GIMP_IS_DISPLAY_SHELL (shell), NULL);
|
|
|
|
g_return_val_if_fail (cursor != NULL, NULL);
|
|
|
|
|
2010-09-25 02:34:21 +08:00
|
|
|
return g_object_new (GIMP_TYPE_CANVAS_TEXT_CURSOR,
|
2010-10-01 20:13:45 +08:00
|
|
|
"shell", shell,
|
2010-09-25 02:34:21 +08:00
|
|
|
"x", cursor->x,
|
|
|
|
"y", cursor->y,
|
|
|
|
"width", cursor->width,
|
|
|
|
"height", cursor->height,
|
|
|
|
"overwrite", overwrite,
|
2018-07-29 12:57:38 +08:00
|
|
|
"direction", direction,
|
2010-09-25 02:34:21 +08:00
|
|
|
NULL);
|
|
|
|
}
|