~osomon/webbrowser-app/doc-package

« back to all changes in this revision

Viewing changes to src/app/Share.qml

  • Committer: CI bot
  • Author(s): Michael Sheldon
  • Date: 2014-06-27 08:11:40 UTC
  • mfrom: (574.1.8 link-share)
  • Revision ID: ps-jenkins@lists.canonical.com-20140627081140-sswkt1uhd40ep261
Add support for sharing links via content-hub. Fixes: 1294764

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright 2014 Canonical Ltd.
 
3
 *
 
4
 * This file is part of webbrowser-app.
 
5
 *
 
6
 * webbrowser-app 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; version 3.
 
9
 *
 
10
 * webbrowser-app is distributed in the hope that it will be useful,
 
11
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 * GNU General Public License for more details.
 
14
 *
 
15
 * You should have received a copy of the GNU General Public License
 
16
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
import QtQuick 2.0
 
20
import Ubuntu.Components 0.1
 
21
import Ubuntu.DownloadManager 0.1
 
22
import Ubuntu.Content 0.1
 
23
 
 
24
Item {
 
25
    id: shareItem
 
26
 
 
27
    ContentShareDialog {
 
28
        id: shareDialog
 
29
    }
 
30
 
 
31
    Component {
 
32
        id: contentItemComponent
 
33
        ContentItem { }
 
34
    }
 
35
 
 
36
    function share(url, name, contentType) {
 
37
        shareDialog.contentType = contentType
 
38
        shareDialog.items.push(contentItemComponent.createObject(shareItem, {"url" : url, "name" : name}))
 
39
        shareDialog.show()
 
40
    }
 
41
 
 
42
    function shareLink(url, title) {
 
43
        share(url, title, ContentType.Links)
 
44
    }
 
45
 
 
46
}