Merge lp:~cimi/unity8/unity8.dash-plugins-renderer into lp:unity8

Proposed by Andrea Cimitan
Status: Rejected
Rejected by: Andrea Cimitan
Proposed branch: lp:~cimi/unity8/unity8.dash-plugins-renderer
Merge into: lp:unity8
Prerequisite: lp:~mhr3/unity8/expose-renderer-hint
Diff against target: 347 lines (+233/-65)
6 files modified
Components/Tile.qml (+6/-63)
Components/TileStyle.qml (+87/-0)
Dash/Generic/GenericFilterGrid.qml (+0/-2)
Dash/Generic/GenericFilterGridDashPlugin.qml (+47/-0)
Dash/Generic/TileStyleDashPlugin.qml (+87/-0)
Dash/GenericScopeView.qml (+6/-0)
To merge this branch: bzr merge lp:~cimi/unity8/unity8.dash-plugins-renderer
Reviewer Review Type Date Requested Status
PS Jenkins bot (community) continuous-integration Needs Fixing
Unity Team Pending
Review via email: mp+189055@code.launchpad.net

Commit message

Make Tile themeable, use different delegate for Dash Plugins

Description of the change

Make Tile themeable, use different delegate for Dash Plugins

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :

FAILED: Continuous integration, rev:375
No commit message was specified in the merge proposal. Click on the following link and set the commit message (if you want a jenkins rebuild you need to trigger it yourself):
https://code.launchpad.net/~cimi/unity8/unity8.dash-plugins-renderer/+merge/189055/+edit-commit-message

http://jenkins.qa.ubuntu.com/job/unity8-ci/1245/
Executed test runs:
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-saucy/4461
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-touch/2221/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity-phablet-qmluitests-saucy/2054
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-saucy-amd64-ci/268
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-saucy-armhf-ci/1245
        deb: http://jenkins.qa.ubuntu.com/job/unity8-saucy-armhf-ci/1245/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/unity8-saucy-i386-ci/1244
    SUCCESS: http://jenkins.qa.ubuntu.com/job/autopilot-testrunner-otto-saucy/743
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-saucy-amd64/336
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-saucy-amd64/336/artifact/work/output/*zip*/output.zip
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-saucy-armhf/2223
        deb: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-builder-saucy-armhf/2223/artifact/work/output/*zip*/output.zip
    FAILURE: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-runner-maguro/1895/console
    SUCCESS: http://jenkins.qa.ubuntu.com/job/generic-mediumtests-runner-mako/1912

Click here to trigger a rebuild:
http://s-jenkins:8080/job/unity8-ci/1245/rebuild

review: Needs Fixing (continuous-integration)

