|
TagLib 1.11.1 (chapterframe.h Source File) |
|
|
Go to the documentation of this file.
26 #ifndef TAGLIB_CHAPTERFRAME
27 #define TAGLIB_CHAPTERFRAME
46 friend class FrameFactory;
53 ChapterFrame(
const ID3v2::Header *tagHeader,
const ByteVector &data);
64 ChapterFrame(
const ByteVector &elementID,
65 unsigned int startTime,
unsigned int endTime,
66 unsigned int startOffset,
unsigned int endOffset,
72 virtual ~ChapterFrame();
80 ByteVector elementID()
const;
87 unsigned int startTime()
const;
94 unsigned int endTime()
const;
103 unsigned int startOffset()
const;
112 unsigned int endOffset()
const;
120 void setElementID(
const ByteVector &eID);
127 void setStartTime(
const unsigned int &sT);
134 void setEndTime(
const unsigned int &eT);
142 void setStartOffset(
const unsigned int &sO);
150 void setEndOffset(
const unsigned int &eO);
179 const FrameList &embeddedFrameList()
const;
201 void addEmbeddedFrame(
Frame *frame);
210 void removeEmbeddedFrame(
Frame *frame,
bool del =
true);
219 void removeEmbeddedFrames(
const ByteVector &
id);
221 virtual String toString()
const;
235 virtual void parseFields(
const ByteVector &data);
243 class ChapterFramePrivate;
244 ChapterFramePrivate *d;
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
The main class in the ID3v2 implementation.
Definition: id3v2tag.h:157
A generic, implicitly shared list.
Definition: tlist.h:75
A map for format-independent <key,valuelist> tag representations.
Definition: tpropertymap.h:130
A generic, implicitly shared map.
Definition: tmap.h:65
An implementation of ID3v2 chapter frames.
Definition: chapterframe.h:87
A byte vector.
Definition: tbytevector.h:67
#define TAGLIB_EXPORT
Definition: taglib_export.h:40
ID3v2 frame implementation.
Definition: id3v2frame.h:76
List< Frame * > FrameList
Definition: id3v2tag.h:76
A wide string class suitable for unicode.
Definition: tstring.h:85