OSDN Git Service

Version 0.5
[fontmanager/fontmanager.git] / qml / fontmanager / EditorListDelegate.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Takumi Asaki
4 ** All rights reserved.
5 ** Contact: Takumi Asaki (takumi.asaki@gmail.com)
6 **
7 ** This file is part of the fontmanager application.
8 **
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ****************************************************************************/
38
39 import QtQuick 1.1
40 import com.nokia.meego 1.0
41 import com.nokia.extras 1.0
42 import 'UIConstants.js' as UI
43
44 Item {
45     id: listItem
46
47     signal clicked
48     property bool pressed: false
49
50     property bool isHeader: model.header
51
52     property int titleSize: (model.header ? UI.FONT_XLARGE : UI.FONT_DEFAULT)
53     property int titleWeight: Font.Bold
54     property color titleColor: theme.inverted ? (model.header ? UI.COLOR_FOREGROUND : UI.COLOR_INVERTED_FOREGROUND) : (UI.COLOR_FOREGROUND)
55
56     property int subtitleSize: UI.FONT_XSMALL
57     property int subtitleWeight: Font.Light
58     property color subtitleColor: theme.inverted ? UI.COLOR_SECONDARY_FOREGROUND : UI.COLOR_INVERTED_SECONDARY_FOREGROUND
59
60     height: UI.LIST_ITEM_HEIGHT_SMALL
61     width: parent.width
62
63     Rectangle {
64         anchors.fill: parent
65         anchors.leftMargin: -UI.MARGIN_XLARGE
66         anchors.rightMargin: -UI.MARGIN_XLARGE
67         anchors.topMargin: 1
68         anchors.bottomMargin: 1
69         color: UI.COLOR_SELECT
70         visible: listItem.isHeader
71     }
72
73     Row {
74         anchors.fill: parent
75         spacing: UI.DEFAULT_MARGIN
76
77         Item { width: UI.DEFAULT_MARGIN; height: 1; visible: !model.header }
78
79         Item {
80             //                        anchors.top: parent.top
81             height: UI.LIST_ITEM_HEIGHT_SMALL
82
83             Column {
84                 anchors.verticalCenter: parent.verticalCenter
85
86                 Text {
87                     id: mainText
88                     text: model.title
89                     font.weight: listItem.titleWeight
90                     font.pixelSize: listItem.titleSize
91                     color: listItem.titleColor
92                 }
93
94                 Text {
95                     id: subText
96                     text: model.subtitle
97                     font.weight: listItem.subtitleWeight
98                     font.pixelSize: listItem.subtitleSize
99                     color: listItem.subtitleColor
100
101                     visible: text != ""
102                 }
103             }
104         }
105     }
106
107     ListButton {
108         id: appendButton
109         anchors.right: parent.right
110         anchors.verticalCenter: parent.verticalCenter
111         anchors.rightMargin: UI.DEFAULT_MARGIN
112         iconSource: "image://theme/icon-m-toolbar-add"
113         onClicked: {
114             openSelectInstallFamilyDialog(model.priority)
115         }
116         visible: listItem.isHeader
117     }
118
119     Loader {
120         id: selectInstallFamilyDialogLoader
121         anchors.fill: parent
122     }
123
124     MouseArea {
125         id: selectItem
126         anchors.fill: parent
127         enabled: !listItem.isHeader
128         visible: !listItem.isHeader
129         onClicked: {
130             if (preferFamilyListView.currentIndex === index)
131                 preferFamilyListView.currentIndex = -1
132             else
133                 preferFamilyListView.currentIndex = index
134         }
135     }
136 }