1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
<!-- ##### SECTION Title ##### -->
gimpthumb-enums
<!-- ##### SECTION Short_Description ##### -->
Enumerations used by libgimpthumb
<!-- ##### SECTION Long_Description ##### -->
<para>
</para>
<!-- ##### SECTION See_Also ##### -->
<para>
</para>
<!-- ##### SECTION Stability_Level ##### -->
<!-- ##### ENUM GimpThumbFileType ##### -->
<para>
File types as returned by gimp_thumb_file_test().
</para>
@GIMP_THUMB_FILE_TYPE_NONE: file does not exist
@GIMP_THUMB_FILE_TYPE_REGULAR: a regular file
@GIMP_THUMB_FILE_TYPE_FOLDER: a directory
@GIMP_THUMB_FILE_TYPE_SPECIAL: a special file (device node, fifo, socket, ...)
<!-- ##### ENUM GimpThumbSize ##### -->
<para>
Possible thumbnail sizes as defined by the Thumbnail Managaging Standard
</para>
@GIMP_THUMB_SIZE_FAIL: special size used to indicate a thumbnail
creation failure
@GIMP_THUMB_SIZE_NORMAL: normal thumbnail size (128 pixels)
@GIMP_THUMB_SIZE_LARGE: large thumbnail size (256 pixels)
<!-- ##### ENUM GimpThumbState ##### -->
<para>
Possible image and thumbnail file states used by libgimpthumb.
</para>
@GIMP_THUMB_STATE_UNKNOWN: nothing is known about the file/thumbnail
@GIMP_THUMB_STATE_REMOTE: the file is on a remote file system
@GIMP_THUMB_STATE_FOLDER:
@GIMP_THUMB_STATE_SPECIAL:
@GIMP_THUMB_STATE_NOT_FOUND: the file/thumbnail doesn't exist
@GIMP_THUMB_STATE_EXISTS: the file/thumbnail exists
@GIMP_THUMB_STATE_OLD: the thumbnail may be outdated
@GIMP_THUMB_STATE_FAILED: the thumbnail couldn't be created
@GIMP_THUMB_STATE_OK: the thumbnail exists and matches the image
|