~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to libgimpbase/gimputils.c

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include "config.h"
24
24
 
25
25
#include <string.h>
 
26
#include <stdio.h>
26
27
 
27
28
#include <glib-object.h>
28
29
 
47
48
 **/
48
49
gchar *
49
50
gimp_utf8_strtrim (const gchar *str,
50
 
                   gint         max_chars)
 
51
                   gint         max_chars)
51
52
{
52
53
  /* FIXME: should we make this translatable? */
53
 
  static const gchar *ellipsis = "...";
54
 
  static const gint   e_len    = 3;
 
54
  const gchar ellipsis[] = "...";
 
55
  const gint  e_len      = strlen (ellipsis);
55
56
 
56
57
  if (str)
57
58
    {
77
78
              continue;
78
79
            }
79
80
 
80
 
          break;
 
81
          break;
81
82
        }
82
83
 
83
84
      if (*p)
217
218
 
218
219
  if (! filename_utf8)
219
220
    {
220
 
      filename_utf8 = g_filename_to_utf8 (filename, -1, NULL, NULL, NULL);
 
221
      filename_utf8 = g_filename_display_name (filename);
221
222
      g_hash_table_insert (ht, g_strdup (filename), filename_utf8);
222
223
    }
223
224
 
261
262
          if (str[1] == '_')
262
263
            {
263
264
             *p++ = *str++;
264
 
             *p++ = *str++;
 
265
             str++;
 
266
             continue;
265
267
            }
266
268
 
267
269
          /*  find the "(_X)" construct and remove it entirely  */
332
334
}
333
335
 
334
336
/**
 
337
 * gimp_canonicalize_identifier:
 
338
 * @identifier: The identifier string to canonicalize.
 
339
 *
 
340
 * Turns any input string into a canonicalized string.
 
341
 *
 
342
 * Canonical identifiers are e.g. expected by the PDB for procedure
 
343
 * and parameter names. Every character of the input string that is
 
344
 * not either '-', 'a-z', 'A-Z' or '0-9' will be replaced by a '-'.
 
345
 *
 
346
 * Return value: The canonicalized identifier. This is a newly
 
347
 *               allocated string that should be freed with g_free()
 
348
 *               when no longer needed.
 
349
 *
 
350
 * Since: GIMP 2.4
 
351
 **/
 
352
gchar *
 
353
gimp_canonicalize_identifier (const gchar *identifier)
 
354
{
 
355
  gchar *canonicalized = NULL;
 
356
 
 
357
  if (identifier)
 
358
    {
 
359
      gchar *p;
 
360
 
 
361
      canonicalized = g_strdup (identifier);
 
362
 
 
363
      for (p = canonicalized; *p != 0; p++)
 
364
        {
 
365
          gchar c = *p;
 
366
 
 
367
          if (c != '-' &&
 
368
              (c < '0' || c > '9') &&
 
369
              (c < 'A' || c > 'Z') &&
 
370
              (c < 'a' || c > 'z'))
 
371
            *p = '-';
 
372
        }
 
373
    }
 
374
 
 
375
  return canonicalized;
 
376
}
 
377
 
 
378
/**
335
379
 * gimp_enum_get_desc:
336
380
 * @enum_class: a #GEnumClass
337
381
 * @value:      a value from @enum_class
416
460
 
417
461
          enum_desc = gimp_enum_get_desc (enum_class, value);
418
462
 
419
 
          if (value_desc)
 
463
          if (value_desc) {
420
464
            *value_desc = ((enum_desc && enum_desc->value_desc) ?
421
 
                           dgettext (gimp_type_get_translation_domain (enum_type),
422
 
                                     enum_desc->value_desc) :
 
465
                           g_strip_context (enum_desc->value_desc,
 
466
                                            dgettext (gimp_type_get_translation_domain (enum_type),
 
467
                                                      enum_desc->value_desc)) :
423
468
                           NULL);
 
469
          }
424
470
 
425
471
          if (value_help)
426
472
            *value_help = ((enum_desc && enum_desc->value_desc) ?
458
504
  enum_desc = gimp_enum_get_desc (enum_class, enum_value->value);
459
505
 
460
506
  if (enum_desc && enum_desc->value_desc)
461
 
    return dgettext (gimp_type_get_translation_domain (type),
462
 
                     enum_desc->value_desc);
 
507
    return g_strip_context (enum_desc->value_desc,
 
508
                            dgettext (gimp_type_get_translation_domain (type),
 
509
                                      enum_desc->value_desc));
463
510
 
464
511
  return enum_value->value_name;
465
512
}