PIKApp/app/widgets/pikaimagecommenteditor.c

256 lines
7.5 KiB
C
Raw Normal View History

2023-09-26 00:35:21 +02:00
/* PIKA - Photo and Image Kooker Application
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
*
* Original copyright, applying to most contents (license remains unchanged):
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* PikaImageCommentEditor
* Copyright (C) 2007 Sven Neumann <sven@gimp.org>
*
* 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 <string.h>
#include <gegl.h>
#include <gtk/gtk.h>
#include "libpikabase/pikabase.h"
#include "libpikawidgets/pikawidgets.h"
#include "widgets-types.h"
#include "config/pikacoreconfig.h"
#include "core/pika.h"
#include "core/pikaimage.h"
#include "core/pikatemplate.h"
#include "pikaimagecommenteditor.h"
#include "pika-intl.h"
#define PIKA_IMAGE_COMMENT_PARASITE "pika-comment"
static void pika_image_comment_editor_update (PikaImageParasiteView *view);
static void pika_image_comment_editor_buffer_changed (GtkTextBuffer *buffer,
PikaImageCommentEditor *editor);
static void pika_image_comment_editor_use_default_comment (GtkWidget *button,
PikaImageCommentEditor *editor);
G_DEFINE_TYPE (PikaImageCommentEditor,
pika_image_comment_editor, PIKA_TYPE_IMAGE_PARASITE_VIEW)
static void
pika_image_comment_editor_class_init (PikaImageCommentEditorClass *klass)
{
PikaImageParasiteViewClass *view_class;
view_class = PIKA_IMAGE_PARASITE_VIEW_CLASS (klass);
view_class->update = pika_image_comment_editor_update;
}
static void
pika_image_comment_editor_init (PikaImageCommentEditor *editor)
{
GtkWidget *vbox;
GtkWidget *scrolled_window;
GtkWidget *text_view;
GtkWidget *button;
/* Init */
editor->recoursing = FALSE;
/* Vbox */
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 0);
gtk_box_pack_start (GTK_BOX (editor), vbox, TRUE, TRUE, 0);
gtk_widget_show (vbox);
/* Scrolled winow */
scrolled_window = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
GTK_POLICY_AUTOMATIC,
GTK_POLICY_AUTOMATIC);
gtk_container_set_border_width (GTK_CONTAINER (scrolled_window), 2);
gtk_box_pack_start (GTK_BOX (vbox), scrolled_window, TRUE, TRUE, 0);
gtk_widget_show (scrolled_window);
/* Text view */
text_view = gtk_text_view_new ();
gtk_text_view_set_editable (GTK_TEXT_VIEW (text_view), TRUE);
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (text_view), GTK_WRAP_WORD);
gtk_text_view_set_pixels_above_lines (GTK_TEXT_VIEW (text_view), 6);
gtk_text_view_set_left_margin (GTK_TEXT_VIEW (text_view), 6);
gtk_text_view_set_right_margin (GTK_TEXT_VIEW (text_view), 6);
gtk_container_add (GTK_CONTAINER (scrolled_window), text_view);
gtk_widget_show (text_view);
/* Button */
button = gtk_button_new_with_mnemonic (_("Use _default comment"));
pika_help_set_help_data (GTK_WIDGET (button),
_("Replace the current image comment with the "
"default comment set in "
"Edit→Preferences→Default Image."),
NULL);
gtk_box_pack_start (GTK_BOX (vbox), button, FALSE, TRUE, 0);
gtk_widget_show (button);
g_signal_connect (button, "clicked",
G_CALLBACK (pika_image_comment_editor_use_default_comment),
editor);
/* Buffer */
editor->buffer = gtk_text_view_get_buffer (GTK_TEXT_VIEW (text_view));
g_signal_connect (editor->buffer, "changed",
G_CALLBACK (pika_image_comment_editor_buffer_changed),
editor);
}
/* public functions */
GtkWidget *
pika_image_comment_editor_new (PikaImage *image)
{
g_return_val_if_fail (PIKA_IS_IMAGE (image), NULL);
return g_object_new (PIKA_TYPE_IMAGE_COMMENT_EDITOR,
"image", image,
"parasite", PIKA_IMAGE_COMMENT_PARASITE,
NULL);
}
/* private functions */
static void
pika_image_comment_editor_update (PikaImageParasiteView *view)
{
PikaImageCommentEditor *editor = PIKA_IMAGE_COMMENT_EDITOR (view);
const PikaParasite *parasite;
if (editor->recoursing)
return;
g_signal_handlers_block_by_func (editor->buffer,
pika_image_comment_editor_buffer_changed,
editor);
parasite = pika_image_parasite_view_get_parasite (view);
if (parasite)
{
gchar *text;
guint32 text_size;
text = (gchar *) pika_parasite_get_data (parasite, &text_size);
text = g_strndup (text, text_size);
if (! g_utf8_validate (text, -1, NULL))
{
gchar *tmp = pika_any_to_utf8 (text, -1, NULL);
g_free (text);
text = tmp;
}
gtk_text_buffer_set_text (editor->buffer, text, -1);
g_free (text);
}
else
{
gtk_text_buffer_set_text (editor->buffer, "", 0);
}
g_signal_handlers_unblock_by_func (editor->buffer,
pika_image_comment_editor_buffer_changed,
editor);
}
static void
pika_image_comment_editor_buffer_changed (GtkTextBuffer *buffer,
PikaImageCommentEditor *editor)
{
PikaImage *image;
gchar *text;
gint len;
GtkTextIter start;
GtkTextIter end;
image =
pika_image_parasite_view_get_image (PIKA_IMAGE_PARASITE_VIEW (editor));
gtk_text_buffer_get_bounds (buffer, &start, &end);
text = gtk_text_buffer_get_text (buffer, &start, &end, FALSE);
len = text ? strlen (text) : 0;
editor->recoursing = TRUE;
if (len > 0)
{
PikaParasite *parasite;
parasite = pika_parasite_new (PIKA_IMAGE_COMMENT_PARASITE,
PIKA_PARASITE_PERSISTENT,
len + 1, text);
pika_image_parasite_attach (image, parasite, TRUE);
pika_parasite_free (parasite);
}
else
{
pika_image_parasite_detach (image, PIKA_IMAGE_COMMENT_PARASITE, TRUE);
}
editor->recoursing = FALSE;
g_free (text);
}
static void
pika_image_comment_editor_use_default_comment (GtkWidget *button,
PikaImageCommentEditor *editor)
{
PikaImage *image;
const gchar *comment = NULL;
image = pika_image_parasite_view_get_image (PIKA_IMAGE_PARASITE_VIEW (editor));
if (image)
{
PikaTemplate *template = image->pika->config->default_image;
comment = pika_template_get_comment (template);
}
if (comment)
gtk_text_buffer_set_text (editor->buffer, comment, -1);
else
gtk_text_buffer_set_text (editor->buffer, "", -1);
}