TagLib
1.13.1
|
#include <itfile.h>
Public Member Functions | |
File (FileName file, bool readProperties=true, AudioProperties::ReadStyle propertiesStyle=AudioProperties::Average) | |
File (IOStream *stream, bool readProperties=true, AudioProperties::ReadStyle propertiesStyle=AudioProperties::Average) | |
virtual | ~File () |
Mod::Tag * | tag () const |
PropertyMap | properties () const |
PropertyMap | setProperties (const PropertyMap &) |
IT::Properties * | audioProperties () const |
bool | save () |
![]() | |
FileName | name () const |
PropertyMap | properties () const |
void | removeUnsupportedProperties (const StringList &properties) |
PropertyMap | setProperties (const PropertyMap &properties) |
ByteVector | readBlock (unsigned long length) |
void | writeBlock (const ByteVector &data) |
long | find (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector()) |
long | rfind (const ByteVector &pattern, long fromOffset=0, const ByteVector &before=ByteVector()) |
void | insert (const ByteVector &data, unsigned long start=0, unsigned long replace=0) |
void | removeBlock (unsigned long start=0, unsigned long length=0) |
bool | readOnly () const |
bool | isOpen () const |
bool | isValid () const |
void | seek (long offset, Position p=Beginning) |
void | clear () |
long | tell () const |
long | length () |
Additional Inherited Members | |
![]() | |
enum | Position { Beginning , Current , End } |
enum | StripTags { StripNone , StripOthers } |
enum | DuplicateTags { Duplicate , DoNotDuplicate } |
![]() | |
static TAGLIB_DEPRECATED bool | isReadable (const char *file) |
static TAGLIB_DEPRECATED bool | isWritable (const char *name) |
![]() | |
FileBase (FileName file) | |
FileBase (IOStream *stream) | |
void | writeString (const String &s, unsigned long size, char padding=0) |
void | writeByte (unsigned char byte) |
void | writeU16L (unsigned short number) |
void | writeU32L (unsigned long number) |
void | writeU16B (unsigned short number) |
void | writeU32B (unsigned long number) |
bool | readString (String &s, unsigned long size) |
bool | readByte (unsigned char &byte) |
bool | readU16L (unsigned short &number) |
bool | readU32L (unsigned long &number) |
bool | readU16B (unsigned short &number) |
bool | readU32B (unsigned long &number) |
![]() | |
File (FileName file) | |
File (IOStream *stream) | |
void | setValid (bool valid) |
void | truncate (long length) |
![]() | |
static unsigned int | bufferSize () |
TagLib::IT::File::File | ( | FileName | file, |
bool | readProperties = true, | ||
AudioProperties::ReadStyle | propertiesStyle = AudioProperties::Average ) |
Constructs a Impulse Tracker file from file.
References TagLib::AudioProperties::Average.
Referenced by save().
TagLib::IT::File::File | ( | IOStream * | stream, |
bool | readProperties = true, | ||
AudioProperties::ReadStyle | propertiesStyle = AudioProperties::Average ) |
Constructs a Impulse Tracker file from stream.
References TagLib::AudioProperties::Average.
|
virtual |
Destroys this instance of the File.
Reimplemented from TagLib::File.
|
virtual |
Returns the IT::Properties for this file. If no audio properties were read then this will return a null pointer.
Implements TagLib::File.
PropertyMap TagLib::IT::File::properties | ( | ) | const |
Forwards to Mod::Tag::properties(). BIC: will be removed once File::toDict() is made virtual
|
virtual |
Save the file. This is the same as calling save(AllTags);
Implements TagLib::File.
References File().
PropertyMap TagLib::IT::File::setProperties | ( | const PropertyMap & | ) |
Forwards to Mod::Tag::setProperties(). BIC: will be removed once File::setProperties() is made virtual
|
virtual |
Returns a pointer to this file's tag. This should be reimplemented in the concrete subclasses.
Implements TagLib::File.