
2003-11-14 Sven Neumann <sven@gimp.org> * libgimpbase/gimputils.[ch] (gimp_memsize_to_string): take a guint64 parameter and handle values beyond a gigabyte. * app/core/gimptemplate.[ch]: use a guint64 for the initial memory size and removed the gboolean that used to indicate a gulong overflow. * app/widgets/gimptemplateeditor.[ch]: changed accordingly. * app/gui/file-new-dialog.c: don't set the OK button insensitive when the initial memory size exceeds GULONG_MAX. * app/widgets/gimpsessioninfo.c (gimp_session_info_deserialize): replaced a misleading comment.
37 lines
1.3 KiB
C
37 lines
1.3 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
|
|
* Library 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.
|
|
*/
|
|
|
|
#ifndef __GIMP_UTILS_H__
|
|
#define __GIMP_UTILS_H__
|
|
|
|
|
|
gchar * gimp_utf8_strtrim (const gchar *str,
|
|
gint max_chars);
|
|
gchar * gimp_any_to_utf8 (const gchar *str,
|
|
gssize len,
|
|
const gchar *warning_format,
|
|
...) G_GNUC_PRINTF (3, 4);
|
|
|
|
gchar * gimp_memsize_to_string (guint64 memsize);
|
|
|
|
gchar * gimp_strip_uline (const gchar *str);
|
|
|
|
|
|
#endif /* __GIMP_UTILS_H__ */
|