Qt 4.8
qdesktopservices_blackberry.cpp
Go to the documentation of this file.
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 - 2012 Research In Motion <blackberry-qt@qnx.com>
4 ** Contact: http://www.qt-project.org/legal
5 **
6 ** This file is part of the QtCore module of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** Commercial License Usage
10 ** Licensees holding valid commercial Qt licenses may use this file in
11 ** accordance with the commercial license agreement provided with the
12 ** Software or, alternatively, in accordance with the terms contained in
13 ** a written agreement between you and Digia. For licensing terms and
14 ** conditions see http://qt.digia.com/licensing. For further information
15 ** use the contact form at http://qt.digia.com/contact-us.
16 **
17 ** GNU Lesser General Public License Usage
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file. Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Digia gives you certain additional
26 ** rights. These rights are described in the Digia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** GNU General Public License Usage
30 ** Alternatively, this file may be used under the terms of the GNU
31 ** General Public License version 3.0 as published by the Free Software
32 ** Foundation and appearing in the file LICENSE.GPL included in the
33 ** packaging of this file. Please review the following information to
34 ** ensure the GNU General Public License version 3.0 requirements will be
35 ** met: http://www.gnu.org/copyleft/gpl.html.
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41 
42 #ifndef QT_NO_DESKTOPSERVICES
43 
44 #include <qurl.h>
45 #include <bps/navigator.h>
46 #include <qdir.h>
47 
49 
50 static bool navigatorInvoke(const QUrl &url)
51 {
52  if (!url.isValid() || url.isRelative())
53  return false;
54 
55  int ret = navigator_invoke(url.toString().toUtf8(), 0);
56 
57  return (ret == BPS_SUCCESS);
58 }
59 
60 static bool launchWebBrowser(const QUrl &url)
61 {
62  return navigatorInvoke(url);
63 }
64 
65 static bool openDocument(const QUrl &file)
66 {
67  return navigatorInvoke(file);
68 }
69 
71 {
73  return QDir::tempPath();
75  return QDir::homePath() + QLatin1String("/Cache");
76 
77  QString path;
78 
79  const int index = QDir::homePath().lastIndexOf("/data");
80 
81  const QString sharedRoot = QDir::homePath().replace(index,
82  QDir::homePath().length() - index, "/shared");
83 
84  switch (type) {
85  case DataLocation:
86  case DesktopLocation:
87  case HomeLocation:
88  path = QDir::homePath();
89  break;
90  case DocumentsLocation:
91  path = sharedRoot + QLatin1String("/documents");
92  break;
93  case PicturesLocation:
94  path = sharedRoot + QLatin1String("/photos");
95  break;
96  case MusicLocation:
97  path = sharedRoot + QLatin1String("/music");
98  break;
99  case MoviesLocation:
100  path = sharedRoot + QLatin1String("/videos");
101  break;
102  default:
103  break;
104  }
105 
106  return path;
107 }
108 
110 {
111  return storageLocation(type);
112 }
113 
115 
116 #endif // QT_NO_DESKTOPSERVICES
int type
Definition: qmetatype.cpp:239
bool isValid() const
Returns true if the URL is valid; otherwise returns false.
Definition: qurl.cpp:4303
#define QT_END_NAMESPACE
This macro expands to.
Definition: qglobal.h:90
QString toString(FormattingOptions options=None) const
Returns the human-displayable string representation of the URL.
Definition: qurl.cpp:5896
static QString storageLocation(StandardLocation type)
Returns the default system directory where files of type belong, or an empty string if the location c...
static QString displayName(StandardLocation type)
Returns a localized display name for the given location type or an empty QString if no relevant locat...
QByteArray toUtf8() const Q_REQUIRED_RESULT
Returns a UTF-8 representation of the string as a QByteArray.
Definition: qstring.cpp:4074
QString & replace(int i, int len, QChar after)
Definition: qstring.cpp:2005
StandardLocation
This enum describes the different locations that can be queried by QDesktopServices::storageLocation ...
QLatin1String(DBUS_INTERFACE_DBUS))) Q_GLOBAL_STATIC_WITH_ARGS(QString
The QUrl class provides a convenient interface for working with URLs.
Definition: qurl.h:61
The QString class provides a Unicode character string.
Definition: qstring.h:83
bool isRelative() const
Returns true if the URL is relative; otherwise returns false.
Definition: qurl.cpp:5880
#define QT_BEGIN_NAMESPACE
This macro expands to.
Definition: qglobal.h:89
static bool openDocument(const QUrl &file)
static QString tempPath()
Returns the absolute path of the system&#39;s temporary directory.
Definition: qdir.cpp:1987
static bool launchWebBrowser(const QUrl &url)
int lastIndexOf(QChar c, int from=-1, Qt::CaseSensitivity cs=Qt::CaseSensitive) const
Definition: qstring.cpp:3000
quint16 index
static bool navigatorInvoke(const QUrl &url)
static QString homePath()
Returns the absolute path of the user&#39;s home directory.
Definition: qdir.cpp:1942