blob: e68c64b08f444edb5db1ca3e5b71b5cebbc9b74a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
Copyright 2009 Last.fm Ltd.
- Primarily authored by Max Howell, Jono Cole and Doug Mansell
This file is part of liblastfm.
liblastfm is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
liblastfm is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with liblastfm. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef LASTFM_GLOBAL_H
#define LASTFM_GLOBAL_H
#define LASTFM_VERSION 0x00000303
#define LASTFM_VERSION_STRING "0.3.3"
#define LASTFM_MAJOR_VERSION 0
#define LASTFM_MINOR_VERSION 3
#define LASTFM_PATCH_VERSION 3
#include <QtGlobal>
#include <QMetaEnum>
#include <QString>
namespace lastfm
{
/** http://labs.trolltech.com/blogs/2008/10/09/coding-tip-pretty-printing-enum-values
* Tips for making this take a single parameter welcome! :)
*
* eg. lastfm::qMetaEnumString<QNetworkReply>( error, "NetworkError" );
*/
template <typename T> static inline QString qMetaEnumString( int enum_value, const char* enum_name )
{
QMetaObject meta = T::staticMetaObject;
for (int i=0; i < meta.enumeratorCount(); ++i)
{
QMetaEnum m = meta.enumerator(i);
if (m.name() == QLatin1String(enum_name))
return QLatin1String(m.valueToKey(enum_value));
}
return QString("Unknown enum value for \"%1\": %2").arg( enum_name ).arg( enum_value );
}
enum ImageSize
{
Small = 0,
Medium = 1,
Large = 2, /** seemingly 174x174 */
ExtraLarge = 3
};
//convenience
class Album;
class Artist;
class Audioscrobbler;
class AuthenticatedUser;
class Fingerprint;
class FingerprintableSource;
class FingerprintId;
class Mbid;
class MutableTrack;
class NetworkAccessManager;
class Playlist;
class User;
class RadioStation;
class Scrobble;
class Tag;
class Track;
class XmlQuery;
class Xspf;
}
#ifdef LASTFM_COLLAPSE_NAMESPACE
using lastfm::Album;
using lastfm::Artist;
using lastfm::Audioscrobbler;
using lastfm::AuthenticatedUser;
using lastfm::Fingerprint;
using lastfm::FingerprintId;
using lastfm::Mbid;
using lastfm::MutableTrack;
using lastfm::Playlist;
using lastfm::User;
using lastfm::RadioStation;
using lastfm::Scrobble;
using lastfm::Tag;
using lastfm::Track;
using lastfm::XmlQuery;
using lastfm::Xspf;
#endif
//convenience
class QDomDocument;
class QNetworkAccessManager;
class QNetworkReply;
//convenience for development
#include <QDebug>
#endif //LASTFM_GLOBAL_H
|