Child: [909c33] (diff)

Download this file

globals.h    83 lines (73 with data), 2.1 kB

 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
/* Copyright (C) 2012 Lucio Carreras
*
* This file is part of sayonara player
*
* This program 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.
* This program is distributed in the hope that it will be useful,
* but WITHOUT SANY 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GLOBALS_H_
#define GLOBALS_H_
#include <QString>
#ifndef PREFIX
#define PREFIX "/usr"
#endif
enum AudioState {
AUDIO_UNKNOWN,
AUDIO_STOPPED,
AUDIO_PLAYING,
AUDIO_PAUSED
};
#define DARK_BLUE(x) QString("<font color=#0000FF>") + x + QString("</font>")
#define LIGHT_BLUE(x) QString("<font color=#8888FF>") + x + QString("</font>")
#define PLUGIN_NUM 5
#define PLUGIN_NONE 0
#define PLUGIN_LFM_RADIO 1
#define PLUGIN_STREAM 2
#define PLUGIN_PODCASTS 3
#define PLUGIN_EQUALIZER 4
#define PLUGIN_PLAYLIST_CHOOSER 5
#define PLUGIN_LEVEL 6
namespace Sort {
enum SortOrder {
NoSorting=0,
ArtistNameAsc,
ArtistNameDesc,
ArtistTrackcountAsc,
ArtistTrackcountDesc,
AlbumNameAsc,
AlbumNameDesc,
AlbumYearAsc,
AlbumYearDesc,
AlbumTracksAsc,
AlbumTracksDesc,
AlbumDurationAsc,
AlbumDurationDesc,
TrackNumAsc,
TrackNumDesc,
TrackTitleAsc,
TrackTitleDesc,
TrackAlbumAsc,
TrackAlbumDesc,
TrackArtistAsc,
TrackArtistDesc,
TrackYearAsc,
TrackYearDesc,
TrackLenghtAsc,
TrackLengthDesc,
TrackBitrateAsc,
TrackBitrateDesc,
TrackSizeAsc,
TrackSizeDesc,
TrackDiscnumberAsc,
TrackDiscnumberDesc
};
};
#endif /* GLOBALS_H_ */