1999-09-07 08:03:20 +08:00
|
|
|
|
/*
|
2007-06-06 16:44:52 +08:00
|
|
|
|
* This is a plug-in for GIMP.
|
1999-09-07 08:03:20 +08:00
|
|
|
|
*
|
|
|
|
|
* Generates clickable image maps.
|
|
|
|
|
*
|
2004-09-21 05:14:09 +08:00
|
|
|
|
* Copyright (C) 1998-2004 Maurits Rijk m.rijk@chello.nl
|
1999-09-07 08:03:20 +08:00
|
|
|
|
*
|
|
|
|
|
* 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 2 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
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2001-11-05 10:47:39 +08:00
|
|
|
|
#include "config.h"
|
|
|
|
|
|
2001-12-29 21:26:29 +08:00
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
|
|
2007-01-03 19:05:04 +08:00
|
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
|
|
|
|
|
2003-01-03 04:35:33 +08:00
|
|
|
|
#include "imap_commands.h"
|
1999-09-07 08:03:20 +08:00
|
|
|
|
#include "imap_default_dialog.h"
|
|
|
|
|
#include "imap_main.h"
|
|
|
|
|
#include "imap_rectangle.h"
|
|
|
|
|
#include "imap_table.h"
|
|
|
|
|
|
2001-11-05 10:47:39 +08:00
|
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
|
1999-09-07 08:03:20 +08:00
|
|
|
|
typedef struct {
|
|
|
|
|
DefaultDialog_t *dialog;
|
|
|
|
|
GtkWidget *image_dimensions;
|
|
|
|
|
GtkWidget *guide_bounds;
|
|
|
|
|
GtkWidget *width;
|
|
|
|
|
GtkWidget *height;
|
|
|
|
|
GtkWidget *left;
|
|
|
|
|
GtkWidget *top;
|
|
|
|
|
GtkWidget *horz_spacing;
|
|
|
|
|
GtkWidget *vert_spacing;
|
|
|
|
|
GtkWidget *no_across;
|
|
|
|
|
GtkWidget *no_down;
|
|
|
|
|
GtkWidget *base_url;
|
|
|
|
|
|
|
|
|
|
ObjectList_t *list;
|
|
|
|
|
} GuidesDialog_t;
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
guides_ok_cb(gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GuidesDialog_t *param = (GuidesDialog_t*) data;
|
|
|
|
|
gint y;
|
|
|
|
|
int i, j;
|
|
|
|
|
gint width, height, left, top, hspace, vspace, rows, cols;
|
|
|
|
|
|
|
|
|
|
width = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->width));
|
|
|
|
|
height = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->height));
|
|
|
|
|
left = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->left));
|
|
|
|
|
top = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->top));
|
|
|
|
|
hspace = gtk_spin_button_get_value_as_int(
|
|
|
|
|
GTK_SPIN_BUTTON(param->horz_spacing));
|
|
|
|
|
vspace = gtk_spin_button_get_value_as_int(
|
|
|
|
|
GTK_SPIN_BUTTON(param->vert_spacing));
|
|
|
|
|
rows = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->no_down));
|
|
|
|
|
cols = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->no_across));
|
|
|
|
|
|
1999-10-25 04:57:17 +08:00
|
|
|
|
subcommand_start(_("Create Guides"));
|
1999-09-07 08:03:20 +08:00
|
|
|
|
y = top;
|
|
|
|
|
for (i = 0; i < rows; i++) {
|
|
|
|
|
gint x = left;
|
|
|
|
|
for (j = 0; j < cols; j++) {
|
|
|
|
|
Object_t *obj = create_rectangle(x, y, width, height);
|
|
|
|
|
Command_t *command = create_command_new(param->list, obj);
|
|
|
|
|
|
|
|
|
|
object_set_url(obj, gtk_entry_get_text(GTK_ENTRY(param->base_url)));
|
|
|
|
|
command_execute(command);
|
|
|
|
|
x += width + hspace;
|
|
|
|
|
}
|
|
|
|
|
y += height + vspace;
|
|
|
|
|
}
|
|
|
|
|
subcommand_end();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
recalc_bounds(GtkWidget *widget, gpointer data)
|
|
|
|
|
{
|
|
|
|
|
GuidesDialog_t *param = (GuidesDialog_t*) data;
|
|
|
|
|
gint width, height, left, top, hspace, vspace, rows, cols;
|
|
|
|
|
gint bound_w, bound_h;
|
1999-12-31 02:54:17 +08:00
|
|
|
|
gchar *bounds;
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
|
|
|
|
width = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->width));
|
|
|
|
|
height = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->height));
|
|
|
|
|
left = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->left));
|
|
|
|
|
top = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->top));
|
|
|
|
|
hspace = gtk_spin_button_get_value_as_int(
|
|
|
|
|
GTK_SPIN_BUTTON(param->horz_spacing));
|
|
|
|
|
vspace = gtk_spin_button_get_value_as_int(
|
|
|
|
|
GTK_SPIN_BUTTON(param->vert_spacing));
|
|
|
|
|
rows = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->no_down));
|
|
|
|
|
cols = gtk_spin_button_get_value_as_int(GTK_SPIN_BUTTON(param->no_across));
|
|
|
|
|
|
|
|
|
|
bound_w = (width + hspace) * cols - hspace;
|
|
|
|
|
bound_h = (height + vspace) * rows - vspace;
|
|
|
|
|
|
1999-12-31 02:54:17 +08:00
|
|
|
|
bounds = g_strdup_printf (_("Resulting Guide Bounds: %d,%d to %d,%d (%d areas)"),
|
|
|
|
|
left, top, left + bound_w, top + bound_h, rows * cols);
|
2004-10-25 20:10:13 +08:00
|
|
|
|
if (left + bound_w > get_image_width() ||
|
2003-11-06 23:27:05 +08:00
|
|
|
|
top + bound_h > get_image_height())
|
|
|
|
|
{
|
|
|
|
|
gtk_dialog_set_response_sensitive (GTK_DIALOG (param->dialog->dialog),
|
|
|
|
|
GTK_RESPONSE_OK, FALSE);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
gtk_dialog_set_response_sensitive (GTK_DIALOG (param->dialog->dialog),
|
|
|
|
|
GTK_RESPONSE_OK, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
1999-09-07 08:03:20 +08:00
|
|
|
|
gtk_label_set_text(GTK_LABEL(param->guide_bounds), bounds);
|
1999-12-31 02:54:17 +08:00
|
|
|
|
g_free (bounds);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static GuidesDialog_t*
|
2004-10-25 20:10:13 +08:00
|
|
|
|
make_guides_dialog (void)
|
1999-09-07 08:03:20 +08:00
|
|
|
|
{
|
|
|
|
|
GuidesDialog_t *data = g_new(GuidesDialog_t, 1);
|
|
|
|
|
DefaultDialog_t *dialog;
|
|
|
|
|
GtkWidget *table;
|
|
|
|
|
GtkWidget *label;
|
|
|
|
|
GtkWidget *hbox;
|
2004-10-25 20:10:13 +08:00
|
|
|
|
|
2001-07-23 18:41:16 +08:00
|
|
|
|
dialog = data->dialog = make_default_dialog(_("Create Guides"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
default_dialog_set_ok_cb (dialog, guides_ok_cb, data);
|
|
|
|
|
|
2007-01-03 19:05:04 +08:00
|
|
|
|
hbox = gimp_hint_box_new (
|
2004-10-25 20:10:13 +08:00
|
|
|
|
_("Guides are pre-defined rectangles covering the image. You define "
|
|
|
|
|
"them by their width, height, and spacing from each other. This "
|
|
|
|
|
"allows you to rapidly create the most common image map type - "
|
1999-10-25 04:57:17 +08:00
|
|
|
|
"image collection of \"thumbnails\", suitable for navigation bars."));
|
2007-01-03 19:05:04 +08:00
|
|
|
|
gtk_box_pack_start (GTK_BOX (dialog->vbox), hbox, FALSE, FALSE, 0);
|
|
|
|
|
gtk_widget_show (hbox);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->image_dimensions = gtk_label_new ("");
|
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (data->image_dimensions), 0.0, 0.5);
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (dialog->vbox),
|
|
|
|
|
data->image_dimensions, FALSE, FALSE, 0);
|
|
|
|
|
gtk_widget_show (data->image_dimensions);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->guide_bounds = gtk_label_new ("");
|
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (data->guide_bounds), 0.0, 0.5);
|
|
|
|
|
gtk_box_pack_start (GTK_BOX (dialog->vbox),
|
|
|
|
|
data->guide_bounds, FALSE, FALSE, 0);
|
|
|
|
|
gtk_widget_show (data->guide_bounds);
|
|
|
|
|
|
|
|
|
|
table = default_dialog_add_table (dialog, 4, 4);
|
|
|
|
|
|
|
|
|
|
label = create_label_in_table (table, 0, 0, _("_Width:"));
|
|
|
|
|
data->width = create_spin_button_in_table (table, label, 0, 1, 32, 1, 100);
|
|
|
|
|
g_signal_connect (data->width, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2005-08-23 07:39:12 +08:00
|
|
|
|
label = create_label_in_table(table, 0, 2, _("_Left start at:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->left = create_spin_button_in_table (table, label, 0, 3, 0, 0, 100);
|
|
|
|
|
g_signal_connect (data->left, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2002-06-02 19:49:37 +08:00
|
|
|
|
label = create_label_in_table(table, 1, 0, _("_Height:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->height = create_spin_button_in_table (table, label, 1, 1, 32, 1, 100);
|
|
|
|
|
g_signal_connect (data->height, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2005-08-23 07:39:12 +08:00
|
|
|
|
label = create_label_in_table (table, 1, 2, _("_Top start at:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->top = create_spin_button_in_table (table, label, 1, 3, 0, 0, 100);
|
|
|
|
|
g_signal_connect (data->top, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2005-08-23 07:39:12 +08:00
|
|
|
|
label = create_label_in_table (table, 2, 0, _("_Horz. spacing:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->horz_spacing = create_spin_button_in_table (table, label, 2, 1, 0, 0,
|
|
|
|
|
100);
|
|
|
|
|
g_signal_connect (data->horz_spacing, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2005-08-23 07:39:12 +08:00
|
|
|
|
label = create_label_in_table(table, 2, 2, _("_No. across:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->no_across = create_spin_button_in_table(table, label, 2, 3, 0, 0,
|
2002-06-02 19:49:37 +08:00
|
|
|
|
100);
|
2004-10-25 20:10:13 +08:00
|
|
|
|
g_signal_connect (data->no_across, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2005-08-23 07:39:12 +08:00
|
|
|
|
label = create_label_in_table(table, 3, 0, _("_Vert. spacing:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->vert_spacing = create_spin_button_in_table(table, label, 3, 1, 0, 0,
|
2002-06-02 19:49:37 +08:00
|
|
|
|
100);
|
2004-10-25 20:10:13 +08:00
|
|
|
|
g_signal_connect (data->vert_spacing, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2005-08-23 07:39:12 +08:00
|
|
|
|
label = create_label_in_table(table, 3, 2, _("No. _down:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
data->no_down = create_spin_button_in_table (table, label, 3, 3, 0, 0, 100);
|
|
|
|
|
g_signal_connect (data->no_down, "changed",
|
|
|
|
|
G_CALLBACK(recalc_bounds), (gpointer) data);
|
|
|
|
|
|
|
|
|
|
hbox = gtk_hbox_new (FALSE, 6);
|
|
|
|
|
gtk_container_add (GTK_CONTAINER (dialog->vbox), hbox);
|
|
|
|
|
gtk_widget_show(hbox);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
2002-06-02 19:49:37 +08:00
|
|
|
|
label = gtk_label_new_with_mnemonic(_("Base _URL:"));
|
2004-10-25 20:10:13 +08:00
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
gtk_widget_show(label);
|
2004-10-25 20:10:13 +08:00
|
|
|
|
|
|
|
|
|
data->base_url = gtk_entry_new ();
|
|
|
|
|
gtk_container_add (GTK_CONTAINER(hbox), data->base_url);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
gtk_widget_show(data->base_url);
|
2004-10-25 20:10:13 +08:00
|
|
|
|
|
|
|
|
|
gtk_label_set_mnemonic_widget (GTK_LABEL (label), data->base_url);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
|
|
|
|
return data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
init_guides_dialog(GuidesDialog_t *dialog, ObjectList_t *list)
|
|
|
|
|
{
|
1999-12-31 02:54:17 +08:00
|
|
|
|
gchar *dimension;
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
|
|
|
|
dialog->list = list;
|
2006-02-28 20:31:04 +08:00
|
|
|
|
dimension = g_strdup_printf (_("Image dimensions: %d × %d"),
|
|
|
|
|
get_image_width(),
|
|
|
|
|
get_image_height());
|
|
|
|
|
gtk_label_set_text (GTK_LABEL(dialog->image_dimensions), dimension);
|
1999-12-31 02:54:17 +08:00
|
|
|
|
g_free (dimension);
|
2006-02-28 20:31:04 +08:00
|
|
|
|
gtk_label_set_text (GTK_LABEL(dialog->guide_bounds),
|
|
|
|
|
_("Resulting Guide Bounds: 0,0 to 0,0 (0 areas)"));
|
|
|
|
|
gtk_widget_grab_focus (dialog->width);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2007-02-13 01:30:42 +08:00
|
|
|
|
do_create_guides_dialog_local (ObjectList_t *list)
|
1999-09-07 08:03:20 +08:00
|
|
|
|
{
|
|
|
|
|
static GuidesDialog_t *dialog;
|
|
|
|
|
|
|
|
|
|
if (!dialog)
|
|
|
|
|
dialog = make_guides_dialog();
|
|
|
|
|
|
|
|
|
|
init_guides_dialog(dialog, list);
|
|
|
|
|
default_dialog_show(dialog->dialog);
|
|
|
|
|
}
|
|
|
|
|
|
1999-10-25 04:57:17 +08:00
|
|
|
|
static CmdExecuteValue_t guides_command_execute(Command_t *parent);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
|
|
|
|
|
static CommandClass_t guides_command_class = {
|
|
|
|
|
NULL, /* guides_command_destruct */
|
|
|
|
|
guides_command_execute,
|
|
|
|
|
NULL, /* guides_command_undo */
|
|
|
|
|
NULL /* guides_command_redo */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
Command_t parent;
|
|
|
|
|
ObjectList_t *list;
|
|
|
|
|
} GuidesCommand_t;
|
|
|
|
|
|
|
|
|
|
Command_t*
|
|
|
|
|
guides_command_new(ObjectList_t *list)
|
|
|
|
|
{
|
|
|
|
|
GuidesCommand_t *command = g_new(GuidesCommand_t, 1);
|
|
|
|
|
command->list = list;
|
1999-10-25 04:57:17 +08:00
|
|
|
|
return command_init(&command->parent, _("Guides"), &guides_command_class);
|
1999-09-07 08:03:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
1999-10-25 04:57:17 +08:00
|
|
|
|
static CmdExecuteValue_t
|
1999-09-07 08:03:20 +08:00
|
|
|
|
guides_command_execute(Command_t *parent)
|
|
|
|
|
{
|
|
|
|
|
GuidesCommand_t *command = (GuidesCommand_t*) parent;
|
2007-02-13 01:30:42 +08:00
|
|
|
|
do_create_guides_dialog_local (command->list);
|
1999-10-25 04:57:17 +08:00
|
|
|
|
return CMD_DESTRUCT;
|
1999-09-07 08:03:20 +08:00
|
|
|
|
}
|