Sayonara Player
typedefs.h
1 /* typedefs.h */
2 
3 /* Copyright (C) 2011-2020 Michael Lugmair (Lucio Carreras)
4  *
5  * This file is part of sayonara player
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  */
20 
21 #ifndef TYPEDEFS_H
22 #define TYPEDEFS_H
23 
24 #include <cstdint>
25 #include "Utils/SetFwd.h"
26 #include "Utils/MetaData/MetaDataFwd.h"
27 #include <QMetaType>
28 
29 class QByteArray;
30 class QString;
31 class QStringList;
32 template<typename A, typename B>
33 struct QPair;
34 template<typename A, typename B>
35 class QMap;
36 template<typename T>
37 class QList;
38 
44 using IntList = QList<int>;
45 using IdList = QList<int>;
46 using IdxList = QList<int>;
47 using BoolList = QList<bool>;
48 using Id = int32_t;
49 using ArtistId = Id;
50 using AlbumId = Id;
51 using TrackID = Id;
52 using IntSet = Util::Set<int>;
53 using IndexSet = Util::Set<int>;
54 using IdSet = Util::Set<Id>;
55 using LibraryId = int8_t;
56 using DbId = uint8_t;
57 using Byte = uint8_t;
58 using Disc = uint8_t;
59 using TrackNum = uint16_t;
60 using Year = uint16_t;
61 using Seconds = int32_t;
62 using MilliSeconds = int64_t;
63 using MicroSeconds = int64_t;
64 using NanoSeconds = int64_t;
65 using Bitrate = uint32_t;
66 using Filesize = uint64_t;
67 
68 template<typename K, typename V>
70 
71 enum class Rating : uint8_t
72 {
73  Zero = 0,
74  One = 1,
75  Two = 2,
76  Three = 3,
77  Four = 4,
78  Five = 5,
79  Last = 6
80 };
81 
82 enum class PlayState : unsigned char
83 {
84  Playing = 0,
85  Paused,
86  Stopped,
87  FirstStartup
88 };
89 
90 Q_DECLARE_METATYPE(Rating)
91 
92 #endif
QPair
Definition: typedefs.h:33
Util::Set
A set structure. Inherited from std::set with some useful methods. For integer and String this set is...
Definition: Set.h:37
QList
Definition: EngineUtils.h:33
QMap
Definition: org_mpris_media_player2_adaptor.h:21