~elopio/gallery-app/revert_workaround-1302706-click_toolbar_button_failure

« back to all changes in this revision

Viewing changes to rc/qml/MediaViewer/GalleryPhotoEditorPage.qml

  • Committer: Leo Arias
  • Date: 2015-05-15 08:05:23 UTC
  • mfrom: (954.1.241 gallery-app)
  • Revision ID: leo.arias@canonical.com-20150515080523-i2of3vr8h7dioj59
Now the toolbar object is not needed at all.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
import Ubuntu.Components 1.1
 
3
 
 
4
/*
 
5
 * Copyright (C) 2014 Canonical Ltd
 
6
 *
 
7
 * This program is free software: you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License version 3 as
 
9
 * published by the Free Software Foundation.
 
10
 *
 
11
 * This program 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 this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
 */
 
19
 
 
20
Page {
 
21
    id: page
 
22
    property string photo
 
23
    signal done(bool photoWasModified)
 
24
 
 
25
    title: i18n.tr("Edit Photo")
 
26
 
 
27
    head.backAction: Action {
 
28
        iconName: "back"
 
29
        onTriggered: editor.close(true)
 
30
    }
 
31
    head.actions: editor.actions
 
32
 
 
33
    PhotoEditor {
 
34
        id: editor
 
35
        anchors.fill: parent
 
36
        onClosed: page.done(photoWasModified)
 
37
    }
 
38
 
 
39
    onActiveChanged: {
 
40
        if (active) editor.open(page.photo)
 
41
    }
 
42
}