~oxide-developers/oxide/1.3

« back to all changes in this revision

Viewing changes to qt/core/browser/oxide_qt_platform_integration.cc

  • Committer: Olivier Tilloy
  • Date: 2014-10-28 22:09:14 UTC
  • Revision ID: olivier.tilloy@canonical.com-20141028220914-df0cy46k8qql31ci
Tags: QT_1_3_2
Delegate unhandled URL schemes to the system.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// vim:expandtab:shiftwidth=2:tabstop=2:
 
2
// Copyright (C) 2014 Canonical Ltd.
 
3
 
 
4
// This library is free software; you can redistribute it and/or
 
5
// modify it under the terms of the GNU Lesser General Public
 
6
// License as published by the Free Software Foundation; either
 
7
// version 2.1 of the License, or (at your option) any later version.
 
8
 
 
9
// This library 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 GNU
 
12
// Lesser General Public License for more details.
 
13
 
 
14
// You should have received a copy of the GNU Lesser General Public
 
15
// License along with this library; if not, write to the Free Software
 
16
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 
17
 
 
18
#include "oxide_qt_platform_integration.h"
 
19
 
 
20
#include <QDesktopServices>
 
21
#include <QString>
 
22
#include <QUrl>
 
23
 
 
24
#include "url/gurl.h"
 
25
 
 
26
namespace oxide {
 
27
namespace qt {
 
28
 
 
29
PlatformIntegration::PlatformIntegration() {}
 
30
 
 
31
bool PlatformIntegration::LaunchURLExternally(const GURL& url) {
 
32
  return QDesktopServices::openUrl(QUrl(QString::fromStdString(url.spec())));
 
33
}
 
34
 
 
35
} // namespace qt
 
36
} // namespace oxide