|
1 /* |
|
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU Lesser General Public License as published by |
|
7 * the Free Software Foundation, version 2.1 of the License. |
|
8 * |
|
9 * This program is distributed in the hope that it will be useful, |
|
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 * GNU Lesser General Public License for more details. |
|
13 * |
|
14 * You should have received a copy of the GNU Lesser General Public License |
|
15 * along with this program. If not, |
|
16 * see "http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html/". |
|
17 * |
|
18 * Description: |
|
19 * |
|
20 */ |
|
21 |
|
22 #ifndef XQUTILS_P_H |
|
23 #define XQUTILS_P_H |
|
24 |
|
25 // INCLUDES |
|
26 #include <exception> |
|
27 #include <e32base.h> |
|
28 |
|
29 // FORWARD DECLARATIONS |
|
30 class XQUtils; |
|
31 class CDocumentHandler; |
|
32 |
|
33 // CLASS DECLARATION |
|
34 class XQUtilsPrivate: public CBase |
|
35 { |
|
36 public: |
|
37 XQUtilsPrivate(XQUtils* utils); |
|
38 ~XQUtilsPrivate(); |
|
39 |
|
40 bool launchFile(const QString& filename); |
|
41 void resetInactivityTime(); |
|
42 |
|
43 static QString romRootPath(); |
|
44 static QString phoneMemoryRootPath(); |
|
45 static QString memoryCardRootPath(); |
|
46 static QString gamesPath(); |
|
47 static QString installsPath(); |
|
48 static QString othersPath(); |
|
49 static QString videosPath(); |
|
50 static QString imagesPath(); |
|
51 static QString picturesPath(); |
|
52 static QString gmsPicturesPath(); |
|
53 static QString mmsBackgroundImagesPath(); |
|
54 static QString presenceLogosPath(); |
|
55 static QString soundsPath(); |
|
56 static QString digitalSoundsPath(); |
|
57 static QString simpleSoundsPath(); |
|
58 static QString imagesThumbnailPath(); |
|
59 static QString memoryCardContactsPath(); |
|
60 |
|
61 XQUtils::Error error() const; |
|
62 |
|
63 private: |
|
64 CDocumentHandler* iDocHandler; |
|
65 XQUtils* q; |
|
66 int iError; |
|
67 }; |
|
68 |
|
69 #endif /*XQUTILS_P_H*/ |
|
70 |
|
71 // End of file |