TagLib 1.9.1 (trueaudiofile.h Source File)
Home
Class Hierarchy
Namespaces
Classes
Headers
Namespace Members
Class Members
File Members
taglib
trueaudio
trueaudiofile.h
Go to the documentation of this file.
1
/***************************************************************************
2
copyright : (C) 2006 by Lukáš Lalinský
3
email : lalinsky@gmail.com
4
5
copyright : (C) 2004 by Allan Sandfeld Jensen
6
email : kde@carewolf.org
7
(original MPC implementation)
8
***************************************************************************/
9
10
/***************************************************************************
11
* This library is free software; you can redistribute it and/or modify *
12
* it under the terms of the GNU Lesser General Public License version *
13
* 2.1 as published by the Free Software Foundation. *
14
* *
15
* This library is distributed in the hope that it will be useful, but *
16
* WITHOUT ANY WARRANTY; without even the implied warranty of *
17
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
18
* Lesser General Public License for more details. *
19
* *
20
* You should have received a copy of the GNU Lesser General Public *
21
* License along with this library; if not, write to the Free Software *
22
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
23
* 02110-1301 USA *
24
* *
25
* Alternatively, this file is available under the Mozilla Public *
26
* License Version 1.1. You may obtain a copy of the License at *
27
* http://www.mozilla.org/MPL/ *
28
***************************************************************************/
29
30
#ifndef TAGLIB_TRUEAUDIOFILE_H
31
#define TAGLIB_TRUEAUDIOFILE_H
32
33
#include "
tfile.h
"
34
#include "
trueaudioproperties.h
"
35
36
namespace
TagLib {
37
38
class
Tag;
39
40
namespace
ID3v2 {
class
Tag;
class
FrameFactory; }
41
namespace
ID3v1 {
class
Tag; }
42
44
52
namespace
TrueAudio {
53
55
63
class
TAGLIB_EXPORT
File
:
public
TagLib::File
64
{
65
public
:
70
enum
TagTypes
{
72
NoTags = 0x0000,
74
ID3v1 = 0x0001,
76
ID3v2 = 0x0002,
78
AllTags = 0xffff
79
};
80
87
File
(
FileName
file,
bool
readProperties =
true
,
88
Properties::ReadStyle
propertiesStyle =
Properties::Average
);
89
99
File
(
FileName
file,
ID3v2::FrameFactory
*frameFactory,
100
bool
readProperties =
true
,
101
Properties::ReadStyle
propertiesStyle =
Properties::Average
);
102
112
File
(
IOStream
*stream,
bool
readProperties =
true
,
113
Properties::ReadStyle
propertiesStyle =
Properties::Average
);
114
127
File
(
IOStream
*stream,
ID3v2::FrameFactory
*frameFactory,
128
bool
readProperties =
true
,
129
Properties::ReadStyle
propertiesStyle =
Properties::Average
);
130
134
virtual
~
File
();
135
139
virtual
TagLib::Tag
*tag()
const
;
140
146
PropertyMap
properties()
const
;
147
153
PropertyMap
setProperties(
const
PropertyMap
&);
154
155
void
removeUnsupportedProperties(
const
StringList
&properties);
156
161
virtual
Properties
*audioProperties()
const
;
162
168
void
setID3v2FrameFactory(
const
ID3v2::FrameFactory
*factory);
169
173
virtual
bool
save();
174
192
ID3v1::Tag
*ID3v1Tag(
bool
create =
false
);
193
211
ID3v2::Tag
*ID3v2Tag(
bool
create =
false
);
212
221
void
strip(
int
tags = AllTags);
222
228
bool
hasID3v1Tag()
const
;
229
235
bool
hasID3v2Tag()
const
;
236
237
private
:
238
File
(
const
File
&);
239
File
&operator=(
const
File
&);
240
241
void
read(
bool
readProperties,
Properties::ReadStyle
propertiesStyle);
242
void
scan();
243
long
findID3v1();
244
long
findID3v2();
245
246
class
FilePrivate;
247
FilePrivate *d;
248
};
249
}
250
}
251
252
#endif