Files
gimp/plug-ins/imagemap/imap_statusbar.c
Alx Sa f9df980585 plug-ins: Convert custom ImageMap icons to vectors
Adds SVG versions of ImageMap custom
icons and conditionally uses them if
have_vector_icons is enabled. If not, we
fall back to the original PNG icons.
Since ImageMap mixes custom and
stock icons, this keeps the icon size
consistent across the UI.

Per Denis Rangelov, tooltips for the
coordinates and area displays as well
as the shortcut menu were added.

Also, removes a reference to IMAP_ARROW
which no longer applies since that icon
was removed in favor of using the stock
cursor icon.
2024-08-02 00:01:55 +00:00

163 lines
4.8 KiB
C
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* This is a plug-in for GIMP.
*
* Generates clickable image maps.
*
* Copyright (C) 1998-2003 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 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
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include "libgimp/gimp.h"
#include "libgimp/gimpui.h"
#include "imap_icons.h"
#include "imap_statusbar.h"
#include "libgimp/stdplugins-intl.h"
StatusBar_t*
make_statusbar(GtkWidget *main_vbox, GtkWidget *window)
{
StatusBar_t *statusbar = g_new(StatusBar_t, 1);
GtkWidget *hbox, *iconw;
hbox = gtk_box_new (GTK_ORIENTATION_HORIZONTAL, 1);
gtk_box_pack_start(GTK_BOX(main_vbox), hbox, FALSE, FALSE, 0);
/* Status info */
statusbar->status = gtk_statusbar_new();
statusbar->status_id = gtk_statusbar_get_context_id(
GTK_STATUSBAR(statusbar->status), "general_status");
gtk_box_pack_start(GTK_BOX(hbox), statusbar->status, TRUE, TRUE, 0);
gtk_widget_show(statusbar->status);
/* (x, y) coordinate */
iconw = gtk_image_new_from_icon_name (IMAP_COORD,
GTK_ICON_SIZE_SMALL_TOOLBAR);
gtk_widget_set_tooltip_text (iconw, _("Coordinates:"));
gtk_box_pack_start(GTK_BOX(hbox), iconw, FALSE, FALSE, 10);
gtk_widget_show(iconw);
statusbar->xy = gtk_entry_new();
gtk_widget_set_size_request(statusbar->xy, 96, -1);
gtk_editable_set_editable(GTK_EDITABLE(statusbar->xy), FALSE);
gtk_widget_set_can_focus (statusbar->xy, FALSE);
gtk_box_pack_start(GTK_BOX(hbox), statusbar->xy, FALSE, FALSE, 0);
gtk_widget_show(statusbar->xy);
/* Dimension info */
iconw = gtk_image_new_from_icon_name (IMAP_DIMENSION,
GTK_ICON_SIZE_SMALL_TOOLBAR);
gtk_widget_set_tooltip_text (iconw, _("Active Area Size:"));
gtk_box_pack_start (GTK_BOX (hbox), iconw, FALSE, FALSE, 10);
gtk_widget_set_visible (iconw, TRUE);
statusbar->dimension = gtk_entry_new();
gtk_widget_set_size_request(statusbar->dimension, 96, -1);
gtk_editable_set_editable(GTK_EDITABLE(statusbar->dimension), FALSE);
gtk_widget_set_can_focus (statusbar->dimension, FALSE);
gtk_box_pack_start(GTK_BOX(hbox), statusbar->dimension, FALSE, FALSE, 0);
gtk_widget_show(statusbar->dimension);
/* Zoom info */
statusbar->zoom = gtk_statusbar_new();
gtk_widget_set_size_request(statusbar->zoom, 48, -1);
statusbar->zoom_id = gtk_statusbar_get_context_id(
GTK_STATUSBAR(statusbar->zoom), "zoom_status");
gtk_box_pack_start(GTK_BOX(hbox), statusbar->zoom, FALSE, FALSE, 5);
gtk_widget_show(statusbar->zoom);
gtk_widget_show(hbox);
return statusbar;
}
void
statusbar_set_status(StatusBar_t *statusbar, const gchar *format, ...)
{
va_list ap;
char *str;
va_start(ap, format);
str = g_strdup_vprintf (format, ap);
va_end(ap);
statusbar_clear_status(statusbar);
statusbar->message_id =
gtk_statusbar_push(GTK_STATUSBAR(statusbar->status),
statusbar->status_id, str);
g_free (str);
}
void
statusbar_clear_status(StatusBar_t *statusbar)
{
if (statusbar->message_id)
gtk_statusbar_remove(GTK_STATUSBAR(statusbar->status),
statusbar->status_id,
statusbar->message_id);
}
void
statusbar_set_xy(StatusBar_t *statusbar, gint x, gint y)
{
char scratch[16];
sprintf(scratch, "%d, %d", (int) x, (int) y);
gtk_entry_set_text(GTK_ENTRY(statusbar->xy), scratch);
}
void statusbar_clear_xy(StatusBar_t *statusbar)
{
gtk_entry_set_text(GTK_ENTRY(statusbar->xy), "");
}
void
statusbar_set_dimension(StatusBar_t *statusbar, gint w, gint h)
{
gchar scratch[16];
g_snprintf (scratch, sizeof (scratch), "%d × %d", (gint) w, (gint) h);
gtk_entry_set_text(GTK_ENTRY(statusbar->dimension), scratch);
}
void
statusbar_clear_dimension(StatusBar_t *statusbar)
{
gtk_entry_set_text(GTK_ENTRY(statusbar->dimension), "");
}
void
statusbar_set_zoom (StatusBar_t *statusbar,
gint factor)
{
char scratch[16];
if (factor > 0)
sprintf (scratch, "%d:1", factor);
else
sprintf (scratch, "1:%d", ((factor - 2) * -1));
gtk_statusbar_push (GTK_STATUSBAR (statusbar->zoom), statusbar->zoom_id,
scratch);
}