mirror of
https://invent.kde.org/frameworks/kimageformats.git
synced 2025-06-03 17:08:08 -04:00
Add a trailing comma to enum
Should help produce better diffs and clang-format won't squash the enum on one line. GIT_SILENT
This commit is contained in:
parent
503b3eee2b
commit
e3ab850712
@ -51,7 +51,7 @@ private:
|
|||||||
{
|
{
|
||||||
ParseAvifError = -1,
|
ParseAvifError = -1,
|
||||||
ParseAvifNotParsed = 0,
|
ParseAvifNotParsed = 0,
|
||||||
ParseAvifSuccess = 1
|
ParseAvifSuccess = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
ParseAvifState m_parseState;
|
ParseAvifState m_parseState;
|
||||||
|
@ -41,7 +41,7 @@ const uchar OPAQUE_OPACITY = 255; //!< Opaque value for 8-bit alpha component.
|
|||||||
typedef enum {
|
typedef enum {
|
||||||
RGB,
|
RGB,
|
||||||
GRAY,
|
GRAY,
|
||||||
INDEXED
|
INDEXED,
|
||||||
} GimpImageBaseType;
|
} GimpImageBaseType;
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,7 +36,7 @@ private:
|
|||||||
enum ParseHeicState {
|
enum ParseHeicState {
|
||||||
ParseHeicError = -1,
|
ParseHeicError = -1,
|
||||||
ParseHeicNotParsed = 0,
|
ParseHeicNotParsed = 0,
|
||||||
ParseHeicSuccess = 1
|
ParseHeicSuccess = 1,
|
||||||
};
|
};
|
||||||
|
|
||||||
ParseHeicState m_parseState;
|
ParseHeicState m_parseState;
|
||||||
|
@ -25,7 +25,7 @@ enum PicFields {
|
|||||||
NoPicture = 0, /**< No picture */
|
NoPicture = 0, /**< No picture */
|
||||||
OddScanlines = 1, /**< Odd scanlines */
|
OddScanlines = 1, /**< Odd scanlines */
|
||||||
EvenScanlines = 2, /**< Even scanlines */
|
EvenScanlines = 2, /**< Even scanlines */
|
||||||
BothScanlines = 3 /**< Every scanline */
|
BothScanlines = 3, /**< Every scanline */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -33,7 +33,7 @@ enum PicFields {
|
|||||||
*/
|
*/
|
||||||
enum PicChannelEncoding {
|
enum PicChannelEncoding {
|
||||||
Uncompressed = 0, /**< Image is uncompressed */
|
Uncompressed = 0, /**< Image is uncompressed */
|
||||||
MixedRLE = 2 /**< Run length compression */
|
MixedRLE = 2, /**< Run length compression */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -43,7 +43,7 @@ enum PicChannelCode {
|
|||||||
RED = 0x80, /**< Red channel */
|
RED = 0x80, /**< Red channel */
|
||||||
GREEN = 0x40, /**< Green channel */
|
GREEN = 0x40, /**< Green channel */
|
||||||
BLUE = 0x20, /**< Blue channel */
|
BLUE = 0x20, /**< Blue channel */
|
||||||
ALPHA = 0x10 /**< Alpha channel */
|
ALPHA = 0x10, /**< Alpha channel */
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -155,7 +155,7 @@ public:
|
|||||||
Error,
|
Error,
|
||||||
Ready,
|
Ready,
|
||||||
ReadHeader,
|
ReadHeader,
|
||||||
ReadChannels
|
ReadChannels,
|
||||||
};
|
};
|
||||||
|
|
||||||
SoftimagePICHandler()
|
SoftimagePICHandler()
|
||||||
|
@ -40,7 +40,7 @@ enum ColorMode {
|
|||||||
CM_CMYK = 4,
|
CM_CMYK = 4,
|
||||||
CM_MULTICHANNEL = 7,
|
CM_MULTICHANNEL = 7,
|
||||||
CM_DUOTONE = 8,
|
CM_DUOTONE = 8,
|
||||||
CM_LABCOLOR = 9
|
CM_LABCOLOR = 9,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct PSDHeader {
|
struct PSDHeader {
|
||||||
|
@ -28,13 +28,13 @@ enum RASType {
|
|||||||
RAS_TYPE_RGB_FORMAT = 0x3,
|
RAS_TYPE_RGB_FORMAT = 0x3,
|
||||||
RAS_TYPE_TIFF_FORMAT = 0x4,
|
RAS_TYPE_TIFF_FORMAT = 0x4,
|
||||||
RAS_TYPE_IFF_FORMAT = 0x5,
|
RAS_TYPE_IFF_FORMAT = 0x5,
|
||||||
RAS_TYPE_EXPERIMENTAL = 0xFFFF
|
RAS_TYPE_EXPERIMENTAL = 0xFFFF,
|
||||||
};
|
};
|
||||||
|
|
||||||
enum RASColorMapType {
|
enum RASColorMapType {
|
||||||
RAS_COLOR_MAP_TYPE_NONE = 0x0,
|
RAS_COLOR_MAP_TYPE_NONE = 0x0,
|
||||||
RAS_COLOR_MAP_TYPE_RGB = 0x1,
|
RAS_COLOR_MAP_TYPE_RGB = 0x1,
|
||||||
RAS_COLOR_MAP_TYPE_RAW = 0x2
|
RAS_COLOR_MAP_TYPE_RAW = 0x2,
|
||||||
};
|
};
|
||||||
|
|
||||||
struct RasHeader {
|
struct RasHeader {
|
||||||
@ -46,7 +46,7 @@ struct RasHeader {
|
|||||||
quint32 Type;
|
quint32 Type;
|
||||||
quint32 ColorMapType;
|
quint32 ColorMapType;
|
||||||
quint32 ColorMapLength;
|
quint32 ColorMapLength;
|
||||||
enum { SIZE = 32 }; // 8 fields of four bytes each
|
enum { SIZE = 32, }; // 8 fields of four bytes each
|
||||||
};
|
};
|
||||||
|
|
||||||
static QDataStream &operator>> (QDataStream &s, RasHeader &head)
|
static QDataStream &operator>> (QDataStream &s, RasHeader &head)
|
||||||
|
@ -74,7 +74,7 @@ public:
|
|||||||
bool writeImage(const QImage &);
|
bool writeImage(const QImage &);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum { NORMAL, DITHERED, SCREEN, COLORMAP }; // colormap
|
enum { NORMAL, DITHERED, SCREEN, COLORMAP, }; // colormap
|
||||||
QIODevice *_dev;
|
QIODevice *_dev;
|
||||||
QDataStream _stream;
|
QDataStream _stream;
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ enum class RLEVariant {
|
|||||||
* of size 128, 130 of size 127, down to 255 of
|
* of size 128, 130 of size 127, down to 255 of
|
||||||
* size 2.
|
* size 2.
|
||||||
*/
|
*/
|
||||||
PIC
|
PIC,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -40,7 +40,7 @@ enum TGAType {
|
|||||||
TGA_TYPE_GREY = 3,
|
TGA_TYPE_GREY = 3,
|
||||||
TGA_TYPE_RLE_INDEXED = 9,
|
TGA_TYPE_RLE_INDEXED = 9,
|
||||||
TGA_TYPE_RLE_RGB = 10,
|
TGA_TYPE_RLE_RGB = 10,
|
||||||
TGA_TYPE_RLE_GREY = 11
|
TGA_TYPE_RLE_GREY = 11,
|
||||||
};
|
};
|
||||||
|
|
||||||
#define TGA_INTERLEAVE_MASK 0xc0
|
#define TGA_INTERLEAVE_MASK 0xc0
|
||||||
@ -69,7 +69,7 @@ struct TgaHeader {
|
|||||||
uchar pixel_size;
|
uchar pixel_size;
|
||||||
uchar flags;
|
uchar flags;
|
||||||
|
|
||||||
enum { SIZE = 18 }; // const static int SIZE = 18;
|
enum { SIZE = 18, }; // const static int SIZE = 18;
|
||||||
};
|
};
|
||||||
|
|
||||||
static QDataStream &operator>> (QDataStream &s, TgaHeader &head)
|
static QDataStream &operator>> (QDataStream &s, TgaHeader &head)
|
||||||
|
@ -131,7 +131,7 @@ public:
|
|||||||
PROP_BLEND_SPACE = 37,
|
PROP_BLEND_SPACE = 37,
|
||||||
PROP_FLOAT_COLOR = 38,
|
PROP_FLOAT_COLOR = 38,
|
||||||
PROP_SAMPLE_POINTS = 39,
|
PROP_SAMPLE_POINTS = 39,
|
||||||
MAX_SUPPORTED_PROPTYPE // should always be at the end so its value is last + 1
|
MAX_SUPPORTED_PROPTYPE, // should always be at the end so its value is last + 1
|
||||||
};
|
};
|
||||||
Q_ENUM(PropType);
|
Q_ENUM(PropType);
|
||||||
|
|
||||||
@ -141,7 +141,7 @@ public:
|
|||||||
COMPRESS_NONE = 0,
|
COMPRESS_NONE = 0,
|
||||||
COMPRESS_RLE = 1,
|
COMPRESS_RLE = 1,
|
||||||
COMPRESS_ZLIB = 2, /* unused */
|
COMPRESS_ZLIB = 2, /* unused */
|
||||||
COMPRESS_FRACTAL = 3 /* unused */
|
COMPRESS_FRACTAL = 3, /* unused */
|
||||||
};
|
};
|
||||||
Q_ENUM(XcfCompressionType);
|
Q_ENUM(XcfCompressionType);
|
||||||
|
|
||||||
@ -208,7 +208,7 @@ public:
|
|||||||
GIMP_LAYER_MODE_MERGE,
|
GIMP_LAYER_MODE_MERGE,
|
||||||
GIMP_LAYER_MODE_SPLIT,
|
GIMP_LAYER_MODE_SPLIT,
|
||||||
GIMP_LAYER_MODE_PASS_THROUGH,
|
GIMP_LAYER_MODE_PASS_THROUGH,
|
||||||
GIMP_LAYER_MODE_COUNT
|
GIMP_LAYER_MODE_COUNT,
|
||||||
};
|
};
|
||||||
Q_ENUM(LayerModeType);
|
Q_ENUM(LayerModeType);
|
||||||
|
|
||||||
@ -219,7 +219,7 @@ public:
|
|||||||
GRAY_GIMAGE,
|
GRAY_GIMAGE,
|
||||||
GRAYA_GIMAGE,
|
GRAYA_GIMAGE,
|
||||||
INDEXED_GIMAGE,
|
INDEXED_GIMAGE,
|
||||||
INDEXEDA_GIMAGE
|
INDEXEDA_GIMAGE,
|
||||||
};
|
};
|
||||||
Q_ENUM(GimpImageType);
|
Q_ENUM(GimpImageType);
|
||||||
|
|
||||||
@ -227,7 +227,7 @@ public:
|
|||||||
enum GimpColorSpace {
|
enum GimpColorSpace {
|
||||||
RgbLinearSpace,
|
RgbLinearSpace,
|
||||||
RgbPerceptualSpace,
|
RgbPerceptualSpace,
|
||||||
LabSpace
|
LabSpace,
|
||||||
};
|
};
|
||||||
|
|
||||||
//! Mode to use when compositing layer
|
//! Mode to use when compositing layer
|
||||||
|
Loading…
x
Reference in New Issue
Block a user