- 28 May, 2002 8 commits
-
-
Sven Neumann authored
2002-05-28 Sven Neumann <sven@gimp.org> * app/config/gimpconfig-types.c: derive GIMP_TYPE_MEMSIZE from G_TYPE_ULONG. Should probably be even G_TYPE_UINT64 but we use strtol which can only handles unsigned long int. * app/config/gimpbaseconfig.[ch] * app/config/gimpguiconfig.[ch]: changed accordingly. * app/config/test-config.c: use gimp_config_serialize_value() to dump changed values to stdout.
-
Michael Natterer authored
2002-05-28 Michael Natterer <mitch@gimp.org> * app/core/gimpcontext.c: override GObjectClass->constructor() and do the setup stuff there, not in gimp_context_new(). This way we can create properly initialized contexts with g_object_new(). * app/widgets/gimpdeviceinfo.c: Removed the "gimp" property again. Added a constructor() implementation and moved stuff there from gimp_device_info_set_property(PROP_GIMP). * app/config/gimpconfig-deserialize.c: made deserialization of value arrays work by actually using the array any not just leaking it ;) * app/core/gimpcontainer.c: removed debugging output. Call config_iface->deserialize(child, ...) again instead of calling gimp_config_deserialize_properties() directly. * app/widgets/gimpdevices.c: switch to using the new stuff for devicerc. * app/widgets/gimpdeviceinfo.[ch] * app/widgets/gimpdevices.[ch] * app/gimprc.c: removed all old gimprc-style devicerc stuff. * app/gui/menus.c * app/gui/test-commands.[ch]: removed devicerc testing entries and callbacks.
-
Sven Neumann authored
-
Sven Neumann authored
2002-05-28 Sven Neumann <sven@gimp.org> * autogen.sh: simplified by using a function for version checks.
-
Sven Neumann authored
2002-05-28 Sven Neumann <sven@gimp.org> * NEWS: updated. * plug-ins/common/jpeg.c (background_jpeg_save): cast stat.st_size to gint to avoid compiler warning with large file support. This will fail for JPEG files > 2GB but I doubt this is a real problem.
-
Ole Laursen authored
2002-05-28 Ole Laursen <olau@hardworking.dk> * da.po: Updated Danish translation.
-
Sven Neumann authored
2002-05-28 Sven Neumann <sven@gimp.org> * configure.in (AC_OUTPUT): fixed dist target by commenting out plug-ins/tools/common since it's also commented out in the Makefile in plug-ins/tools. Fixed broken check for sendmail. * plug-ins/common/mail.c: use the SENDMAIL define from config.h.
-
Sven Neumann authored
2002-05-28 Sven Neumann <sven@gimp.org> * configure.in (AC_OUTPUT): fixed dist target by commenting out plug-ins/tools/common since it's also commented out in the Makefile in plug-ins/tools.
-
- 27 May, 2002 13 commits
-
-
Sven Neumann authored
2002-05-28 Sven Neumann <sven@gimp.org> * autogen.sh: cleaned up, nicer output.
-
Sven Neumann authored
-
Sven Neumann authored
2002-05-27 Sven Neumann <sven@gimp.org> * app/config/gimpconfig.c (gimp_config_serialize): fixed error code and improved error messages.
-
Maurits Rijk authored
-
Maurits Rijk authored
-
Michael Natterer authored
2002-05-27 Michael Natterer <mitch@gimp.org> * libgimpwidgets/gimpsizeentry.c (gimp_size_entry_attach_label): set the spinbutton which is attached right of the label as mnemonic_widget for the label.
-
Sven Neumann authored
2002-05-27 Sven Neumann <sven@gimp.org> * POTFILES.in: updated.
-
Michael Natterer authored
2002-05-27 Michael Natterer <mitch@gimp.org> * app/config/gimpconfig.[ch]: added "gint nest_level" to the deserialization functions, so nested calls to deserialize() don't error on the trailing ')'. Made the scanner config parse one-character identifiers and allow G_CSET_A_2_Z for all identifiers. Added gimp_config_deserialize_return() because returning the correct return value from a deserialize() function is not trivial any more with nested calls. * app/config/gimpconfig-deserialize.[ch] * app/config/gimprc.c * app/core/gimpdocumentlist.c * app/core/gimpparasitelist.c: use the new return value utility function and made the main parsing loops simpler. * app/core/gimpunits.c: made the main parsing loops consistent with the stuff that uses GimpConfig. * app/config/gimpconfig-deserialize.c * app/config/gimpconfig-serialize.c: call the (de)serialize_property() functions only if the property's class implements the method itself (does *not* inherit it from one of it's parents). * app/core/gimpcontainer.c: implemented deserialization of containers. For each child entry encountered in the input, check if it's already contained in the container and create it if not. If a "gimp" pointer is passed as user_data pass it as construct property to g_object_new() when creating the object. * app/core/gimpcontext.c: changed deserialization of brush, pattern etc. to honor "no_data". * app/widgets/gimpdeviceinfo.c: added a "gimp" construct_only property which overrides GimpContext's "gimp" property. Moved all initialisation code from gimp_device_info_new() to gimp_device_info_set_property(PROP_GIMP) so it is properly performed if the object is created by GimpContainer's deserialize() implementation. * app/widgets/gimpdevices.c: made gimp_devices_restore_test() work.
-
Sven Neumann authored
2002-05-27 Sven Neumann <sven@gimp.org> * configure.in: restructured, added lots of comments. Reenabled build of gimp-remote. * app/main.c: output name and version with usage information. * docs/Makefile.am: install the gimp-remote-1.3 man-page. * tools/Makefile.am: link gimp-remote-1.3 to gimp-remote if enable-default-binary was choosen at configure time. * tools/gimp-remote.c: make it start gimp-1.3 if called with the --new command-line option. Still the same bad hack as in 1.2 :-(
-
Michael Natterer authored
2002-05-27 Michael Natterer <mitch@gimp.org> * app/widgets/gimpchannellistview.c * app/widgets/gimpcomponentlistitem.c: kindof fixed the channel dialog's component items. Had to disable keyboard navigation because GtkList is horribly broken with GTK_SELECTION_MULTIPLE. Left in lots of #if 0'ed stuff because this is not the final solution...
-
Sven Neumann authored
2002-05-27 Sven Neumann <sven@gimp.org> * app/core/gimpimagefile.c: "%lld" is not a portable format string, cast to gint64 and use G_GINT64_FORMAT instead.
-
Michael Natterer authored
2002-05-27 Michael Natterer <mitch@gimp.org> * app/core/gimpimagefile.c: use "%lld" when printing or parsing file sizes because AC_SYS_LARGEFILE makes off_t a long long.
-
Sven Neumann authored
-
- 26 May, 2002 4 commits
-
-
Sven Neumann authored
2002-05-27 Sven Neumann <sven@gimp.org> * HACKING * autogen.sh * configure.in: added AC_SYS_LARGEFILE as a first prerequisite to handle bug #74478 (cannot handle swap size of 2GB). This requires autoconf-2.52. * acconfig.h: removed since it is now obsolete.
-
Kwok-Koon Cheung authored
-
Sven Neumann authored
2002-05-26 Sven Neumann <sven@gimp.org> * plug-ins/helpbrowser/helpbrowser.c: made Forward button work.
-
Chyla Zbigniew authored
-
- 25 May, 2002 3 commits
-
-
Maurits Rijk authored
-
Maurits Rijk authored
-
Sven Neumann authored
2002-05-25 Sven Neumann <sven@gimp.org> * NEWS: updated. * plug-ins/helpbrowser/helpbrowser.c * plug-ins/helpbrowser/queue.[ch]: simplified user interface and code. Still work in progress...
-
- 24 May, 2002 12 commits
-
-
Sven Neumann authored
2002-05-24 Sven Neumann <sven@gimp.org> * plug-ins/script-fu/script-fu-scripts.c: a first start at cleaning up the Script-Fu user interface.
-
Chyla Zbigniew authored
-
Michael Natterer authored
2002-05-24 Michael Natterer <mitch@gimp.org> * app/config/gimpconfig-deserialize.c: added deserialization of GValueArrays (untested). Added gimp_config_deserialize_value() which is factored out from gimp_config_deserialize_property().
-
Sven Neumann authored
2002-05-24 Sven Neumann <sven@gimp.org> * plug-ins/FractalExplorer/Dialogs.c * plug-ins/common/CML_explorer.c * plug-ins/common/convmatrix.c * plug-ins/common/curve_bend.c * plug-ins/common/film.c * plug-ins/common/iwarp.c * plug-ins/common/sample_colorize.c * plug-ins/common/spheredesigner.c * plug-ins/common/tileit.c * plug-ins/fp/fp_gtk.c * plug-ins/gfig/gfig.c * plug-ins/gimpressionist/preview.c * plug-ins/ifscompose/ifscompose.c * plug-ins/sel2path/sel2path.c: make use of stock labels.
-
Maurits Rijk authored
-
Sven Neumann authored
2002-05-24 Sven Neumann <sven@gimp.org> * app/config/gimprc.c (gimp_rc_serialize): write newline after serializing the properties. * app/config/gimpconfig.c (gimp_config_string_indent): tiny optimization.
-
Maurits Rijk authored
-
Michael Natterer authored
2002-05-24 Michael Natterer <mitch@gimp.org> * app/config/gimpconfig.c (gimp_config_string_indent): fixed assertion which did not check for indent_level >= 0 but > 0. * app/config/gimpconfig-serialize.c (gimp_config_serialize_value): serialize floats with g_ascii_formatd() to be locale independed, added serialization of GValueArrays. * app/widgets/gimpdeviceinfo.c: added properties for "mode", "axes" and "keys". Their set_property() implementations are untested.
-
Maurits Rijk authored
-
Maurits Rijk authored
-
Maurits Rijk authored
-
Sven Neumann authored
2002-05-24 Sven Neumann <sven@gimp.org> * app/core/cpercep.[ch] * app/core/gimpimage-convert.c * app/paint-funcs/paint-funcs.c: removed C++ style comments and compiler warnings.
-