home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 February / CMCD0205.ISO / Linux / gimp-2.2.0.tar.gz / gimp-2.2.0.tar / gimp-2.2.0 / libgimpthumb / gimpthumb-enums.h < prev    next >
C/C++ Source or Header  |  2004-11-04  |  2KB  |  78 lines

  1. /* LIBGIMP - The GIMP Library
  2.  * Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
  3.  *
  4.  * Thumbnail handling according to the Thumbnail Managing Standard.
  5.  * http://triq.net/~pearl/thumbnail-spec/
  6.  *
  7.  * Copyright (C) 2001-2003  Sven Neumann <sven@gimp.org>
  8.  *                          Michael Natterer <mitch@gimp.org>
  9.  *
  10.  * This library is free software; you can redistribute it and/or
  11.  * modify it under the terms of the GNU Lesser General Public
  12.  * License as published by the Free Software Foundation; either
  13.  * version 2 of the License, or (at your option) any later version.
  14.  *
  15.  * This library is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  18.  * Lesser General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU Lesser General Public
  21.  * License along with this library; if not, write to the
  22.  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  23.  * Boston, MA 02111-1307, USA.
  24.  */
  25.  
  26. #ifndef __GIMP_THUMB_ENUMS_H__
  27. #define __GIMP_THUMB_ENUMS_H__
  28.  
  29. G_BEGIN_DECLS
  30.  
  31.  
  32. #define GIMP_TYPE_THUMB_FILE_TYPE (gimp_thumb_file_type_get_type ())
  33.  
  34. GType gimp_thumb_file_type_get_type (void) G_GNUC_CONST;
  35.  
  36. typedef enum
  37. {
  38.   GIMP_THUMB_FILE_TYPE_NONE,
  39.   GIMP_THUMB_FILE_TYPE_REGULAR,
  40.   GIMP_THUMB_FILE_TYPE_FOLDER,
  41.   GIMP_THUMB_FILE_TYPE_SPECIAL
  42. } GimpThumbFileType;
  43.  
  44.  
  45. #define GIMP_TYPE_THUMB_SIZE (gimp_thumb_size_get_type ())
  46.  
  47. GType gimp_thumb_size_get_type (void) G_GNUC_CONST;
  48.  
  49. typedef enum
  50. {
  51.   GIMP_THUMB_SIZE_FAIL   = 0,
  52.   GIMP_THUMB_SIZE_NORMAL = 128,
  53.   GIMP_THUMB_SIZE_LARGE  = 256
  54. } GimpThumbSize;
  55.  
  56.  
  57. #define GIMP_TYPE_THUMB_STATE (gimp_thumb_state_get_type ())
  58.  
  59. GType gimp_thumb_state_get_type (void) G_GNUC_CONST;
  60.  
  61. typedef enum
  62. {
  63.   GIMP_THUMB_STATE_UNKNOWN,
  64.   GIMP_THUMB_STATE_REMOTE,
  65.   GIMP_THUMB_STATE_FOLDER,
  66.   GIMP_THUMB_STATE_SPECIAL,
  67.   GIMP_THUMB_STATE_NOT_FOUND,
  68.   GIMP_THUMB_STATE_EXISTS,
  69.   GIMP_THUMB_STATE_OLD,
  70.   GIMP_THUMB_STATE_FAILED,
  71.   GIMP_THUMB_STATE_OK
  72. } GimpThumbState;
  73.  
  74.  
  75. G_END_DECLS
  76.  
  77. #endif  /* __GIMP_THUMB_ENUMS_H__ */
  78.