PIKApp/app/dialogs/user-install-dialog.c

159 lines
4.8 KiB
C
Raw Permalink 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
*
* user-install-dialog.c
* Copyright (C) 2000-2006 Michael Natterer and Sven Neumann
*
* 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 <gegl.h>
#include <gtk/gtk.h>
#include "libpikawidgets/pikawidgets.h"
#include "dialogs-types.h"
#include "core/pika-user-install.h"
#include "widgets/pikamessagebox.h"
#include "widgets/pikamessagedialog.h"
#include "user-install-dialog.h"
#include "pika-intl.h"
static GtkWidget * user_install_dialog_new (PikaUserInstall *install);
static void user_install_dialog_log (const gchar *message,
gboolean error,
gpointer data);
gboolean
user_install_dialog_run (PikaUserInstall *install)
{
GtkWidget *dialog;
gboolean success;
g_return_val_if_fail (install != NULL, FALSE);
dialog = user_install_dialog_new (install);
success = pika_user_install_run (install,
gtk_widget_get_scale_factor (dialog));
if (! success)
{
g_signal_connect (dialog, "response",
G_CALLBACK (gtk_main_quit),
NULL);
gtk_widget_show (dialog);
gtk_main ();
}
gtk_widget_destroy (dialog);
return success;
}
static GtkWidget *
user_install_dialog_new (PikaUserInstall *install)
{
GtkWidget *dialog;
GtkWidget *frame;
GtkWidget *scrolled;
GtkTextBuffer *buffer;
GtkWidget *view;
pika_icons_init ();
dialog = pika_message_dialog_new (_("PIKA User Installation"),
PIKA_ICON_MASCOT_EEK,
NULL, 0, NULL, NULL,
_("_Quit"), GTK_RESPONSE_OK,
NULL);
pika_message_box_set_primary_text (PIKA_MESSAGE_DIALOG (dialog)->box,
_("User installation failed!"));
pika_message_box_set_text (PIKA_MESSAGE_DIALOG (dialog)->box,
_("The PIKA user installation failed; "
"see the log for details."));
frame = pika_frame_new (_("Installation Log"));
gtk_container_set_border_width (GTK_CONTAINER (frame), 12);
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dialog))),
frame, TRUE, TRUE, 0);
gtk_widget_show (frame);
scrolled = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled),
GTK_POLICY_AUTOMATIC,
GTK_POLICY_AUTOMATIC);
gtk_container_add (GTK_CONTAINER (frame), scrolled);
gtk_widget_show (scrolled);
buffer = gtk_text_buffer_new (NULL);
gtk_text_buffer_create_tag (buffer, "bold",
"weight", PANGO_WEIGHT_BOLD,
NULL);
view = gtk_text_view_new_with_buffer (buffer);
gtk_text_view_set_editable (GTK_TEXT_VIEW (view), FALSE);
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (view), GTK_WRAP_WORD);
gtk_widget_set_size_request (view, -1, 200);
gtk_container_add (GTK_CONTAINER (scrolled), view);
gtk_widget_show (view);
g_object_unref (buffer);
pika_user_install_set_log_handler (install, user_install_dialog_log, buffer);
return dialog;
}
static void
user_install_dialog_log (const gchar *message,
gboolean error,
gpointer data)
{
GtkTextBuffer *buffer = GTK_TEXT_BUFFER (data);
GtkTextIter cursor;
gtk_text_buffer_get_end_iter (buffer, &cursor);
if (error && message)
{
gtk_text_buffer_insert_with_tags_by_name (buffer, &cursor, message, -1,
"bold", NULL);
}
else if (message)
{
gtk_text_buffer_insert (buffer, &cursor, message, -1);
}
gtk_text_buffer_insert (buffer, &cursor, "\n", -1);
}