wavpackfile.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_WVFILE_H
31 #define TAGLIB_WVFILE_H
32 
33 #include "tfile.h"
34 #include "taglib_export.h"
35 #include "wavpackproperties.h"
36 
37 namespace TagLib {
38 
39  class Tag;
40 
41  namespace ID3v1 { class Tag; }
42  namespace APE { class Tag; }
43 
45 
53  namespace WavPack {
54 
56 
65  {
66  public:
71  enum TagTypes {
73  NoTags = 0x0000,
75  ID3v1 = 0x0001,
77  APE = 0x0002,
79  AllTags = 0xffff
80  };
81 
87  File(FileName file, bool readProperties = true,
88  Properties::ReadStyle propertiesStyle = Properties::Average);
89 
93  virtual ~File();
94 
99  virtual TagLib::Tag *tag() const;
100 
105  virtual Properties *audioProperties() const;
106 
110  virtual bool save();
111 
124  ID3v1::Tag *ID3v1Tag(bool create = false);
125 
137  APE::Tag *APETag(bool create = false);
138 
147  void strip(int tags = AllTags);
148 
149  private:
150  File(const File &);
151  File &operator=(const File &);
152 
153  void read(bool readProperties, Properties::ReadStyle propertiesStyle);
154  void scan();
155  long findID3v1();
156  long findAPE();
157 
158  class FilePrivate;
159  FilePrivate *d;
160  };
161  }
162 }
163 
164 #endif