]> git.sur5r.net Git - minitube/blob - src/compatibility/pathsservice.cpp
Imported Upstream version 2.5.1
[minitube] / src / compatibility / pathsservice.cpp
1 /* $BEGIN_LICENSE
2
3 This file is part of Minitube.
4 Copyright 2015, Flavio Tordini <flavio.tordini@gmail.com>
5
6 Minitube is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 Minitube is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with Minitube.  If not, see <http://www.gnu.org/licenses/>.
18
19 $END_LICENSE */
20
21 #include "pathsservice.h"
22
23 #include <QDesktopServices>
24
25 namespace {
26
27 #if QT_VERSION >= 0x050000
28 typedef QStandardPaths PathProvider;
29
30 #define getLocation writableLocation
31 #else
32 typedef QDesktopServices PathProvider;
33
34 #define getLocation storageLocation
35 #endif  // QT_VERSION >= 0x050000
36
37 }  // namespace
38
39 namespace Paths {
40 QString getMoviesLocation() {
41     return PathProvider::getLocation(PathProvider::MoviesLocation);
42 }
43
44 QString getDesktopLocation() {
45     return PathProvider::getLocation(PathProvider::DesktopLocation);
46 }
47
48 QString getHomeLocation() {
49     return PathProvider::getLocation(PathProvider::HomeLocation);
50 }
51
52 QString getDataLocation() {
53     return PathProvider::getLocation(PathProvider::DataLocation);
54 }
55
56 QString getPicturesLocation() {
57     return PathProvider::getLocation(PathProvider::PicturesLocation);
58 }
59
60 QString getTempLocation() {
61     return PathProvider::getLocation(PathProvider::TempLocation);
62 }
63
64 QString getCacheLocation() {
65     return PathProvider::getLocation(PathProvider::CacheLocation);
66 }
67 }