diff options
Diffstat (limited to '')
-rw-r--r-- | plug-ins/imagemap/imap_statusbar.c | 153 |
1 files changed, 153 insertions, 0 deletions
diff --git a/plug-ins/imagemap/imap_statusbar.c b/plug-ins/imagemap/imap_statusbar.c new file mode 100644 index 0000000..ca4bad8 --- /dev/null +++ b/plug-ins/imagemap/imap_statusbar.c @@ -0,0 +1,153 @@ +/* + * 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_statusbar.h" +#include "imap_stock.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_stock(IMAP_STOCK_COORD, + GTK_ICON_SIZE_SMALL_TOOLBAR); + + 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_stock(IMAP_STOCK_DIMENSION, + GTK_ICON_SIZE_SMALL_TOOLBAR); + gtk_box_pack_start(GTK_BOX(hbox), iconw, FALSE, FALSE, 10); + gtk_widget_show(iconw); + + 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]; + + sprintf(scratch, "1:%d", factor); + gtk_statusbar_push(GTK_STATUSBAR(statusbar->zoom), statusbar->zoom_id, + scratch); +} |