|
|
An implementation of ID3v2 privateframe. More...
#include <privateframe.h>


Public Member Functions | |
| PrivateFrame () | |
| PrivateFrame (const ByteVector &data) | |
| virtual | ~PrivateFrame () |
| virtual String | toString () const |
| String | owner () const |
| ByteVector | data () const |
| void | setOwner (const String &s) |
| void | setData (const ByteVector &v) |
Public Member Functions inherited from TagLib::ID3v2::Frame | |
| virtual | ~Frame () |
| ByteVector | frameID () const |
| uint | size () const |
| virtual void | setText (const String &text) |
| ByteVector | render () const |
| Header (const ByteVector &data, bool synchSafeInts) | |
| Header (const ByteVector &data, uint version=4) | |
| virtual | ~Header () |
| void | setData (const ByteVector &data, bool synchSafeInts) |
| void | setData (const ByteVector &data, uint version=4) |
| ByteVector | frameID () const |
| void | setFrameID (const ByteVector &id) |
| uint | frameSize () const |
| void | setFrameSize (uint size) |
| uint | version () const |
| void | setVersion (uint version) |
| bool | tagAlterPreservation () const |
| void | setTagAlterPreservation (bool discard) |
| bool | fileAlterPreservation () const |
| bool | readOnly () const |
| bool | groupingIdentity () const |
| bool | compression () const |
| bool | encryption () const |
| bool | unsynchronisation () const |
| bool | dataLengthIndicator () const |
| ByteVector | render () const |
| bool | frameAlterPreservation () const |
Protected Member Functions | |
| virtual void | parseFields (const ByteVector &data) |
| virtual ByteVector | renderFields () const |
Protected Member Functions inherited from TagLib::ID3v2::Frame | |
| Frame (const ByteVector &data) | |
| Frame (Header *h) | |
| Header * | header () const |
| void | setHeader (Header *h, bool deleteCurrent=true) |
| void | parse (const ByteVector &data) |
| ByteVector | fieldData (const ByteVector &frameData) const |
| String | readStringField (const ByteVector &data, String::Type encoding, int *positon=0) |
| String::Type | checkTextEncoding (const StringList &fields, String::Type encoding) const |
| PropertyMap | asProperties () const |
Friends | |
| class | FrameFactory |
Additional Inherited Members | |
Static Public Member Functions inherited from TagLib::ID3v2::Frame | |
| static Frame * | createTextualFrame (const String &key, const StringList &values) |
| static uint | headerSize () |
| static uint | headerSize (uint version) |
| static ByteVector | textDelimiter (String::Type t) |
| static uint | size () |
| static uint | size (uint version) |
Static Public Attributes inherited from TagLib::ID3v2::Frame | |
| static const String | instrumentPrefix |
| static const String | commentPrefix |
| static const String | lyricsPrefix |
| static const String | urlPrefix |
Static Protected Member Functions inherited from TagLib::ID3v2::Frame | |
| static String::Type | checkEncoding (const StringList &fields, String::Type encoding) |
| static String::Type | checkEncoding (const StringList &fields, String::Type encoding, uint version) |
| static ByteVector | keyToFrameID (const String &) |
| static String | frameIDToKey (const ByteVector &) |
| static void | splitProperties (const PropertyMap &original, PropertyMap &singleFrameProperties, PropertyMap &tiplProperties, PropertyMap &tmclProperties) |
An implementation of ID3v2 privateframe.
| TagLib::ID3v2::PrivateFrame::PrivateFrame | ( | ) |
Construct an empty private frame.
|
explicit |
Construct a private frame based on the data in data.
|
virtual |
Destroys this private frame instance.
| ByteVector TagLib::ID3v2::PrivateFrame::data | ( | ) | const |
| String TagLib::ID3v2::PrivateFrame::owner | ( | ) | const |
|
protectedvirtual |
Called by parse() to parse the field data. It makes this information available through the public API. This must be overridden by the subclasses.
Implements TagLib::ID3v2::Frame.
|
protectedvirtual |
Render the field data back to a binary format in a ByteVector. This must be overridden by subclasses.
Implements TagLib::ID3v2::Frame.
| void TagLib::ID3v2::PrivateFrame::setData | ( | const ByteVector & | data | ) |
Sets the data that will be used as the frame. Since the length is not known before the frame has been parsed, this should just be a pointer to the first byte of the frame. It will determine the length internally and make that available through size().
Reimplemented from TagLib::ID3v2::Frame.
| void TagLib::ID3v2::PrivateFrame::setOwner | ( | const String & | s | ) |
Sets the owner of the frame to s.
|
virtual |
Returns the text of this private frame, currently just the owner.
Implements TagLib::ID3v2::Frame.
|
friend |