Miam-Player  0.8.0
A nice music player
synchronizedlyricsframe.h
Go to the documentation of this file.
1 /***************************************************************************
2  copyright : (C) 2014 by Urs Fleisch
3  email : ufleisch@users.sourceforge.net
4  ***************************************************************************/
5 
6 /***************************************************************************
7  * This library is free software; you can redistribute it and/or modify *
8  * it under the terms of the GNU Lesser General Public License version *
9  * 2.1 as published by the Free Software Foundation. *
10  * *
11  * This library is distributed in the hope that it will be useful, but *
12  * WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the Free Software *
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
19  * 02110-1301 USA *
20  * *
21  * Alternatively, this file is available under the Mozilla Public *
22  * License Version 1.1. You may obtain a copy of the License at *
23  * http://www.mozilla.org/MPL/ *
24  ***************************************************************************/
25 
26 #ifndef TAGLIB_SYNCHRONIZEDLYRICSFRAME_H
27 #define TAGLIB_SYNCHRONIZEDLYRICSFRAME_H
28 
29 #include "id3v2frame.h"
30 #include "tlist.h"
31 
32 namespace TagLib {
33 
34  namespace ID3v2 {
35 
37 
41  {
42  friend class FrameFactory;
43 
44  public:
45 
51  Unknown = 0x00,
54  AbsoluteMpegFrames = 0x01,
57  AbsoluteMilliseconds = 0x02
58  };
59 
63  enum Type {
65  Other = 0x00,
67  Lyrics = 0x01,
69  TextTranscription = 0x02,
71  Movement = 0x03,
73  Events = 0x04,
75  Chord = 0x05,
77  Trivia = 0x06,
79  WebpageUrls = 0x07,
81  ImageUrls = 0x08
82  };
83 
87  struct SynchedText {
88  SynchedText(unsigned int ms, String str) : time(ms), text(str) {}
89  unsigned int time;
91  };
92 
97 
103 
107  explicit SynchronizedLyricsFrame(const ByteVector &data);
108 
112  virtual ~SynchronizedLyricsFrame();
113 
119  virtual String toString() const;
120 
129  String::Type textEncoding() const;
130 
139  ByteVector language() const;
140 
144  TimestampFormat timestampFormat() const;
145 
149  Type type() const;
150 
158  String description() const;
159 
163  SynchedTextList synchedText() const;
164 
172  void setTextEncoding(String::Type encoding);
173 
181  void setLanguage(const ByteVector &languageCode);
182 
188  void setTimestampFormat(TimestampFormat f);
189 
195  void setType(Type t);
196 
202  void setDescription(const String &s);
203 
209  void setSynchedText(const SynchedTextList &t);
210 
211  protected:
212  // Reimplementations.
213 
214  virtual void parseFields(const ByteVector &data);
215  virtual ByteVector renderFields() const;
216 
217  private:
221  SynchronizedLyricsFrame(const ByteVector &data, Header *h);
224 
225  class SynchronizedLyricsFramePrivate;
226  SynchronizedLyricsFramePrivate *d;
227  };
228 
229  }
230 }
231 #endif
A factory for creating ID3v2 frames during parsing.
Definition: id3v2framefactory.h:65
TimestampFormat
Specifies the timestamp format used.
Definition: synchronizedlyricsframe.h:49
IS08859-1, or Latin1 encoding.
Definition: tstring.h:101
A generic, implicitly shared list.
Definition: tlist.h:53
Type
Specifies the type of text contained.
Definition: synchronizedlyricsframe.h:63
String text
Definition: synchronizedlyricsframe.h:90
A byte vector.
Definition: tbytevector.h:45
Type
Definition: tstring.h:97
A wide string class suitable for unicode.
Definition: tstring.h:84
ID3v2 frame implementation.
Definition: id3v2frame.h:54
#define TAGLIB_EXPORT
Definition: taglib_export.h:40
ID3v2 synchronized lyrics frame.
Definition: synchronizedlyricsframe.h:40
A namespace for all TagLib related classes and functions.
Definition: aifffile.h:33
An implementation of ID3v2 headers.
Definition: id3v2header.h:47
TagLib::List< SynchedText > SynchedTextList
List of synchronized lyrics.
Definition: synchronizedlyricsframe.h:96
unsigned int time
Definition: synchronizedlyricsframe.h:89
SynchedText(unsigned int ms, String str)
Definition: synchronizedlyricsframe.h:88
Single entry of time stamp and lyrics text.
Definition: synchronizedlyricsframe.h:87