2006-12-09 21:33:38 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
2003-11-09 23:24:40 +00:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2003-11-09 23:24:40 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-11-09 23:24:40 +00:00
|
|
|
* (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
|
2009-01-17 22:28:01 +00:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2003-11-09 23:24:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
2007-03-23 09:25:28 +00:00
|
|
|
#include "libgimpcolor/gimpcolor.h"
|
2008-03-26 13:08:31 +00:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2007-03-23 09:25:28 +00:00
|
|
|
|
2003-11-09 23:24:40 +00:00
|
|
|
#include "display-types.h"
|
|
|
|
|
2007-03-23 09:25:28 +00:00
|
|
|
#include "config/gimpdisplayconfig.h"
|
|
|
|
|
2010-08-31 22:29:49 +02:00
|
|
|
#include "widgets/gimpwidgets-utils.h"
|
|
|
|
|
2003-11-09 23:24:40 +00:00
|
|
|
#include "gimpcanvas.h"
|
|
|
|
|
2008-03-18 20:24:49 +00:00
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
2003-11-09 23:24:40 +00:00
|
|
|
|
2010-03-03 17:35:50 +01:00
|
|
|
#define MAX_BATCH_SIZE 32000
|
|
|
|
|
|
|
|
|
2007-03-23 09:25:28 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2008-03-18 20:24:49 +00:00
|
|
|
PROP_CONFIG
|
2007-03-23 09:25:28 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2003-11-09 23:24:40 +00:00
|
|
|
/* local function prototypes */
|
|
|
|
|
2009-11-03 13:58:36 +01:00
|
|
|
static void gimp_canvas_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_canvas_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
|
|
static void gimp_canvas_unrealize (GtkWidget *widget);
|
|
|
|
static void gimp_canvas_style_set (GtkWidget *widget,
|
|
|
|
GtkStyle *prev_style);
|
|
|
|
static gboolean gimp_canvas_focus_in_event (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event);
|
|
|
|
static gboolean gimp_canvas_focus_out_event (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event);
|
2010-06-12 18:39:21 +02:00
|
|
|
static gboolean gimp_canvas_focus (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction);
|
2009-11-03 13:58:36 +01:00
|
|
|
|
|
|
|
static GdkGC * gimp_canvas_gc_new (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style);
|
2003-11-09 23:24:40 +00:00
|
|
|
|
|
|
|
|
2009-10-18 22:19:29 +02:00
|
|
|
G_DEFINE_TYPE (GimpCanvas, gimp_canvas, GIMP_TYPE_OVERLAY_BOX)
|
2005-12-10 19:24:36 +00:00
|
|
|
|
|
|
|
#define parent_class gimp_canvas_parent_class
|
|
|
|
|
2003-11-09 23:24:40 +00:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_class_init (GimpCanvasClass *klass)
|
|
|
|
{
|
2007-03-23 09:25:28 +00:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
2003-11-09 23:24:40 +00:00
|
|
|
GtkWidgetClass *widget_class = GTK_WIDGET_CLASS (klass);
|
|
|
|
|
2009-11-03 13:58:36 +01:00
|
|
|
object_class->set_property = gimp_canvas_set_property;
|
|
|
|
object_class->get_property = gimp_canvas_get_property;
|
2007-03-23 09:25:28 +00:00
|
|
|
|
2009-11-03 13:58:36 +01:00
|
|
|
widget_class->unrealize = gimp_canvas_unrealize;
|
|
|
|
widget_class->style_set = gimp_canvas_style_set;
|
|
|
|
widget_class->focus_in_event = gimp_canvas_focus_in_event;
|
|
|
|
widget_class->focus_out_event = gimp_canvas_focus_out_event;
|
2010-06-12 18:39:21 +02:00
|
|
|
widget_class->focus = gimp_canvas_focus;
|
2007-03-23 09:25:28 +00:00
|
|
|
|
2008-03-18 20:24:49 +00:00
|
|
|
g_object_class_install_property (object_class, PROP_CONFIG,
|
|
|
|
g_param_spec_object ("config", NULL, NULL,
|
|
|
|
GIMP_TYPE_DISPLAY_CONFIG,
|
2007-03-23 09:25:28 +00:00
|
|
|
GIMP_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT_ONLY));
|
2003-11-09 23:24:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_init (GimpCanvas *canvas)
|
|
|
|
{
|
2008-08-21 23:55:58 +00:00
|
|
|
GtkWidget *widget = GTK_WIDGET (canvas);
|
|
|
|
gint i;
|
|
|
|
|
2010-05-02 12:12:48 +02:00
|
|
|
gtk_widget_set_double_buffered (widget, FALSE);
|
2009-10-17 19:51:33 +02:00
|
|
|
gtk_widget_set_can_focus (widget, TRUE);
|
2009-10-18 22:19:29 +02:00
|
|
|
gtk_widget_add_events (widget, GIMP_CANVAS_EVENT_MASK);
|
2008-08-21 23:55:58 +00:00
|
|
|
gtk_widget_set_extension_events (widget, GDK_EXTENSION_EVENTS_ALL);
|
2003-11-10 01:10:46 +00:00
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
for (i = 0; i < GIMP_CANVAS_NUM_STYLES; i++)
|
|
|
|
canvas->gc[i] = NULL;
|
2003-11-09 23:24:40 +00:00
|
|
|
}
|
|
|
|
|
2007-03-23 09:25:28 +00:00
|
|
|
static void
|
|
|
|
gimp_canvas_set_property (GObject *object,
|
2009-10-18 22:19:29 +02:00
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2007-03-23 09:25:28 +00:00
|
|
|
{
|
|
|
|
GimpCanvas *canvas = GIMP_CANVAS (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2008-03-18 20:24:49 +00:00
|
|
|
case PROP_CONFIG:
|
|
|
|
canvas->config = g_value_get_object (value); /* don't dup */
|
2007-03-23 09:25:28 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_canvas_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpCanvas *canvas = GIMP_CANVAS (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
2008-03-18 20:24:49 +00:00
|
|
|
case PROP_CONFIG:
|
|
|
|
g_value_set_object (value, canvas->config);
|
2007-03-23 09:25:28 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-11-09 23:24:40 +00:00
|
|
|
static void
|
|
|
|
gimp_canvas_unrealize (GtkWidget *widget)
|
|
|
|
{
|
|
|
|
GimpCanvas *canvas = GIMP_CANVAS (widget);
|
2003-11-10 19:35:56 +00:00
|
|
|
gint i;
|
2003-11-09 23:24:40 +00:00
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
for (i = 0; i < GIMP_CANVAS_NUM_STYLES; i++)
|
|
|
|
{
|
|
|
|
if (canvas->gc[i])
|
|
|
|
{
|
|
|
|
g_object_unref (canvas->gc[i]);
|
|
|
|
canvas->gc[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
2003-11-10 01:10:46 +00:00
|
|
|
|
2005-03-09 00:23:19 +00:00
|
|
|
if (canvas->layout)
|
|
|
|
{
|
|
|
|
g_object_unref (canvas->layout);
|
|
|
|
canvas->layout = NULL;
|
|
|
|
}
|
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
GTK_WIDGET_CLASS (parent_class)->unrealize (widget);
|
|
|
|
}
|
2003-11-10 01:10:46 +00:00
|
|
|
|
2007-11-14 14:42:05 +00:00
|
|
|
static void
|
|
|
|
gimp_canvas_style_set (GtkWidget *widget,
|
|
|
|
GtkStyle *prev_style)
|
|
|
|
{
|
|
|
|
GimpCanvas *canvas = GIMP_CANVAS (widget);
|
|
|
|
|
2008-03-29 23:43:39 +00:00
|
|
|
GTK_WIDGET_CLASS (parent_class)->style_set (widget, prev_style);
|
2007-11-14 14:42:05 +00:00
|
|
|
|
|
|
|
if (canvas->layout)
|
|
|
|
{
|
|
|
|
g_object_unref (canvas->layout);
|
|
|
|
canvas->layout = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-11-03 13:58:36 +01:00
|
|
|
static gboolean
|
|
|
|
gimp_canvas_focus_in_event (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event)
|
|
|
|
{
|
2009-11-04 19:32:13 +01:00
|
|
|
/* don't allow the default impl to invalidate the whole widget,
|
|
|
|
* we don't draw a focus indicator anyway.
|
|
|
|
*/
|
2009-11-03 13:58:36 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_canvas_focus_out_event (GtkWidget *widget,
|
|
|
|
GdkEventFocus *event)
|
|
|
|
{
|
2009-11-04 19:32:13 +01:00
|
|
|
/* see focus-in-event
|
|
|
|
*/
|
2009-11-03 13:58:36 +01:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2010-06-12 18:39:21 +02:00
|
|
|
static gboolean
|
|
|
|
gimp_canvas_focus (GtkWidget *widget,
|
|
|
|
GtkDirectionType direction)
|
|
|
|
{
|
|
|
|
GtkWidget *focus = gtk_container_get_focus_child (GTK_CONTAINER (widget));
|
|
|
|
|
|
|
|
/* override GtkContainer's focus() implementation which would always
|
|
|
|
* give focus to the canvas because it is focussable. Instead, try
|
|
|
|
* navigating in the focussed overlay child first, and use
|
|
|
|
* GtkContainer's default implementation only if that fails (which
|
2010-06-12 18:46:30 +02:00
|
|
|
* happens when focus navigation leaves the overlay child).
|
2010-06-12 18:39:21 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (focus && gtk_widget_child_focus (focus, direction))
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
return GTK_WIDGET_CLASS (parent_class)->focus (widget, direction);
|
|
|
|
}
|
|
|
|
|
2007-10-25 07:22:49 +00:00
|
|
|
/* Returns: %TRUE if the XOR color is not white */
|
|
|
|
static gboolean
|
|
|
|
gimp_canvas_get_xor_color (GimpCanvas *canvas,
|
|
|
|
GdkColor *color)
|
|
|
|
{
|
2008-03-18 20:24:49 +00:00
|
|
|
guchar r, g, b;
|
2007-10-25 07:22:49 +00:00
|
|
|
|
2008-03-18 20:24:49 +00:00
|
|
|
gimp_rgb_get_uchar (&canvas->config->xor_color, &r, &g, &b);
|
2007-10-25 07:22:49 +00:00
|
|
|
|
|
|
|
color->red = (r << 8) | r;
|
|
|
|
color->green = (g << 8) | g;
|
|
|
|
color->blue = (b << 8) | b;
|
|
|
|
|
|
|
|
return (r != 255 || g != 255 || b != 255);
|
|
|
|
}
|
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
static GdkGC *
|
2003-11-11 14:50:07 +00:00
|
|
|
gimp_canvas_gc_new (GimpCanvas *canvas,
|
2003-11-10 19:35:56 +00:00
|
|
|
GimpCanvasStyle style)
|
|
|
|
{
|
2003-11-11 14:50:07 +00:00
|
|
|
GdkGC *gc;
|
|
|
|
GdkGCValues values;
|
|
|
|
GdkGCValuesMask mask = 0;
|
2007-10-25 07:22:49 +00:00
|
|
|
GdkColor fg = { 0, 0, 0, 0 };
|
|
|
|
GdkColor bg = { 0, 0, 0, 0 };
|
2003-11-10 01:10:46 +00:00
|
|
|
|
2010-04-19 19:21:07 +02:00
|
|
|
if (! gtk_widget_get_realized (GTK_WIDGET (canvas)))
|
2003-11-11 21:35:50 +00:00
|
|
|
return NULL;
|
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
switch (style)
|
|
|
|
{
|
2005-06-24 23:28:38 +00:00
|
|
|
case GIMP_CANVAS_STYLE_XOR_DOTTED:
|
2003-11-11 14:50:07 +00:00
|
|
|
mask |= GDK_GC_LINE_STYLE;
|
|
|
|
values.line_style = GDK_LINE_ON_OFF_DASH;
|
|
|
|
/* fallthrough */
|
2003-11-10 19:35:56 +00:00
|
|
|
|
2003-11-11 14:50:07 +00:00
|
|
|
case GIMP_CANVAS_STYLE_XOR:
|
2004-02-16 12:03:52 +00:00
|
|
|
mask |= GDK_GC_FUNCTION | GDK_GC_CAP_STYLE | GDK_GC_JOIN_STYLE;
|
2007-10-25 07:22:49 +00:00
|
|
|
|
|
|
|
if (gimp_canvas_get_xor_color (canvas, &fg))
|
|
|
|
values.function = GDK_XOR;
|
|
|
|
else
|
|
|
|
values.function = GDK_INVERT;
|
|
|
|
|
2004-02-16 12:03:52 +00:00
|
|
|
values.cap_style = GDK_CAP_NOT_LAST;
|
|
|
|
values.join_style = GDK_JOIN_MITER;
|
|
|
|
break;
|
2003-11-11 14:50:07 +00:00
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
default:
|
2003-11-11 21:35:50 +00:00
|
|
|
return NULL;
|
2003-11-10 19:35:56 +00:00
|
|
|
}
|
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gc = gdk_gc_new_with_values (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
&values, mask);
|
2003-11-11 14:50:07 +00:00
|
|
|
|
2005-06-24 23:28:38 +00:00
|
|
|
if (style == GIMP_CANVAS_STYLE_XOR_DOTTED)
|
|
|
|
{
|
|
|
|
gint8 one = 1;
|
|
|
|
gdk_gc_set_dashes (gc, 0, &one, 1);
|
|
|
|
}
|
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
switch (style)
|
|
|
|
{
|
2003-11-11 14:50:07 +00:00
|
|
|
default:
|
2003-11-15 14:30:26 +00:00
|
|
|
return gc;
|
|
|
|
|
2006-11-23 20:25:17 +00:00
|
|
|
case GIMP_CANVAS_STYLE_XOR_DOTTED:
|
|
|
|
case GIMP_CANVAS_STYLE_XOR:
|
|
|
|
break;
|
2003-11-11 14:50:07 +00:00
|
|
|
}
|
2003-11-10 01:10:46 +00:00
|
|
|
|
2003-11-11 14:50:07 +00:00
|
|
|
gdk_gc_set_rgb_fg_color (gc, &fg);
|
|
|
|
gdk_gc_set_rgb_bg_color (gc, &bg);
|
2003-11-10 01:10:46 +00:00
|
|
|
|
|
|
|
return gc;
|
|
|
|
}
|
|
|
|
|
2003-11-11 21:35:50 +00:00
|
|
|
static inline gboolean
|
|
|
|
gimp_canvas_ensure_style (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style)
|
|
|
|
{
|
|
|
|
return (canvas->gc[style] != NULL ||
|
|
|
|
(canvas->gc[style] = gimp_canvas_gc_new (canvas, style)) != NULL);
|
|
|
|
}
|
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
2003-11-11 21:35:50 +00:00
|
|
|
/**
|
|
|
|
* gimp_canvas_new:
|
|
|
|
*
|
2004-07-16 10:07:30 +00:00
|
|
|
* Creates a new #GimpCanvas widget.
|
2003-11-11 21:35:50 +00:00
|
|
|
*
|
2004-07-16 10:07:30 +00:00
|
|
|
* The #GimpCanvas widget is a #GtkDrawingArea abstraction. It manages
|
2003-11-11 21:35:50 +00:00
|
|
|
* a set of graphic contexts for drawing on a GIMP display. If you
|
|
|
|
* draw using a #GimpCanvasStyle, #GimpCanvas makes sure that the
|
|
|
|
* associated #GdkGC is created. All drawing on the canvas needs to
|
|
|
|
* happen by means of the #GimpCanvas drawing functions. Besides from
|
|
|
|
* not needing a #GdkGC pointer, the #GimpCanvas drawing functions
|
|
|
|
* look and work like their #GdkDrawable counterparts. #GimpCanvas
|
|
|
|
* gracefully handles attempts to draw on the unrealized widget.
|
|
|
|
*
|
|
|
|
* Return value: a new #GimpCanvas widget
|
|
|
|
**/
|
2003-11-09 23:24:40 +00:00
|
|
|
GtkWidget *
|
2008-03-18 20:24:49 +00:00
|
|
|
gimp_canvas_new (GimpDisplayConfig *config)
|
2003-11-09 23:24:40 +00:00
|
|
|
{
|
2008-03-18 20:24:49 +00:00
|
|
|
g_return_val_if_fail (GIMP_IS_DISPLAY_CONFIG (config), NULL);
|
2007-03-23 09:25:28 +00:00
|
|
|
|
2003-11-10 19:35:56 +00:00
|
|
|
return g_object_new (GIMP_TYPE_CANVAS,
|
2008-03-18 20:24:49 +00:00
|
|
|
"name", "gimp-canvas",
|
|
|
|
"config", config,
|
2003-11-10 19:35:56 +00:00
|
|
|
NULL);
|
2003-11-10 01:10:46 +00:00
|
|
|
}
|
|
|
|
|
2004-07-15 23:02:52 +00:00
|
|
|
/**
|
2004-07-16 10:07:30 +00:00
|
|
|
* gimp_canvas_draw_line:
|
2004-07-15 23:02:52 +00:00
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @style: one of the enumerated #GimpCanvasStyle's.
|
|
|
|
* @x1: X coordinate of the first point
|
|
|
|
* @y1: Y coordinate of the first point
|
|
|
|
* @x2: X coordinate of the second point
|
|
|
|
* @y2: Y coordinate of the second point
|
|
|
|
*
|
2004-07-16 10:07:30 +00:00
|
|
|
* Draw a line connecting the specified points, using the specified
|
|
|
|
* style.
|
2004-07-15 23:02:52 +00:00
|
|
|
**/
|
2003-11-10 19:35:56 +00:00
|
|
|
void
|
|
|
|
gimp_canvas_draw_line (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style,
|
|
|
|
gint x1,
|
|
|
|
gint y1,
|
|
|
|
gint x2,
|
|
|
|
gint y2)
|
|
|
|
{
|
2003-11-11 21:35:50 +00:00
|
|
|
if (! gimp_canvas_ensure_style (canvas, style))
|
|
|
|
return;
|
2003-11-10 19:35:56 +00:00
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_draw_line (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
canvas->gc[style],
|
2003-11-11 21:35:50 +00:00
|
|
|
x1, y1, x2, y2);
|
2003-11-10 19:35:56 +00:00
|
|
|
}
|
|
|
|
|
2004-07-15 23:02:52 +00:00
|
|
|
/**
|
2004-07-16 10:07:30 +00:00
|
|
|
* gimp_canvas_draw_lines:
|
2004-07-15 23:02:52 +00:00
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @style: one of the enumerated #GimpCanvasStyle's.
|
|
|
|
* @points: a #GdkPoint array.
|
|
|
|
* @num_points: the number of points in the array.
|
|
|
|
*
|
|
|
|
* Draws a set of lines connecting the specified points, in the
|
2004-07-16 10:07:30 +00:00
|
|
|
* specified style.
|
2004-07-15 23:02:52 +00:00
|
|
|
**/
|
2003-11-10 19:35:56 +00:00
|
|
|
void
|
|
|
|
gimp_canvas_draw_lines (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style,
|
|
|
|
GdkPoint *points,
|
|
|
|
gint num_points)
|
|
|
|
{
|
2003-11-11 21:35:50 +00:00
|
|
|
if (! gimp_canvas_ensure_style (canvas, style))
|
|
|
|
return;
|
2003-11-10 19:35:56 +00:00
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_draw_lines (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
canvas->gc[style],
|
2003-11-11 21:35:50 +00:00
|
|
|
points, num_points);
|
2003-11-10 19:35:56 +00:00
|
|
|
}
|
|
|
|
|
2004-07-15 23:02:52 +00:00
|
|
|
/**
|
|
|
|
* gimp_canvas_draw_rectangle:
|
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @style: one of the enumerated #GimpCanvasStyle's.
|
|
|
|
* @filled: %TRUE if the rectangle is to be filled.
|
|
|
|
* @x: X coordinate of the upper left corner.
|
|
|
|
* @y: Y coordinate of the upper left corner.
|
|
|
|
* @width: width of the rectangle.
|
|
|
|
* @height: height of the rectangle.
|
|
|
|
*
|
2004-07-16 10:07:30 +00:00
|
|
|
* Draws a rectangle in the specified style.
|
2004-07-15 23:02:52 +00:00
|
|
|
**/
|
2003-11-10 19:35:56 +00:00
|
|
|
void
|
|
|
|
gimp_canvas_draw_rectangle (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style,
|
|
|
|
gboolean filled,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
2003-11-11 21:35:50 +00:00
|
|
|
if (! gimp_canvas_ensure_style (canvas, style))
|
|
|
|
return;
|
2003-11-10 19:35:56 +00:00
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_draw_rectangle (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
canvas->gc[style],
|
2003-11-10 19:35:56 +00:00
|
|
|
filled, x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2004-07-15 23:02:52 +00:00
|
|
|
/**
|
|
|
|
* gimp_canvas_draw_arc:
|
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @style: one of the enumerated #GimpCanvasStyle's.
|
|
|
|
* @filled: %TRUE if the arc is to be filled, producing a 'pie slice'.
|
|
|
|
* @x: X coordinate of the left edge of the bounding rectangle.
|
|
|
|
* @y: Y coordinate of the top edge of the bounding rectangle.
|
|
|
|
* @width: width of the bounding rectangle.
|
|
|
|
* @height: height of the bounding rectangle.
|
|
|
|
* @angle1: the start angle of the arc.
|
|
|
|
* @angle2: the end angle of the arc.
|
|
|
|
*
|
2004-07-16 10:07:30 +00:00
|
|
|
* Draws an arc or pie slice, in the specified style.
|
2004-07-15 23:02:52 +00:00
|
|
|
**/
|
2003-11-10 19:35:56 +00:00
|
|
|
void
|
|
|
|
gimp_canvas_draw_arc (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style,
|
|
|
|
gboolean filled,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gint angle1,
|
|
|
|
gint angle2)
|
|
|
|
{
|
2003-11-11 21:35:50 +00:00
|
|
|
if (! gimp_canvas_ensure_style (canvas, style))
|
|
|
|
return;
|
2003-11-10 19:35:56 +00:00
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_draw_arc (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
canvas->gc[style],
|
2003-11-10 19:35:56 +00:00
|
|
|
filled, x, y, width, height, angle1, angle2);
|
|
|
|
}
|
|
|
|
|
2004-07-15 23:02:52 +00:00
|
|
|
/**
|
2004-07-16 10:07:30 +00:00
|
|
|
* gimp_canvas_draw_segments:
|
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @style: one of the enumerated #GimpCanvasStyle's.
|
|
|
|
* @segments: a #GdkSegment array.
|
|
|
|
* @num_segments: the number of segments in the array.
|
2004-07-15 23:02:52 +00:00
|
|
|
*
|
2004-07-16 10:07:30 +00:00
|
|
|
* Draws a set of line segments in the specified style.
|
2004-07-15 23:02:52 +00:00
|
|
|
**/
|
2003-11-10 19:35:56 +00:00
|
|
|
void
|
|
|
|
gimp_canvas_draw_segments (GimpCanvas *canvas,
|
|
|
|
GimpCanvasStyle style,
|
|
|
|
GdkSegment *segments,
|
|
|
|
gint num_segments)
|
|
|
|
{
|
2003-11-11 21:35:50 +00:00
|
|
|
if (! gimp_canvas_ensure_style (canvas, style))
|
|
|
|
return;
|
2003-11-10 19:35:56 +00:00
|
|
|
|
2010-03-03 17:35:50 +01:00
|
|
|
while (num_segments >= MAX_BATCH_SIZE)
|
2004-02-02 18:38:24 +00:00
|
|
|
{
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_draw_segments (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
canvas->gc[style],
|
2010-03-03 17:35:50 +01:00
|
|
|
segments, MAX_BATCH_SIZE);
|
|
|
|
num_segments -= MAX_BATCH_SIZE;
|
|
|
|
segments += MAX_BATCH_SIZE;
|
2004-02-02 18:38:24 +00:00
|
|
|
}
|
2005-03-09 00:23:19 +00:00
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_draw_segments (gtk_widget_get_window (GTK_WIDGET (canvas)),
|
|
|
|
canvas->gc[style],
|
2003-11-10 19:35:56 +00:00
|
|
|
segments, num_segments);
|
|
|
|
}
|
|
|
|
|
2005-03-09 00:23:19 +00:00
|
|
|
/**
|
|
|
|
* gimp_canvas_draw_text:
|
2005-03-23 13:53:31 +00:00
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @format: a standard printf() format string.
|
|
|
|
* @Varargs: the parameters to insert into the format string.
|
2005-03-09 00:23:19 +00:00
|
|
|
*
|
2010-08-12 13:13:15 +02:00
|
|
|
* Returns a layout which can be used for
|
|
|
|
* pango_cairo_show_layout(). The layout belongs to the canvas and
|
|
|
|
* should not be freed, not should a pointer to it be kept around
|
|
|
|
* after drawing.
|
|
|
|
*
|
|
|
|
* Returns: a #PangoLayout owned by the canvas.
|
2005-03-09 00:23:19 +00:00
|
|
|
**/
|
2010-08-12 13:13:15 +02:00
|
|
|
PangoLayout *
|
|
|
|
gimp_canvas_get_layout (GimpCanvas *canvas,
|
|
|
|
const gchar *format,
|
|
|
|
...)
|
2005-03-09 00:23:19 +00:00
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
gchar *text;
|
|
|
|
|
|
|
|
if (! canvas->layout)
|
2005-03-23 13:53:31 +00:00
|
|
|
canvas->layout = gtk_widget_create_pango_layout (GTK_WIDGET (canvas),
|
|
|
|
NULL);
|
2005-03-09 00:23:19 +00:00
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
text = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
|
|
|
|
pango_layout_set_text (canvas->layout, text, -1);
|
|
|
|
g_free (text);
|
|
|
|
|
2010-08-12 13:13:15 +02:00
|
|
|
return canvas->layout;
|
2005-03-09 00:23:19 +00:00
|
|
|
}
|
|
|
|
|
2004-07-15 23:02:52 +00:00
|
|
|
/**
|
|
|
|
* gimp_canvas_set_bg_color:
|
|
|
|
* @canvas: a #GimpCanvas widget
|
|
|
|
* @color: a color in #GimpRGB format
|
|
|
|
*
|
|
|
|
* Sets the background color of the canvas's window. This
|
|
|
|
* is the color the canvas is set to if it is cleared.
|
|
|
|
**/
|
2003-11-11 14:50:07 +00:00
|
|
|
void
|
|
|
|
gimp_canvas_set_bg_color (GimpCanvas *canvas,
|
|
|
|
GimpRGB *color)
|
|
|
|
{
|
|
|
|
GtkWidget *widget = GTK_WIDGET (canvas);
|
|
|
|
GdkColormap *colormap;
|
|
|
|
GdkColor gdk_color;
|
|
|
|
|
2010-04-19 19:21:07 +02:00
|
|
|
if (! gtk_widget_get_realized (widget))
|
2003-11-11 14:50:07 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
gimp_rgb_get_gdk_color (color, &gdk_color);
|
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
colormap = gdk_drawable_get_colormap (gtk_widget_get_window (widget));
|
2003-11-11 14:50:07 +00:00
|
|
|
g_return_if_fail (colormap != NULL);
|
|
|
|
gdk_colormap_alloc_color (colormap, &gdk_color, FALSE, TRUE);
|
|
|
|
|
2009-03-22 16:03:46 +00:00
|
|
|
gdk_window_set_background (gtk_widget_get_window (widget), &gdk_color);
|
2003-11-11 14:50:07 +00:00
|
|
|
}
|