gimp/app/dialogs/image-new-dialog.c
Sven Neumann a8becd6b59 added some GtkSizeGroups and changed spacings to improve the dialog
2004-05-21  Sven Neumann  <sven@gimp.org>

	* app/gui/preferences-dialog.c: added some GtkSizeGroups and
	changed spacings to improve the dialog layout.

	* app/gui/file-new-dialog.c
	* app/widgets/gimpgrideditor.c
	* app/widgets/gimptemplateeditor.c: minor changes for consistency.
2004-05-21 14:17:27 +00:00

311 lines
8.7 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995-1999 Spencer Kimball and Peter Mattis
*
* 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.
*/
#include "config.h"
#include <string.h>
#include <gtk/gtk.h>
#include "libgimpbase/gimpbase.h"
#include "libgimpwidgets/gimpwidgets.h"
#include "gui-types.h"
#include "config/gimpconfig.h"
#include "config/gimpconfig-utils.h"
#include "config/gimpguiconfig.h"
#include "core/gimp.h"
#include "core/gimpimage.h"
#include "core/gimpimage-new.h"
#include "core/gimptemplate.h"
#include "widgets/gimpcontainercombobox.h"
#include "widgets/gimpcontainerview.h"
#include "widgets/gimphelp-ids.h"
#include "widgets/gimptemplateeditor.h"
#include "file-new-dialog.h"
#include "gimp-intl.h"
#define RESPONSE_RESET 1
typedef struct
{
GtkWidget *dialog;
GtkWidget *confirm_dialog;
GtkWidget *combo;
GtkWidget *editor;
Gimp *gimp;
GimpTemplate *template;
} FileNewDialog;
/* local function prototypes */
static void file_new_response (GtkWidget *widget,
gint response_id,
FileNewDialog *dialog);
static void file_new_template_select (GimpContainerView *view,
GimpTemplate *template,
gpointer insert_data,
FileNewDialog *dialog);
static void file_new_confirm_dialog (FileNewDialog *dialog);
static void file_new_create_image (FileNewDialog *dialog);
/* public functions */
GtkWidget *
file_new_dialog_new (Gimp *gimp)
{
FileNewDialog *dialog;
GtkWidget *main_vbox;
GtkWidget *table;
g_return_val_if_fail (GIMP_IS_GIMP (gimp), NULL);
dialog = g_new0 (FileNewDialog, 1);
dialog->gimp = gimp;
dialog->template = g_object_new (GIMP_TYPE_TEMPLATE, NULL);
dialog->dialog = gimp_dialog_new (_("Create a New Image"),
"gimp-image-new",
NULL, 0,
gimp_standard_help_func,
GIMP_HELP_FILE_NEW,
GIMP_STOCK_RESET, RESPONSE_RESET,
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
GTK_STOCK_OK, GTK_RESPONSE_OK,
NULL);
g_signal_connect (dialog->dialog, "response",
G_CALLBACK (file_new_response),
dialog);
g_object_set_data_full (G_OBJECT (dialog->dialog),
"gimp-file-new-dialog", dialog,
(GDestroyNotify) g_free);
gtk_window_set_resizable (GTK_WINDOW (dialog->dialog), FALSE);
/* vbox holding the rest of the dialog */
main_vbox = gtk_vbox_new (FALSE, 12);
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
gtk_box_pack_start (GTK_BOX (GTK_DIALOG (dialog->dialog)->vbox),
main_vbox, TRUE, TRUE, 0);
gtk_widget_show (main_vbox);
table = gtk_table_new (1, 2, FALSE);
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
gtk_box_pack_start (GTK_BOX (main_vbox), table, FALSE, FALSE, 0);
gtk_widget_show (table);
dialog->combo = gimp_container_combo_box_new (gimp->templates, NULL, 16, 0);
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
_("_Template:"), 0.0, 0.5,
dialog->combo, 1, FALSE);
g_signal_connect (dialog->combo, "select_item",
G_CALLBACK (file_new_template_select),
dialog);
/* Template editor */
dialog->editor = gimp_template_editor_new (dialog->template, gimp, FALSE);
gtk_box_pack_start (GTK_BOX (main_vbox), dialog->editor, FALSE, FALSE, 0);
gtk_widget_show (dialog->editor);
return dialog->dialog;
}
void
file_new_dialog_set (GtkWidget *widget,
GimpImage *gimage,
GimpTemplate *template)
{
FileNewDialog *dialog;
g_return_if_fail (GTK_IS_WIDGET (widget));
g_return_if_fail (gimage == NULL || GIMP_IS_IMAGE (gimage));
g_return_if_fail (template == NULL || GIMP_IS_TEMPLATE (template));
dialog = g_object_get_data (G_OBJECT (widget), "gimp-file-new-dialog");
g_return_if_fail (dialog != NULL);
if (template)
{
gimp_container_view_select_item (GIMP_CONTAINER_VIEW (dialog->combo),
GIMP_VIEWABLE (template));
}
else
{
template = gimp_image_new_get_last_template (dialog->gimp, gimage);
gimp_config_sync (GIMP_CONFIG (template),
GIMP_CONFIG (dialog->template), 0);
g_object_unref (template);
}
}
/* private functions */
static void
file_new_response (GtkWidget *widget,
gint response_id,
FileNewDialog *dialog)
{
switch (response_id)
{
case RESPONSE_RESET:
gimp_config_sync (GIMP_CONFIG (dialog->gimp->config->default_image),
GIMP_CONFIG (dialog->template), 0);
break;
case GTK_RESPONSE_OK:
if (dialog->template->initial_size >
GIMP_GUI_CONFIG (dialog->gimp->config)->max_new_image_size)
file_new_confirm_dialog (dialog);
else
file_new_create_image (dialog);
break;
default:
gtk_widget_destroy (dialog->dialog);
break;
}
}
static void
file_new_template_select (GimpContainerView *view,
GimpTemplate *template,
gpointer insert_data,
FileNewDialog *dialog)
{
gchar *comment = NULL;
if (!template)
return;
if (!template->comment || !strlen (template->comment))
comment = g_strdup (dialog->template->comment);
gimp_config_sync (GIMP_CONFIG (template), GIMP_CONFIG (dialog->template), 0);
if (comment)
{
g_object_set (dialog->template,
"comment", comment,
NULL);
g_free (comment);
}
}
/* the confirm dialog */
static void
file_new_confirm_dialog_callback (GtkWidget *widget,
gboolean create,
gpointer data)
{
FileNewDialog *dialog = (FileNewDialog *) data;
dialog->confirm_dialog = NULL;
if (create)
file_new_create_image (dialog);
else
gtk_widget_set_sensitive (dialog->dialog, TRUE);
}
static void
file_new_confirm_dialog (FileNewDialog *dialog)
{
gchar *size_str;
gchar *max_size_str;
gchar *text;
size_str = gimp_memsize_to_string (dialog->template->initial_size);
max_size_str = gimp_memsize_to_string (GIMP_GUI_CONFIG (dialog->gimp->config)->max_new_image_size);
text = g_strdup_printf (_("You are trying to create an image with "
"an initial size of %s.\n\n"
"Choose OK to create this image anyway.\n"
"Choose Cancel if you did not intend to "
"create such a large image.\n\n"
"To prevent this dialog from appearing, "
"increase the \"Maximum Image Size\" "
"setting (currently %s) in the "
"Preferences dialog."),
size_str, max_size_str);
g_free (size_str);
g_free (max_size_str);
dialog->confirm_dialog =
gimp_query_boolean_box (_("Confirm Image Size"),
dialog->dialog,
gimp_standard_help_func,
GIMP_HELP_FILE_NEW_CONFIRM,
GIMP_STOCK_INFO,
text,
GTK_STOCK_OK, GTK_STOCK_CANCEL,
NULL, NULL,
file_new_confirm_dialog_callback,
dialog);
g_free (text);
gtk_window_set_transient_for (GTK_WINDOW (dialog->confirm_dialog),
GTK_WINDOW (dialog->dialog));
gtk_widget_set_sensitive (dialog->dialog, FALSE);
gtk_widget_show (dialog->confirm_dialog);
}
static void
file_new_create_image (FileNewDialog *dialog)
{
GimpTemplate *template;
Gimp *gimp;
template = g_object_ref (dialog->template);
gimp = dialog->gimp;
gtk_widget_destroy (dialog->dialog);
gimp_template_create_image (gimp, template, gimp_get_user_context (gimp));
gimp_image_new_set_last_template (gimp, template);
g_object_unref (template);
}