TagLib  1.13.1
attachedpictureframe.h
Go to the documentation of this file.
1/***************************************************************************
2 copyright : (C) 2002 - 2008 by Scott Wheeler
3 email : wheeler@kde.org
4 ***************************************************************************/
5
6/***************************************************************************
7 * This library is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU Lesser General Public License version *
9 * 2.1 as published by the Free Software Foundation. *
10 * *
11 * This library is distributed in the hope that it will be useful, but *
12 * WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14 * Lesser General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU Lesser General Public *
17 * License along with this library; if not, write to the Free Software *
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
19 * 02110-1301 USA *
20 * *
21 * Alternatively, this file is available under the Mozilla Public *
22 * License Version 1.1. You may obtain a copy of the License at *
23 * http://www.mozilla.org/MPL/ *
24 ***************************************************************************/
25
26#ifndef TAGLIB_ATTACHEDPICTUREFRAME_H
27#define TAGLIB_ATTACHEDPICTUREFRAME_H
28
29#include "id3v2frame.h"
30#include "id3v2header.h"
31#include "taglib_export.h"
32
33namespace TagLib {
34
35 namespace ID3v2 {
36
38
47 {
48 friend class FrameFactory;
49
50 public:
51
55 enum Type {
57 Other = 0x00,
59 FileIcon = 0x01,
61 OtherFileIcon = 0x02,
63 FrontCover = 0x03,
65 BackCover = 0x04,
67 LeafletPage = 0x05,
69 Media = 0x06,
71 LeadArtist = 0x07,
73 Artist = 0x08,
75 Conductor = 0x09,
77 Band = 0x0A,
79 Composer = 0x0B,
81 Lyricist = 0x0C,
83 RecordingLocation = 0x0D,
85 DuringRecording = 0x0E,
87 DuringPerformance = 0x0F,
89 MovieScreenCapture = 0x10,
91 ColouredFish = 0x11,
93 Illustration = 0x12,
95 BandLogo = 0x13,
97 PublisherLogo = 0x14
98 };
99
105
109 explicit AttachedPictureFrame(const ByteVector &data);
110
115
119 virtual String toString() const;
120
128
135
141
146 void setMimeType(const String &m);
147
154 Type type() const;
155
162 void setType(Type t);
163
173
182 void setDescription(const String &desc);
183
194
203 void setPicture(const ByteVector &p);
204
205 protected:
206 virtual void parseFields(const ByteVector &data);
207 virtual ByteVector renderFields() const;
208 class AttachedPictureFramePrivate;
209 AttachedPictureFramePrivate *d;
210
211 private:
213 AttachedPictureFrame &operator=(const AttachedPictureFrame &);
214 AttachedPictureFrame(const ByteVector &data, Header *h);
215
216 };
217
220 {
221 protected:
222 virtual void parseFields(const ByteVector &data);
223 private:
225 friend class FrameFactory;
226 };
227 } // namespace ID3v2
228} // namespace TagLib
229
230#endif
A byte vector.
Definition tbytevector.h:46
support for ID3v2.2 PIC frames
Definition attachedpictureframe.h:220
virtual void parseFields(const ByteVector &data)
An ID3v2 attached picture frame implementation.
Definition attachedpictureframe.h:47
AttachedPictureFramePrivate * d
Definition attachedpictureframe.h:209
String::Type textEncoding() const
Type
Definition attachedpictureframe.h:55
virtual ByteVector renderFields() const
void setPicture(const ByteVector &p)
void setDescription(const String &desc)
virtual String toString() const
void setTextEncoding(String::Type t)
virtual void parseFields(const ByteVector &data)
void setMimeType(const String &m)
AttachedPictureFrame(const ByteVector &data)
A factory for creating ID3v2 frames during parsing.
Definition id3v2framefactory.h:66
ID3v2 frame implementation.
Definition id3v2frame.h:55
An implementation of ID3v2 headers.
Definition id3v2header.h:49
A wide string class suitable for unicode.
Definition tstring.h:85
Type
Definition tstring.h:97
A namespace for all TagLib related classes and functions.
Definition apefile.h:41
#define TAGLIB_EXPORT
Definition taglib_export.h:40