gimp/app/app_procs.c
Michael Natterer 780b93d96e themes/Default/images/stock-button-stroke.png
2002-02-27  Michael Natterer  <mitch@gimp.org>

	* themes/Default/images/stock-button-stroke.png
	* themes/Default/images/stock-button-to-path.png
	* themes/Default/images/stock-button-to-selection.png: removed.

	* themes/Default/images/stock-button-path-stroke.png
	* themes/Default/images/stock-button-selection-stroke.png
	* themes/Default/images/stock-button-selection-to-path.png: new ones.

	* themes/Default/Makefile.am
	* themes/Default/images/Makefile.am
	* libgimpwidgets/gimpstock.[ch]: changed accordingly.

	* themes/Default/images/stock-button-selection-add.png
	* themes/Default/images/stock-button-selection-intersect.png
	* themes/Default/images/stock-button-selection-replace.png
	* themes/Default/images/stock-button-selection-subtract.png: cropped.

	* themes/Default/images/tools/stock-tool-button-brightness-contrast.png:
	a nicer one from Ville Pätsi.

	* app/gui/menus.c
	* app/widgets/gimpvectorslistview.c: use the new stock items.

	* app/gui/dialogs-commands.c: create the new paths dialog, not the
	old one in dialogs_lc_cmd_callback().

	* app/gui/vectors-commands.c: some more s/Vectors/Path/ in
	user-visible strings.

	* app/app_procs.c: some test code for the filename -> uri migration.
2002-02-27 17:10:42 +00:00

295 lines
6.7 KiB
C

/* The GIMP -- an image manipulation program
* Copyright (C) 1995 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 <stdio.h>
#include <string.h>
#include <stdlib.h>
#ifdef HAVE_SYS_PARAM_H
#include <sys/param.h>
#endif
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <gtk/gtk.h>
#include "libgimpbase/gimpbase.h"
#include "tools/tools-types.h"
#include "base/base.h"
#include "core/gimp.h"
#include "core/gimpdatafactory.h"
#include "core/gimpunit.h"
#include "plug-in/plug-in.h"
#include "file/file-open.h"
#include "display/gimpdisplay-foreach.h"
#include "tools/tool_manager.h"
#include "gui/gui.h"
#include "gui/splash.h"
#include "gui/user-install-dialog.h"
#include "appenv.h"
#include "app_procs.h"
#include "batch.h"
#include "gimprc.h"
#include "undo.h"
#include "libgimp/gimpintl.h"
/* local prototypes */
static void app_init_update_status (const gchar *text1,
const gchar *text2,
gdouble percentage);
static void app_exit_finish (void);
/* global variables */
Gimp *the_gimp = NULL;
/* public functions */
void
app_init (gint gimp_argc,
gchar **gimp_argv)
{
const gchar *gimp_dir;
/* Create an instance of the "Gimp" object which is the root of the
* core object system
*/
the_gimp = gimp_new (be_verbose,
no_data,
no_interface,
stack_trace_mode);
gimp_object_set_name (GIMP_OBJECT (the_gimp), prog_name);
/* Check if the user's gimp_directory exists
*/
gimp_dir = gimp_directory ();
if (!g_file_test (gimp_dir, G_FILE_TEST_IS_DIR))
{
/* not properly installed */
if (no_interface)
{
g_print (_("The GIMP is not properly installed for the current user\n"));
g_print (_("User installation was skipped because the '--nointerface' flag was encountered\n"));
g_print (_("To perform user installation, run the GIMP without the '--nointerface' flag\n"));
}
else
{
user_install_dialog_create (the_gimp);
gtk_main ();
}
}
/* The user_install dialog may have parsed unitrc and gimprc, so
* check gimprc_init()'s return value
*/
if (gimprc_init (the_gimp))
{
/* this needs to be done before gimprc loading */
gimp_unitrc_load (the_gimp);
/* parse the local GIMP configuration file */
gimprc_parse (the_gimp, alternate_system_gimprc, alternate_gimprc);
}
/* initialize lowlevel stuff */
base_init ();
if (! no_interface)
{
gui_themes_init (the_gimp);
if (! no_splash)
splash_create (! no_splash_image);
}
/* Create all members of the global Gimp instance which need an already
* parsed gimprc, e.g. the data factories
*/
gimp_initialize (the_gimp, app_init_update_status);
if (! no_interface)
{
tool_manager_init (the_gimp);
}
/* Load all data files
*/
gimp_restore (the_gimp, app_init_update_status, no_data);
if (! no_interface)
{
gui_init (the_gimp);
}
/* Initialize the plug-in structures
*/
plug_in_init (the_gimp, app_init_update_status);
if (! no_interface)
{
if (! no_splash)
splash_destroy ();
gui_restore (the_gimp, restore_session);
}
/* Parse the rest of the command line arguments as images to load
*/
if (gimp_argc > 0)
{
gchar *current_dir;
gint i;
current_dir = g_get_current_dir ();
for (i = 0; i < gimp_argc; i++)
{
if (gimp_argv[i])
{
gchar *absolute_filename;
if (g_file_test (gimp_argv[i], G_FILE_TEST_IS_REGULAR) &&
! g_path_is_absolute (gimp_argv[i]))
{
absolute_filename = g_build_filename (current_dir,
gimp_argv[i],
NULL);
g_print ("completing relative path: \"%s\" -> \"%s\"\n",
gimp_argv[i], absolute_filename);
}
else
{
absolute_filename = g_strdup (gimp_argv[i]);
}
/* test */
{
GError *error = NULL;
gchar *uri;
uri = g_filename_to_uri (absolute_filename, NULL, &error);
if (uri)
{
g_print ("filename as uri: %s\n", uri);
g_free (uri);
}
else
{
g_printerr ("conversion filename -> uri failed: %s\n",
error->message);
g_error_free (error);
}
}
file_open_with_display (the_gimp, absolute_filename);
g_free (absolute_filename);
}
}
g_free (current_dir);
}
batch_init (the_gimp, batch_cmds);
if (! no_interface)
{
gui_post_init (the_gimp);
}
gimp_main_loop (the_gimp);
}
void
app_exit (gboolean kill_it)
{
/* If it's the user's perogative, and there are dirty images */
if (! kill_it && gdisplays_dirty () && ! no_interface)
gui_really_quit_dialog (G_CALLBACK (app_exit_finish));
else
app_exit_finish ();
}
/* private functions */
static void
app_init_update_status (const gchar *text1,
const gchar *text2,
gdouble percentage)
{
if (! no_interface && ! no_splash)
{
splash_update (text1, text2, percentage);
}
}
static void
app_exit_finish (void)
{
if (! no_interface)
{
gui_shutdown (the_gimp);
}
plug_in_kill ();
if (! no_interface)
{
tool_manager_exit (the_gimp);
gui_exit (the_gimp);
}
gimp_shutdown (the_gimp);
g_object_unref (G_OBJECT (the_gimp));
the_gimp = NULL;
base_exit ();
/* There used to be foo_main_quit() here, but there's a chance
* that foo_main() was never called before we reach this point. --Sven
*/
exit (0);
}