Added functionality to create an imagemap using the standard GIMP guides, kindly requested by carol :)
This commit is contained in:
261
plug-ins/imagemap/imap_cmd_gimp_guides.c
Normal file
261
plug-ins/imagemap/imap_cmd_gimp_guides.c
Normal file
@ -0,0 +1,261 @@
|
||||
/*
|
||||
* This is a plug-in for the GIMP.
|
||||
*
|
||||
* Generates clickable image maps.
|
||||
*
|
||||
* Copyright (C) 1998-2002 Maurits Rijk lpeek.mrijk@consunet.nl
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdio.h>
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
#include <libgimp/gimp.h>
|
||||
|
||||
#include "imap_cmd_create.h"
|
||||
#include "imap_default_dialog.h"
|
||||
#include "imap_cmd_gimp_guides.h"
|
||||
#include "imap_main.h"
|
||||
#include "imap_rectangle.h"
|
||||
#include "imap_table.h"
|
||||
|
||||
#include "libgimp/stdplugins-intl.h"
|
||||
|
||||
typedef struct {
|
||||
DefaultDialog_t *dialog;
|
||||
|
||||
ObjectList_t *list;
|
||||
GimpDrawable *drawable;
|
||||
|
||||
GtkWidget *alternate;
|
||||
GtkWidget *all;
|
||||
GtkWidget *left_border;
|
||||
GtkWidget *right_border;
|
||||
GtkWidget *upper_border;
|
||||
GtkWidget *lower_border;
|
||||
GtkWidget *url;
|
||||
} GimpGuidesDialog_t;
|
||||
|
||||
static gint
|
||||
guide_sort_func(gconstpointer a, gconstpointer b)
|
||||
{
|
||||
return GPOINTER_TO_INT(a) - GPOINTER_TO_INT(b);
|
||||
}
|
||||
|
||||
static void
|
||||
gimp_guides_ok_cb(gpointer data)
|
||||
{
|
||||
GimpGuidesDialog_t *param = (GimpGuidesDialog_t*) data;
|
||||
gint guide_num;
|
||||
GSList *hguides, *hg;
|
||||
GSList *vguides, *vg;
|
||||
gboolean all;
|
||||
const gchar *url;
|
||||
gint32 image_ID = gimp_drawable_image(param->drawable->drawable_id);
|
||||
|
||||
/* First get some dialog values */
|
||||
|
||||
all = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(param->all));
|
||||
|
||||
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(param->left_border)))
|
||||
vguides = g_slist_append(NULL, GINT_TO_POINTER(0));
|
||||
else
|
||||
vguides = NULL;
|
||||
|
||||
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(param->right_border)))
|
||||
vguides = g_slist_append(vguides,
|
||||
GINT_TO_POINTER(gimp_image_width(image_ID)));
|
||||
|
||||
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(param->upper_border)))
|
||||
hguides = g_slist_append(NULL, GINT_TO_POINTER(0));
|
||||
else
|
||||
hguides = NULL;
|
||||
|
||||
if (gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(param->lower_border)))
|
||||
hguides = g_slist_append(hguides,
|
||||
GINT_TO_POINTER(gimp_image_height(image_ID)));
|
||||
|
||||
url = gtk_entry_get_text(GTK_ENTRY(param->url));
|
||||
|
||||
/* Next get all the GIMP guides */
|
||||
|
||||
guide_num = gimp_image_find_next_guide(image_ID, 0);
|
||||
|
||||
while (guide_num > 0) {
|
||||
gint position = gimp_image_get_guide_position(image_ID, guide_num);
|
||||
|
||||
if (gimp_image_get_guide_orientation(image_ID, guide_num)
|
||||
== GIMP_HORIZONTAL) {
|
||||
hguides = g_slist_insert_sorted(hguides, GINT_TO_POINTER(position),
|
||||
guide_sort_func);
|
||||
} else { /* GIMP_VERTICAL */
|
||||
vguides = g_slist_insert_sorted(vguides, GINT_TO_POINTER(position),
|
||||
guide_sort_func);
|
||||
}
|
||||
guide_num = gimp_image_find_next_guide(image_ID, guide_num);
|
||||
}
|
||||
|
||||
/* Create the areas */
|
||||
|
||||
subcommand_start(_("Use Gimp Guides"));
|
||||
|
||||
for (hg = hguides; hg && hg->next;
|
||||
hg = (all) ? hg->next : hg->next->next) {
|
||||
gint y = GPOINTER_TO_INT(hg->data);
|
||||
gint height = GPOINTER_TO_INT(hg->next->data) - y;
|
||||
for (vg = vguides; vg && vg->next;
|
||||
vg = (all) ? vg->next : vg->next->next) {
|
||||
gint x = GPOINTER_TO_INT(vg->data);
|
||||
gint width = GPOINTER_TO_INT(vg->next->data) - x;
|
||||
Object_t *obj = create_rectangle(x, y, width, height);
|
||||
Command_t *command = create_command_new(param->list, obj);
|
||||
|
||||
object_set_url(obj, url);
|
||||
command_execute(command);
|
||||
}
|
||||
}
|
||||
|
||||
subcommand_end();
|
||||
redraw_preview();
|
||||
}
|
||||
|
||||
static GimpGuidesDialog_t*
|
||||
make_gimp_guides_dialog(void)
|
||||
{
|
||||
GimpGuidesDialog_t *data = g_new(GimpGuidesDialog_t, 1);
|
||||
DefaultDialog_t *dialog;
|
||||
GtkWidget *table, *frame, *hbox, *vbox;
|
||||
GtkWidget *label;
|
||||
|
||||
dialog = data->dialog = make_default_dialog(_("Use Gimp Guides"));
|
||||
default_dialog_set_ok_cb(dialog, gimp_guides_ok_cb, data);
|
||||
table = default_dialog_add_table(dialog, 3, 2);
|
||||
|
||||
frame = gtk_frame_new(_("Create"));
|
||||
gtk_widget_show(frame);
|
||||
gtk_table_attach_defaults(GTK_TABLE(table), frame, 0, 1, 0, 1);
|
||||
|
||||
hbox = gtk_hbox_new(FALSE, 1);
|
||||
gtk_container_add(GTK_CONTAINER(frame), hbox);
|
||||
gtk_widget_show(hbox);
|
||||
|
||||
data->alternate =
|
||||
gtk_radio_button_new_with_mnemonic_from_widget(NULL, _("Al_ternate"));
|
||||
gtk_box_pack_start(GTK_BOX(hbox), data->alternate, TRUE, TRUE, 10);
|
||||
gtk_widget_show(data->alternate);
|
||||
|
||||
data->all = gtk_radio_button_new_with_mnemonic_from_widget(
|
||||
GTK_RADIO_BUTTON(data->alternate), _("A_ll"));
|
||||
gtk_box_pack_start(GTK_BOX(hbox), data->all, TRUE, TRUE, 10);
|
||||
gtk_widget_show(data->all);
|
||||
|
||||
frame = gtk_frame_new(_("Add Additional Guides"));
|
||||
gtk_widget_show(frame);
|
||||
gtk_table_attach_defaults(GTK_TABLE(table), frame, 0, 1, 1, 2);
|
||||
|
||||
vbox = gtk_vbox_new(FALSE, 1);
|
||||
gtk_container_set_border_width(GTK_CONTAINER(vbox), 10);
|
||||
gtk_container_add(GTK_CONTAINER(frame), vbox);
|
||||
gtk_widget_show(vbox);
|
||||
|
||||
data->left_border = gtk_check_button_new_with_mnemonic(_("L_eft Border"));
|
||||
gtk_container_add(GTK_CONTAINER(vbox), data->left_border);
|
||||
gtk_widget_show(data->left_border);
|
||||
|
||||
data->right_border = gtk_check_button_new_with_mnemonic(_("_Right Border"));
|
||||
gtk_container_add(GTK_CONTAINER(vbox), data->right_border);
|
||||
gtk_widget_show(data->right_border);
|
||||
|
||||
data->upper_border = gtk_check_button_new_with_mnemonic(_("_Upper Border"));
|
||||
gtk_container_add(GTK_CONTAINER(vbox), data->upper_border);
|
||||
gtk_widget_show(data->upper_border);
|
||||
|
||||
data->lower_border = gtk_check_button_new_with_mnemonic(_("Lo_wer Border"));
|
||||
gtk_container_add(GTK_CONTAINER(vbox), data->lower_border);
|
||||
gtk_widget_show(data->lower_border);
|
||||
|
||||
hbox = gtk_hbox_new(FALSE, 1);
|
||||
gtk_container_set_border_width(GTK_CONTAINER(hbox), 10);
|
||||
gtk_table_attach_defaults(GTK_TABLE(table), hbox, 0, 2, 2, 3);
|
||||
gtk_widget_show(hbox);
|
||||
|
||||
label = gtk_label_new_with_mnemonic(_("_Base URL:"));
|
||||
gtk_widget_show(label);
|
||||
gtk_container_add(GTK_CONTAINER(hbox), label);
|
||||
|
||||
data->url = gtk_entry_new();
|
||||
gtk_container_add(GTK_CONTAINER(hbox), data->url);
|
||||
gtk_widget_show(data->url);
|
||||
|
||||
return data;
|
||||
}
|
||||
|
||||
static void
|
||||
init_gimp_guides_dialog(GimpGuidesDialog_t *dialog, ObjectList_t *list,
|
||||
GimpDrawable *drawable)
|
||||
{
|
||||
dialog->list = list;
|
||||
dialog->drawable = drawable;
|
||||
}
|
||||
|
||||
static void
|
||||
do_create_gimp_guides_dialog(ObjectList_t *list, GimpDrawable *drawable)
|
||||
{
|
||||
static GimpGuidesDialog_t *dialog;
|
||||
|
||||
if (!dialog)
|
||||
dialog = make_gimp_guides_dialog();
|
||||
|
||||
init_gimp_guides_dialog(dialog, list, drawable);
|
||||
default_dialog_show(dialog->dialog);
|
||||
}
|
||||
|
||||
static CmdExecuteValue_t gimp_guides_command_execute(Command_t *parent);
|
||||
|
||||
static CommandClass_t gimp_guides_command_class = {
|
||||
NULL, /* guides_command_destruct */
|
||||
gimp_guides_command_execute,
|
||||
NULL, /* guides_command_undo */
|
||||
NULL /* guides_command_redo */
|
||||
};
|
||||
|
||||
typedef struct {
|
||||
Command_t parent;
|
||||
ObjectList_t *list;
|
||||
GimpDrawable *drawable;
|
||||
} GimpGuidesCommand_t;
|
||||
|
||||
Command_t*
|
||||
gimp_guides_command_new(ObjectList_t *list, GimpDrawable *drawable)
|
||||
{
|
||||
GimpGuidesCommand_t *command = g_new(GimpGuidesCommand_t, 1);
|
||||
command->list = list;
|
||||
command->drawable = drawable;
|
||||
return command_init(&command->parent, _("Use Gimp Guides"),
|
||||
&gimp_guides_command_class);
|
||||
}
|
||||
|
||||
static CmdExecuteValue_t
|
||||
gimp_guides_command_execute(Command_t *parent)
|
||||
{
|
||||
GimpGuidesCommand_t *command = (GimpGuidesCommand_t*) parent;
|
||||
do_create_gimp_guides_dialog(command->list, command->drawable);
|
||||
return CMD_DESTRUCT;
|
||||
}
|
||||
Reference in New Issue
Block a user