gimp/app/gui/file-new-dialog.c
Michael Natterer 6eb772946b libgimpwidgets/gimpquerybox.c configure the labels in the message dialog
2003-11-14  Michael Natterer  <mitch@gimp.org>

	* libgimpwidgets/gimpquerybox.c
	* app/widgets/gimpwidgets-utils.c: configure the labels in the
	message dialog and the query boxes to do automatic word wrapping
	to be HIG compliant.

	* app/app_procs.c
	* app/batch.c
	* app/config/gimpconfig-deserialize.c
	* app/config/gimpconfig-path.c
	* app/config/gimpconfig-utils.c
	* app/config/gimpconfigwriter.c
	* app/config/gimpscanner.c
	* app/core/gimpbrush.c
	* app/core/gimpbrushgenerated.c
	* app/core/gimpbrushpipe.c
	* app/core/gimpdatafactory.c
	* app/core/gimpgradient.c
	* app/core/gimpimage-merge.c
	* app/core/gimpimage.c
	* app/core/gimpimagefile.c
	* app/core/gimplayer-floating-sel.c
	* app/core/gimppalette.c
	* app/core/gimppattern.c
	* app/core/gimpselection.c
	* app/display/gimpdisplayshell.c
	* app/file/file-utils.c
	* app/gui/brush-select.c
	* app/gui/dialogs-commands.c
	* app/gui/drawable-commands.c
	* app/gui/edit-commands.c
	* app/gui/file-commands.c
	* app/gui/file-new-dialog.c
	* app/gui/font-select.c
	* app/gui/gradient-select.c
	* app/gui/gui.c
	* app/gui/image-commands.c
	* app/gui/layers-commands.c
	* app/gui/palette-select.c
	* app/gui/palettes-commands.c
	* app/gui/pattern-select.c
	* app/gui/preferences-dialog.c
	* app/gui/select-commands.c
	* app/gui/stroke-dialog.c
	* app/gui/tool-options-menu.c
	* app/gui/vectors-commands.c
	* app/gui/view-commands.c
	* app/plug-in/plug-in-message.c
	* app/plug-in/plug-in.c
	* app/plug-in/plug-ins.c
	* app/text/gimptextlayer-xcf.c
	* app/text/gimptextlayer.c
	* app/tools/gimpcurvestool.c
	* app/tools/gimphuesaturationtool.c
	* app/tools/gimplevelstool.c
	* app/tools/gimptransformtool.c
	* app/vectors/gimpvectors-export.c
	* app/widgets/gimpdatafactoryview.c
	* app/widgets/gimphelp.c
	* app/widgets/gimptemplateview.c
	* app/widgets/gimptooloptionseditor.c
	* app/xcf/xcf.c
	* tools/pdbgen/pdb/image.pdb: removed explicit newlines from
	messages. Reduced number of translatable strings by making many
	file error messages the same. Quote single words and filenames
	with 'foo', not "foo". Replaced some more "drawable" by "layer".
	General message cleanup and consistency check.

	* app/pdb/image_cmds.c: regenerated.
2003-11-14 15:33:40 +00:00

322 lines
9.1 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/gimpcontainermenuimpl.h"
#include "widgets/gimphelp-ids.h"
#include "widgets/gimptemplateeditor.h"
#include "widgets/gimpviewabledialog.h"
#include "file-new-dialog.h"
#include "gimp-intl.h"
#define RESPONSE_RESET 1
typedef struct
{
GtkWidget *dialog;
GtkWidget *confirm_dialog;
GtkWidget *template_menu;
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 (GimpContainerMenu *menu,
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;
GtkWidget *optionmenu;
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_viewable_dialog_new (NULL,
_("New Image"), "gimp-image-new",
GIMP_STOCK_IMAGE,
_("Create a New Image"),
NULL,
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, 4);
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 6);
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), 4);
gtk_box_pack_start (GTK_BOX (main_vbox), table, FALSE, FALSE, 0);
gtk_widget_show (table);
optionmenu = gtk_option_menu_new ();
gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
_("From _Template:"), 1.0, 0.5,
optionmenu, 1, FALSE);
dialog->template_menu = gimp_container_menu_new (gimp->templates, NULL, 16, 0);
gtk_option_menu_set_menu (GTK_OPTION_MENU (optionmenu), dialog->template_menu);
gtk_widget_show (dialog->template_menu);
gimp_container_menu_select_item (GIMP_CONTAINER_MENU (dialog->template_menu),
NULL);
g_signal_connect (dialog->template_menu, "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_menu_select_item (GIMP_CONTAINER_MENU (dialog->template_menu),
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 (GimpContainerMenu *menu,
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_image_new_set_last_template (gimp, template);
g_object_unref (template);
}