~saviq/unity8/build-arm64

« back to all changes in this revision

Viewing changes to tests/plugins/Dash/cardcreator/8.res

  • Committer: Michał Sawicz
  • Date: 2016-07-15 09:51:02 UTC
  • mfrom: (2400.1.142 unity8)
  • Revision ID: michal.sawicz@canonical.com-20160715095102-hf5ac4iqnfn1itpw
Merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
AbstractButton { 
2
2
                id: root; 
3
3
                property var cardData;
4
 
                property string artShapeStyle: "inset"; 
5
4
                property string backgroundShapeStyle: "inset"; 
6
5
                property real fontScale: 1.0; 
7
6
                property var scopeStyle: null; 
 
7
                readonly property string title: cardData && cardData["title"] || "";
 
8
                property bool showHeader: true;
 
9
                implicitWidth: childrenRect.width;
 
10
                enabled: true;
8
11
                property int fixedHeaderHeight: -1; 
9
12
                property size fixedArtShapeSize: Qt.size(-1, -1); 
10
 
                readonly property string title: cardData && cardData["title"] || ""; 
11
 
                property bool showHeader: true; 
12
 
                implicitWidth: childrenRect.width; 
13
 
                enabled: true; 
14
13
signal action(var actionId);
15
14
Loader {
16
15
                                id: backgroundLoader; 
101
100
    id: touchdown;
102
101
    objectName: "touchdown";
103
102
    anchors { fill: backgroundLoader }
104
 
    visible: root.artShapeStyle != "shadow" && root.artShapeStyle != "icon" && root.pressed;
 
103
    visible: root.pressed;
105
104
    radius: "medium";
106
105
    borderSource: "radius_pressed.sci"
107
106
}