gimp/plug-ins/imagemap/imap_toolbar.c

189 lines
6.2 KiB
C
Raw Normal View History

1999-09-07 08:03:20 +08:00
/*
* This is a plug-in for the GIMP.
*
* Generates clickable image maps.
*
* Copyright (C) 1998-1999 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.
*
*/
2000-02-17 16:36:46 +08:00
#include "config.h"
1999-09-07 08:03:20 +08:00
#include "imap_main.h"
#include "imap_misc.h"
#include "imap_toolbar.h"
#include "libgimp/stdplugins-intl.h"
1999-09-07 08:03:20 +08:00
#include "copy.xpm"
#include "cut.xpm"
#include "grid.xpm"
#include "map_info.xpm"
#include "open.xpm"
#include "paste.xpm"
#include "save.xpm"
#include "preferences.xpm"
#include "redo.xpm"
#include "to_back.xpm"
#include "to_front.xpm"
#include "undo.xpm"
#include "zoom_in.xpm"
#include "zoom_out.xpm"
static gboolean _command_lock;
static void
toolbar_command(GtkWidget *widget, gpointer data)
{
if (_command_lock) {
_command_lock = FALSE;
} else {
CommandFactory_t *factory = (CommandFactory_t*) data;
Command_t *command = (*factory)();
command_execute(command);
}
}
static void
paste_buffer_added(Object_t *obj, gpointer data)
{
gtk_widget_set_sensitive((GtkWidget*) data, TRUE);
}
static void
paste_buffer_removed(Object_t *obj, gpointer data)
{
gtk_widget_set_sensitive((GtkWidget*) data, FALSE);
}
static void
command_list_changed(Command_t *command, gpointer data)
{
ToolBar_t *toolbar = (ToolBar_t*) data;
/* Set undo entry */
gtk_widget_set_sensitive(toolbar->undo, (command != NULL));
/* Set redo entry */
command = command_list_get_redo_command();
gtk_widget_set_sensitive(toolbar->redo, (command != NULL));
}
void
toolbar_shapes_selected(ToolBar_t *toolbar, gint count)
{
gint sensitive = (count > 0);
gtk_widget_set_sensitive(toolbar->cut, sensitive);
gtk_widget_set_sensitive(toolbar->copy, sensitive);
gtk_widget_set_sensitive(toolbar->to_front, sensitive);
gtk_widget_set_sensitive(toolbar->to_back, sensitive);
}
ToolBar_t*
make_toolbar(GtkWidget *main_vbox, GtkWidget *window)
{
ToolBar_t *data = g_new(ToolBar_t, 1);
GtkWidget *handlebox, *toolbar, *paste;
handlebox = gtk_handle_box_new();
gtk_box_pack_start(GTK_BOX(main_vbox), handlebox, FALSE, FALSE, 0);
updated for GTK2 build 2001-07-28 Hans Breuer <hans@breuer.org> * */*/makefile.msc : updated for GTK2 build * app/widgets/makefile.msc : (new file) forgot this one last time * plug-ins/common/animationplay.c : reflect that GTK2 has its gdk<x|win32|fb>.h files in the back-end sub directories * plug-ins/common/gif.c : * plug-ins/common/jpeg.c : * plug-ins/dbbrowser/dbbrowser_utils.c : * plug-ins/gap/gap_dbbrowser_utils.c : * plug-ims/gimpressionist/presets.c : * plug-ims/gimpressionist/imap_setting.c : * plug-ims/gimpressionist/imap_source.c : * plug-ims/script-fu/script-fu-console.c : * plug-ims/script-fu/script-fu-scripts.c : #define GTK_ENABLE_BROKEN and include <gtk/gtktext.h> to make them compile/work again * plug-ins/common/spheredesigner.c : gtk_color_selction_set_opacity renamed to gtk_color_selction_set_current_alpha * plug-ins/gflare/gtkmultioptionmenu.c : ported ny removing the virtual draw function and style->xthickness and ythickness via direct access, klass field isn't available anymore * plug-ins/common/nlfilt.c : * plug-ims/gap/gap_movdialog.c : * plug-ims/gimpressionist/gimpressionist.c : gtk_widget_set_default_visible is neither available nor needed anymore * plug-ins/common/plugindetails.c : ported to GtkTextBuffer and reflect gtk_paned api changes * plug-ims/gimpressionist/imap_preview.c : replace GTK_WIDGET(a)->klass access by GTK_WIDGET_GET_CLASS(a) * plug-ims/gimpressionist/imap_selection.c : * plug-ims/gimpressionist/imap_toolbar.c : * plug-ims/gimpressionist/imap_tools.c : gtk_toolbar api changes
2001-07-29 03:40:07 +08:00
data->toolbar = toolbar = gtk_toolbar_new();
gtk_toolbar_set_orientation(GTK_TOOLBAR(toolbar), GTK_ORIENTATION_HORIZONTAL);
1999-09-07 08:03:20 +08:00
gtk_container_set_border_width(GTK_CONTAINER(toolbar), 5);
updated for GTK2 build 2001-07-28 Hans Breuer <hans@breuer.org> * */*/makefile.msc : updated for GTK2 build * app/widgets/makefile.msc : (new file) forgot this one last time * plug-ins/common/animationplay.c : reflect that GTK2 has its gdk<x|win32|fb>.h files in the back-end sub directories * plug-ins/common/gif.c : * plug-ins/common/jpeg.c : * plug-ins/dbbrowser/dbbrowser_utils.c : * plug-ins/gap/gap_dbbrowser_utils.c : * plug-ims/gimpressionist/presets.c : * plug-ims/gimpressionist/imap_setting.c : * plug-ims/gimpressionist/imap_source.c : * plug-ims/script-fu/script-fu-console.c : * plug-ims/script-fu/script-fu-scripts.c : #define GTK_ENABLE_BROKEN and include <gtk/gtktext.h> to make them compile/work again * plug-ins/common/spheredesigner.c : gtk_color_selction_set_opacity renamed to gtk_color_selction_set_current_alpha * plug-ins/gflare/gtkmultioptionmenu.c : ported ny removing the virtual draw function and style->xthickness and ythickness via direct access, klass field isn't available anymore * plug-ins/common/nlfilt.c : * plug-ims/gap/gap_movdialog.c : * plug-ims/gimpressionist/gimpressionist.c : gtk_widget_set_default_visible is neither available nor needed anymore * plug-ins/common/plugindetails.c : ported to GtkTextBuffer and reflect gtk_paned api changes * plug-ims/gimpressionist/imap_preview.c : replace GTK_WIDGET(a)->klass access by GTK_WIDGET_GET_CLASS(a) * plug-ims/gimpressionist/imap_selection.c : * plug-ims/gimpressionist/imap_toolbar.c : * plug-ims/gimpressionist/imap_tools.c : gtk_toolbar api changes
2001-07-29 03:40:07 +08:00
/* FIXME: replacement
1999-09-07 08:03:20 +08:00
gtk_toolbar_set_space_size(GTK_TOOLBAR(toolbar), 8);
updated for GTK2 build 2001-07-28 Hans Breuer <hans@breuer.org> * */*/makefile.msc : updated for GTK2 build * app/widgets/makefile.msc : (new file) forgot this one last time * plug-ins/common/animationplay.c : reflect that GTK2 has its gdk<x|win32|fb>.h files in the back-end sub directories * plug-ins/common/gif.c : * plug-ins/common/jpeg.c : * plug-ins/dbbrowser/dbbrowser_utils.c : * plug-ins/gap/gap_dbbrowser_utils.c : * plug-ims/gimpressionist/presets.c : * plug-ims/gimpressionist/imap_setting.c : * plug-ims/gimpressionist/imap_source.c : * plug-ims/script-fu/script-fu-console.c : * plug-ims/script-fu/script-fu-scripts.c : #define GTK_ENABLE_BROKEN and include <gtk/gtktext.h> to make them compile/work again * plug-ins/common/spheredesigner.c : gtk_color_selction_set_opacity renamed to gtk_color_selction_set_current_alpha * plug-ins/gflare/gtkmultioptionmenu.c : ported ny removing the virtual draw function and style->xthickness and ythickness via direct access, klass field isn't available anymore * plug-ins/common/nlfilt.c : * plug-ims/gap/gap_movdialog.c : * plug-ims/gimpressionist/gimpressionist.c : gtk_widget_set_default_visible is neither available nor needed anymore * plug-ins/common/plugindetails.c : ported to GtkTextBuffer and reflect gtk_paned api changes * plug-ims/gimpressionist/imap_preview.c : replace GTK_WIDGET(a)->klass access by GTK_WIDGET_GET_CLASS(a) * plug-ims/gimpressionist/imap_selection.c : * plug-ims/gimpressionist/imap_toolbar.c : * plug-ims/gimpressionist/imap_tools.c : gtk_toolbar api changes
2001-07-29 03:40:07 +08:00
*/
1999-09-07 08:03:20 +08:00
gtk_container_add(GTK_CONTAINER(handlebox), toolbar);
make_toolbar_icon(toolbar, window, open_xpm, "Open",
1999-10-25 04:57:17 +08:00
_("Open"), toolbar_command, &data->cmd_open);
2000-02-17 16:36:46 +08:00
make_toolbar_icon(toolbar, window, save_xpm, "Save",
_("Save"), toolbar_command, &data->cmd_save);
1999-09-07 08:03:20 +08:00
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
make_toolbar_icon(toolbar, window, preferences_xpm, "Preferences",
1999-10-25 04:57:17 +08:00
_("Preferences"), toolbar_command,
&data->cmd_preferences);
1999-09-07 08:03:20 +08:00
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
data->undo = make_toolbar_icon(toolbar, window, undo_xpm, "Undo",
1999-10-25 04:57:17 +08:00
_("Undo"), toolbar_command, &data->cmd_undo);
1999-09-07 08:03:20 +08:00
gtk_widget_set_sensitive(data->undo, FALSE);
data->redo = make_toolbar_icon(toolbar, window, redo_xpm, "Redo",
1999-10-25 04:57:17 +08:00
_("Redo"), toolbar_command, &data->cmd_redo);
1999-09-07 08:03:20 +08:00
gtk_widget_set_sensitive(data->redo, FALSE);
command_list_add_update_cb(command_list_changed, data);
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
data->cut = make_toolbar_icon(toolbar, window, cut_xpm, "Cut",
1999-10-25 04:57:17 +08:00
_("Cut"), toolbar_command, &data->cmd_cut);
1999-09-07 08:03:20 +08:00
gtk_widget_set_sensitive(data->cut, FALSE);
data->copy = make_toolbar_icon(toolbar, window, copy_xpm, "Copy",
1999-10-25 04:57:17 +08:00
_("Copy"), toolbar_command, &data->cmd_copy);
1999-09-07 08:03:20 +08:00
gtk_widget_set_sensitive(data->copy, FALSE);
paste = make_toolbar_icon(toolbar, window, paste_xpm, "Paste",
1999-10-25 04:57:17 +08:00
_("Paste"), toolbar_command, &data->cmd_paste);
1999-09-07 08:03:20 +08:00
gtk_widget_set_sensitive(paste, FALSE);
paste_buffer_add_add_cb(paste_buffer_added, (gpointer) paste);
paste_buffer_add_remove_cb(paste_buffer_removed, (gpointer) paste);
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
data->zoom_in = make_toolbar_icon(toolbar, window, zoom_in_xpm, "ZoomIn",
1999-10-25 04:57:17 +08:00
_("Zoom in"), toolbar_command,
1999-09-07 08:03:20 +08:00
&data->cmd_zoom_in);
data->zoom_out = make_toolbar_icon(toolbar, window, zoom_out_xpm, "ZoomOut",
1999-10-25 04:57:17 +08:00
_("Zoom out"), toolbar_command,
1999-09-07 08:03:20 +08:00
&data->cmd_zoom_out);
gtk_widget_set_sensitive(data->zoom_out, FALSE);
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
make_toolbar_icon(toolbar, window, map_info_xpm, "EditMapInfo",
1999-10-25 04:57:17 +08:00
_("Edit Map Info"), toolbar_command,
1999-09-07 08:03:20 +08:00
&data->cmd_edit_map_info);
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
data->to_front = make_toolbar_icon(toolbar, window, to_front_xpm, "ToFront",
1999-10-25 04:57:17 +08:00
_("Move To Front"), toolbar_command,
1999-09-07 08:03:20 +08:00
&data->cmd_move_to_front);
gtk_widget_set_sensitive(data->to_front, FALSE);
data->to_back = make_toolbar_icon(toolbar, window, to_back_xpm, "ToBack",
1999-10-25 04:57:17 +08:00
_("Send To Back"), toolbar_command,
1999-09-07 08:03:20 +08:00
&data->cmd_send_to_back);
gtk_widget_set_sensitive(data->to_back, FALSE);
gtk_toolbar_append_space(GTK_TOOLBAR(toolbar));
data->grid = make_toolbar_toggle_icon(toolbar, window, grid_xpm, "Grid",
1999-10-25 04:57:17 +08:00
_("Grid"), toolbar_command,
1999-09-07 08:03:20 +08:00
&data->cmd_grid);
gtk_widget_show(toolbar);
gtk_widget_show(handlebox);
return data;
}
void
toolbar_set_zoom_sensitivity(ToolBar_t *toolbar, gint factor)
{
gtk_widget_set_sensitive(toolbar->zoom_in, factor < 8);
gtk_widget_set_sensitive(toolbar->zoom_out, factor > 1);
}
void
toolbar_set_grid(ToolBar_t *toolbar, gboolean active)
{
_command_lock = TRUE;
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(toolbar->grid), active);
}