Unmerged revisions

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Components/Tile.qml'
--- Components/Tile.qml 2013-08-05 15:02:05 +0000
+++ Components/Tile.qml 2013-10-03 11:50:08 +0000
@@ -18,70 +18,13 @@
18import Ubuntu.Components 0.118import Ubuntu.Components 0.1
1919
20AbstractButton {20AbstractButton {
21 id: root21 property url source
22 property alias source: image.source22 property int fillMode
23 property alias fillMode: image.fillMode23 property int horizontalAlignment
24 property alias horizontalAlignment: image.horizontalAlignment24 property int verticalAlignment
25 property alias verticalAlignment: image.verticalAlignment25 property string text
26 property alias text: label.text
27 property int imageWidth26 property int imageWidth
28 property int imageHeight27 property int imageHeight
2928
30 UbuntuShape {29 style: TileStyle {}
31 id: icon
32 anchors {
33 top: parent.top
34 horizontalCenter: parent.horizontalCenter
35 }
36 radius: "medium"
37 width: imageWidth
38 height: imageHeight
39 image: Image {
40 id: image
41 objectName: "image"
42 sourceSize { width: icon.width; height: icon.height }
43 asynchronous: true
44 cache: false
45 }
46 }
47
48 UbuntuShape {
49 id: borderPressed
50 objectName: "borderPressed"
51
52 anchors.fill: icon
53 radius: "medium"
54 borderSource: "radius_pressed.sci"
55 opacity: root.pressed ? 1.0 : 0.0
56 Behavior on opacity { NumberAnimation { duration: 200; easing.type: Easing.OutQuint } }
57 }
58
59 Item {
60 anchors {
61 left: parent.left
62 right: parent.right
63 top: icon.bottom
64 }
65 height: units.gu(2)
66
67 Label {
68 id: label
69 objectName: "label"
70 anchors {
71 baseline: parent.bottom
72 left: parent.left
73 right: parent.right
74 leftMargin: units.gu(1)
75 rightMargin: units.gu(1)
76 }
77
78 color: Theme.palette.selected.backgroundText
79 opacity: 0.9
80 style: Text.Raised
81 styleColor: "black"
82 fontSize: "small"
83 elide: Text.ElideMiddle
84 horizontalAlignment: Text.AlignHCenter
85 }
86 }
87}30}
8831
=== added file 'Components/TileStyle.qml'
--- Components/TileStyle.qml 1970-01-01 00:00:00 +0000
+++ Components/TileStyle.qml 2013-10-03 11:50:08 +0000
@@ -0,0 +1,87 @@
1/*
2 * Copyright (C) 2013 Canonical, Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17import QtQuick 2.0
18import Ubuntu.Components 0.1
19
20Item {
21 id: tile
22
23 anchors.fill: parent
24
25 UbuntuShape {
26 id: icon
27 anchors {
28 top: parent.top
29 horizontalCenter: parent.horizontalCenter
30 }
31 radius: "medium"
32 width: styledItem.imageWidth
33 height: styledItem.imageHeight
34 image: Image {
35 id: image
36 objectName: "image"
37 sourceSize { width: icon.width; height: icon.height }
38 asynchronous: true
39 cache: false
40 source: styledItem.source
41 fillMode: styledItem.fillMode
42 horizontalAlignment: styledItem.horizontalAlignment
43 verticalAlignment: styledItem.verticalAlignment
44 }
45 }
46
47 UbuntuShape {
48 id: borderPressed
49 objectName: "borderPressed"
50
51 anchors.fill: icon
52 radius: "medium"
53 borderSource: "radius_pressed.sci"
54 opacity: styledItem.pressed ? 1.0 : 0.0
55 Behavior on opacity { NumberAnimation { duration: 200; easing.type: Easing.OutQuint } }
56 }
57
58 Item {
59 anchors {
60 left: parent.left
61 right: parent.right
62 top: icon.bottom
63 }
64 height: units.gu(2)
65
66 Label {
67 id: label
68 objectName: "label"
69 anchors {
70 baseline: parent.bottom
71 left: parent.left
72 right: parent.right
73 leftMargin: units.gu(1)
74 rightMargin: units.gu(1)
75 }
76
77 color: Theme.palette.selected.backgroundText
78 opacity: 0.9
79 style: Text.Raised
80 styleColor: "black"
81 fontSize: "small"
82 elide: Text.ElideMiddle
83 horizontalAlignment: Text.AlignHCenter
84 text: styledItem.text
85 }
86 }
87}
088
=== modified file 'Dash/Generic/GenericFilterGrid.qml'
--- Dash/Generic/GenericFilterGrid.qml 2013-09-05 10:02:00 +0000
+++ Dash/Generic/GenericFilterGrid.qml 2013-10-03 11:50:08 +0000
@@ -39,9 +39,7 @@
39 text: model.title39 text: model.title
40 imageWidth: filtergrid.iconWidth40 imageWidth: filtergrid.iconWidth
41 imageHeight: filtergrid.iconHeight41 imageHeight: filtergrid.iconHeight
42
43 source: model.icon42 source: model.icon
44
45 fillMode: Image.PreserveAspectCrop43 fillMode: Image.PreserveAspectCrop
4644
47 onClicked: {45 onClicked: {
4846
=== added file 'Dash/Generic/GenericFilterGridDashPlugin.qml'
--- Dash/Generic/GenericFilterGridDashPlugin.qml 1970-01-01 00:00:00 +0000
+++ Dash/Generic/GenericFilterGridDashPlugin.qml 2013-10-03 11:50:08 +0000
@@ -0,0 +1,47 @@
1/*
2 * Copyright (C) 2013 Canonical, Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17import QtQuick 2.0
18import Ubuntu.Components 0.1
19import "../../Components"
20
21GenericFilterGrid {
22 id: filtergrid
23
24 delegate: Tile {
25 id: tile
26 objectName: "delegate" + index
27 width: filtergrid.cellWidth
28 height: filtergrid.cellHeight
29 text: model.title
30 imageWidth: filtergrid.iconWidth
31 imageHeight: filtergrid.iconHeight
32 source: model.icon
33 fillMode: Image.PreserveAspectCrop
34
35 style: TileStyleDashPlugin {}
36
37 onClicked: {
38 var data = { model: model }
39 filtergrid.clicked(index, data, tile.y)
40 }
41
42 onPressAndHold: {
43 var data = { model: model }
44 filtergrid.pressAndHold(index, data, tile.y)
45 }
46 }
47}
048
=== added file 'Dash/Generic/TileStyleDashPlugin.qml'
--- Dash/Generic/TileStyleDashPlugin.qml 1970-01-01 00:00:00 +0000
+++ Dash/Generic/TileStyleDashPlugin.qml 2013-10-03 11:50:08 +0000
@@ -0,0 +1,87 @@
1/*
2 * Copyright (C) 2013 Canonical, Ltd.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 3.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16
17import QtQuick 2.0
18import Ubuntu.Components 0.1
19
20Item {
21 id: tile
22
23 anchors.fill: parent
24
25 Item {
26 id: icon
27 anchors {
28 top: parent.top
29 horizontalCenter: parent.horizontalCenter
30 }
31 width: styledItem.imageWidth
32 height: styledItem.imageHeight
33
34 Image {
35 id: image
36 objectName: "image"
37 sourceSize { width: icon.width; height: icon.height }
38 asynchronous: true
39 cache: false
40 source: styledItem.source
41 fillMode: styledItem.fillMode
42 horizontalAlignment: styledItem.horizontalAlignment
43 verticalAlignment: styledItem.verticalAlignment
44 }
45 }
46
47 UbuntuShape {
48 id: borderPressed
49 objectName: "borderPressed"
50
51 anchors.fill: icon
52 radius: "medium"
53 borderSource: "radius_pressed.sci"
54 opacity: styledItem.pressed ? 1.0 : 0.0
55 Behavior on opacity { NumberAnimation { duration: 200; easing.type: Easing.OutQuint } }
56 }
57
58 Item {
59 anchors {
60 left: parent.left
61 right: parent.right
62 top: icon.bottom
63 }
64 height: units.gu(2)
65
66 Label {
67 id: label
68 objectName: "label"
69 anchors {
70 baseline: parent.bottom
71 left: parent.left
72 right: parent.right
73 leftMargin: units.gu(1)
74 rightMargin: units.gu(1)
75 }
76
77 color: Theme.palette.selected.backgroundText
78 opacity: 0.9
79 style: Text.Raised
80 styleColor: "black"
81 fontSize: "small"
82 elide: Text.ElideMiddle
83 horizontalAlignment: Text.AlignHCenter
84 text: styledItem.text
85 }
86 }
87}
088
=== modified file 'Dash/GenericScopeView.qml'
--- Dash/GenericScopeView.qml 2013-10-03 11:50:07 +0000
+++ Dash/GenericScopeView.qml 2013-10-03 11:50:08 +0000
@@ -209,6 +209,12 @@
209 switch (contentType) {209 switch (contentType) {
210 case "video": return "Generic/GenericFilterGridPotrait.qml";210 case "video": return "Generic/GenericFilterGridPotrait.qml";
211 case "music": return "Music/MusicFilterGrid.qml";211 case "music": return "Music/MusicFilterGrid.qml";
212 case "apps": {
213 if (rendererHint == "toggled")
214 return "Generic/GenericFilterGridDashPlugin.qml";
215 else
216 return "Generic/GenericFilterGrid.qml";
217 }
212 default: return "Generic/GenericFilterGrid.qml";218 default: return "Generic/GenericFilterGrid.qml";
213 }219 }
214 }220 }

Subscribers

People subscribed via source and target branches