
2001-07-24 Michael Natterer <mitch@gimp.org> Port to glib/gtk+ 2.0 episode I (every segfault has it's beginning) * configure.in: require glib/gtk+ >= 1.3.7, commented out the gtkxmhtml stuff. From now on, you will need glib, pango, atk and gtk+ HEAD from CVS to hack or use GIMP HEAD. Beware, it crashes randomly :) * app/core/Makefile.am * app/core/gimpmarshal.list: new file plus rules to generate gimpmarshal.[ch] from it. * app/core/* * app/tools/* * app/widgets/* * libgimpwidgets/*: started to use the glib object system. All core/ objects are still gtk objects however. All signals are created using g_signal_new(). There are many gtk+ artefacts left. Finally, we will _not_ use the gtk_signal_foo() wrappers and friends any more. * app/colormaps.c * app/devices.[ch] * app/disp_callbacks.c * app/errorconsole.c * app/file-save.[ch] * app/interface.c * app/module_db.c * app/nav_window.c * app/ops_buttons.c * app/scroll.c * app/user_install.c * app/gui/about-dialog.c * app/gui/brush-editor.c * app/gui/brushes-commands.c * app/gui/color-notebook.c * app/gui/colormap-dialog.c * app/gui/dialogs-commands.c * app/gui/dialogs-constructors.c * app/gui/file-commands.c * app/gui/file-dialog-utils.c * app/gui/file-new-dialog.c * app/gui/file-open-dialog.[ch] * app/gui/file-save-dialog.c * app/gui/gradient-editor.c * app/gui/gradients-commands.c * app/gui/image-commands.c * app/gui/info-dialog.[ch] * app/gui/layer-select.c * app/gui/layers-commands.c * app/gui/menus.c * app/gui/offset-dialog.c * app/gui/palette-editor.c * app/gui/palettes-commands.c * app/gui/patterns-commands.c * app/gui/preferences-dialog.c * app/gui/resize-dialog.[ch] * app/gui/splash.c * app/gui/tips-dialog.c * app/gui/tool-options-dialog.c * app/gui/toolbox.c * app/gui/tools-commands.c * libgimp/gimpbrushmenu.c * libgimp/gimpmenu.c * libgimp/gimppatternmenu.c * libgimp/gimpui.c * libgimpbase/gimpenv.c: tons and tons of changes like "const gchar*", switch from GdkDeviceInfo to GdkDevice (very incomplete and currently disables), lots of s/gtk_signal/g_signal/, removal/replacement of deprecated stuff, s/GtkSignalFunc/GCallback/ and lots of small changes and fixes while I was on it, zillions of warnings left... * modules/Makefile.am: disabled the water color selector temporarily (XInput issues). * plug-ins/Makefile.am * plug-ins/common/.cvsignore * plug-ins/common/Makefile.am * plug-ins/common/plugin-defs.pl: simply excluded all plug-ins which did not build (including Script-Fu). They are trivial to fix.
84 lines
2.7 KiB
C
84 lines
2.7 KiB
C
/* LIBGIMP - The GIMP Library
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
* Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include "gimp.h"
|
|
#include "gimpui.h"
|
|
|
|
/**
|
|
* gimp_ui_init:
|
|
* @prog_name: The name of the plug-in which will be passed as argv[0] to
|
|
* gtk_init(). It's a convention to use the name of the
|
|
* executable and _not_ the PDB procedure name or something.
|
|
* @preview: #TRUE if the plug-in has some kind of preview in it's UI.
|
|
* Note that passing #TRUE is recommended also if one of the
|
|
* used GIMP Library widgets contains a preview (like the image
|
|
* menu returned by gimp_image_menu_new()).
|
|
*
|
|
* This function initializes GTK+ with gtk_init(), instructs GDK not to
|
|
* use X shared memory if The GIMP was invoked with the --no-xshm command
|
|
* line option and initializes GDK's image rendering subsystem (GdkRGB) to
|
|
* follow the GIMP main program's colormap allocation/installation policy.
|
|
*
|
|
* The GIMP's colormap policy can be determinded by the user with the
|
|
* gimprc variables @min_colors and @install_cmap.
|
|
**/
|
|
void
|
|
gimp_ui_init (const gchar *prog_name,
|
|
gboolean preview)
|
|
{
|
|
gint argc;
|
|
gchar **argv;
|
|
gchar *user_gtkrc;
|
|
|
|
static gboolean initialized = FALSE;
|
|
|
|
g_return_if_fail (prog_name != NULL);
|
|
|
|
if (initialized)
|
|
return;
|
|
|
|
argc = 1;
|
|
argv = g_new (gchar *, 1);
|
|
argv[0] = g_strdup (prog_name);
|
|
|
|
gtk_init (&argc, &argv);
|
|
gtk_rc_parse (gimp_gtkrc ());
|
|
|
|
user_gtkrc = gimp_personal_rc_file ("gtkrc");
|
|
gtk_rc_parse (user_gtkrc);
|
|
g_free (user_gtkrc);
|
|
|
|
/* It's only safe to switch Gdk SHM usage off */
|
|
if (! gimp_use_xshm ())
|
|
gdk_set_use_xshm (FALSE);
|
|
|
|
gdk_rgb_set_min_colors (gimp_min_colors ());
|
|
gdk_rgb_set_install (gimp_install_cmap ());
|
|
|
|
gtk_widget_set_default_colormap (gdk_rgb_get_cmap ());
|
|
|
|
/* Set the gamma after installing the colormap because
|
|
* gtk_preview_set_gamma() initializes GdkRGB if not already done
|
|
*/
|
|
if (preview)
|
|
gtk_preview_set_gamma (gimp_gamma ());
|
|
|
|
initialized = TRUE;
|
|
}
|