components for android added
[mardrone] / mardrone / imports / com / meego / extras / ListDelegate.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the Qt Components project.
8 **
9 ** $QT_BEGIN_LICENSE:BSD$
10 ** You may use this file under the terms of the BSD license as follows:
11 **
12 ** "Redistribution and use in source and binary forms, with or without
13 ** modification, are permitted provided that the following conditions are
14 ** met:
15 **   * Redistributions of source code must retain the above copyright
16 **     notice, this list of conditions and the following disclaimer.
17 **   * Redistributions in binary form must reproduce the above copyright
18 **     notice, this list of conditions and the following disclaimer in
19 **     the documentation and/or other materials provided with the
20 **     distribution.
21 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
22 **     the names of its contributors may be used to endorse or promote
23 **     products derived from this software without specific prior written
24 **     permission.
25 **
26 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
27 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
28 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
29 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
30 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
31 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
32 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
33 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
34 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
35 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
36 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 1.1
42 import com.nokia.meego 1.0
43 import "constants.js" as UI
44
45 Item {
46     id: listItem
47
48     signal clicked
49     property alias pressed: mouseArea.pressed
50
51     property int titleSize: UI.LIST_TILE_SIZE
52     property int titleWeight: Font.Bold
53     property string titleFont: UI.FONT_FAMILY
54     property color titleColor: theme.inverted ? UI.LIST_TITLE_COLOR_INVERTED : UI.LIST_TITLE_COLOR
55     property color titleColorPressed: theme.inverted ? UI.LIST_TITLE_COLOR_PRESSED_INVERTED : UI.LIST_TITLE_COLOR_PRESSED
56
57     property int subtitleSize: UI.LIST_SUBTILE_SIZE
58     property int subtitleWeight: Font.Normal
59     property string subtitleFont: UI.FONT_FAMILY_LIGHT
60     property color subtitleColor: theme.inverted ? UI.LIST_SUBTITLE_COLOR_INVERTED : UI.LIST_SUBTITLE_COLOR
61     property color subtitleColorPressed: theme.inverted ? UI.LIST_SUBTITLE_COLOR_PRESSED_INVERTED : UI.LIST_SUBTITLE_COLOR_PRESSED
62
63     height: UI.LIST_ITEM_HEIGHT
64     width: parent.width
65
66     BorderImage {
67         id: background
68         anchors.fill: parent
69         // Fill page porders
70         anchors.leftMargin: -UI.MARGIN_XLARGE
71         anchors.rightMargin: -UI.MARGIN_XLARGE
72         visible: mouseArea.pressed
73         source: theme.inverted ? "image://theme/meegotouch-panel-inverted-background-pressed" : "image://theme/meegotouch-panel-background-pressed"
74     }
75
76     Row {
77         anchors.fill: parent
78         spacing: UI.LIST_ITEM_SPACING
79
80         Image {
81             anchors.verticalCenter: parent.verticalCenter
82             visible: model.iconSource ? true : false
83             width: UI.LIST_ICON_SIZE
84             height: UI.LIST_ICON_SIZE
85             source: model.iconSource ? model.iconSource : ""
86         }
87
88         Column {
89             anchors.verticalCenter: parent.verticalCenter
90
91             Label {
92                 id: mainText
93                 text: model.title
94                 font.family: listItem.titleFont
95                 font.weight: listItem.titleWeight
96                 font.pixelSize: listItem.titleSize
97                 color: mouseArea.pressed ? listItem.titleColorPressed : listItem.titleColor
98             }
99
100             Label {
101                 id: subText
102                 text: model.subtitle ? model.subtitle : ""
103                 font.family: listItem.subtitleFont
104                 font.weight: listItem.subtitleWeight
105                 font.pixelSize: listItem.subtitleSize
106                 color: mouseArea.pressed ? listItem.subtitleColorPressed : listItem.subtitleColor
107
108                 visible: text != ""
109             }
110         }
111     }
112     MouseArea {
113         id: mouseArea;
114         anchors.fill: parent
115         onClicked: {
116             listItem.clicked();
117         }
118     }
119 }