OSDN Git Service

Version 0.5
[fontmanager/fontmanager.git] / qml / fontmanager / FontsConfViewPage.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.0 // to target S60 5th Edition or Maemo 5
40 import QtQuick 1.1
41 import com.nokia.meego 1.0
42 import 'UIConstants.js' as UI
43
44 Page {
45     id: fontsConfViewPage
46
47     tools: backTools
48
49     property alias text: textArea.text
50
51     PageHeader {
52         id: pageHeader
53         anchors.top: parent.top
54         anchors.left: parent.left
55         anchors.right: parent.right
56         text: qsTr("Current Fonts Config")
57     }
58
59     Rectangle {
60         id: rect
61         anchors.top: pageHeader.bottom
62         anchors.bottom: parent.bottom
63         anchors.left: parent.left
64         anchors.right: parent.right
65         anchors.margins: UI.DEFAULT_MARGIN
66
67         border.width: 1
68         border.color: "gray"
69         color: "transparent"
70
71         Flickable {
72             id: flickable
73             anchors.fill: parent
74             visible: controller.localFontsConfExists
75
76             clip: true
77             boundsBehavior: Flickable.StopAtBounds
78             contentWidth: textArea.paintedWidth
79             contentHeight: textArea.paintedHeight
80             Text {
81                 id: textArea
82                 //        readOnly: true
83                 //            anchors.fill: parent
84                 textFormat: Text.PlainText
85                 font.pixelSize: UI.FONT_DEFAULT_SIZE
86             }
87         }
88
89         Text {
90             id: emptyText
91             width: parent.width - UI.DEFAULT_MARGIN * 2
92             wrapMode: Text.WrapAtWordBoundaryOrAnywhere
93             anchors.centerIn: parent
94             text: qsTr("No such file or directory: %1").arg(controller.localFontsConfPath)
95             font.pixelSize: UI.FONT_XLARGE
96             font.bold: true
97             color: "gray"
98             visible: !controller.localFontsConfExists
99             horizontalAlignment: Text.AlignHCenter
100
101         }
102     }
103
104     ToolBarLayout {
105         id: backTools
106         ToolIcon {
107             platformIconId: "toolbar-back"
108             onClicked: pageStack.pop()
109         }
110     }
111
112 }