~ubuntu-branches/ubuntu/maverick/gimp/maverick-proposed

« back to all changes in this revision

Viewing changes to plug-ins/file-psd/psd.h

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2010-02-26 19:10:31 UTC
  • mfrom: (1.1.22 upstream) (0.4.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100226191031-d11l96bebdllen1n
Tags: 2.6.8-2ubuntu1
* Merge with debian, remaining changes:
  + debian/patches/02_help-message.patch,
    debian/patches/03_gimp.desktop.in.in.patch:
    - updated some strings for ubuntu
  + debian/rules:
    - updated translation templates
  + debian/control:
    - set Vcs-Bzr url

Show diffs side-by-side

added added

removed removed

Lines of Context:
447
447
/* PSD Layer mask data (length 20) */
448
448
typedef struct
449
449
{
450
 
  guint32               top;                    /* Layer top */
451
 
  guint32               left;                   /* Layer left */
452
 
  guint32               bottom;                 /* Layer bottom */
453
 
  guint32               right;                  /* Layer right */
 
450
  gint32                top;                    /* Layer top */
 
451
  gint32                left;                   /* Layer left */
 
452
  gint32                bottom;                 /* Layer bottom */
 
453
  gint32                right;                  /* Layer right */
454
454
  guchar                def_color;              /* Default background colour */
455
455
  guchar                flags;                  /* Layer flags */
456
456
  guchar                extra_def_color;        /* Real default background colour */
461
461
/* PSD Layer mask data (length 36) */
462
462
typedef struct
463
463
{
464
 
  guint32               top;                    /* Layer top */
465
 
  guint32               left;                   /* Layer left */
466
 
  guint32               bottom;                 /* Layer bottom */
467
 
  guint32               right;                  /* Layer right */
 
464
  gint32                top;                    /* Layer top */
 
465
  gint32                left;                   /* Layer left */
 
466
  gint32                bottom;                 /* Layer bottom */
 
467
  gint32                right;                  /* Layer right */
468
468
} LayerMaskExtra;
469
469
 
470
470
/* PSD Layer data structure */
471
471
typedef struct
472
472
{
473
473
  gboolean              drop;                   /* Do not add layer to GIMP image */
474
 
  guint32               top;                    /* Layer top */
475
 
  guint32               left;                   /* Layer left */
476
 
  guint32               bottom;                 /* Layer bottom */
477
 
  guint32               right;                  /* Layer right */
 
474
  gint32                top;                    /* Layer top */
 
475
  gint32                left;                   /* Layer left */
 
476
  gint32                bottom;                 /* Layer bottom */
 
477
  gint32                right;                  /* Layer right */
478
478
  guint16               num_channels;           /* Number of channels */
479
479
  ChannelLengthInfo    *chn_info;               /* Channel length info */
480
480
  gchar                 mode_key[4];            /* Blend mode key */