2 * Copyright 2014 Canonical Ltd.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Lesser General Public License as published by
6 * the Free Software Foundation; version 3.
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 Lesser General Public License for more details.
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 import Ubuntu.Components 1.1
19 import Ubuntu.Components.Themes 0.1
20 import "../Components"
22 import Ubuntu.Components.Themes.Ambiance 1.1 as Ambiance
27 property color backgroundColor: d.undefinedColor
28 property color headerColor: d.undefinedColor
29 property color footerColor: d.undefinedColor
30 property alias imageSource: overlaidImage.source
32 property alias title: header.title
33 property alias showHeader: header.visible
42 // As specified in qtmir, it will set the color value to this for fields left undefined
43 // This is also the default value of a color property in QML.
44 readonly property color undefinedColor: "#00000000"
46 readonly property color defaultBackgroundColor: header.visible ? ambiancePalette.normal.background : "black"
48 // Splash screen that shows the application icon and splashTitle
49 readonly property bool showIcon: overlaidImage.status == Image.Null && !root.showHeader
56 // mimic API of toolkit's MainView component required by MainViewStyle
57 property color backgroundColor: Qt.colorEqual(root.backgroundColor, d.undefinedColor) ? d.defaultBackgroundColor
58 : root.backgroundColor
59 property color headerColor: Qt.colorEqual(root.headerColor, d.undefinedColor) ? styledItem.backgroundColor
61 property color footerColor: Qt.colorEqual(root.footerColor, d.undefinedColor) ? styledItem.backgroundColor
64 // FIXME: fake a Theme object as to expose the Palette corresponding to the backgroundColor (see MainViewStyle.qml)
65 property var theme: QtObject {
67 property Palette palette: Qt.createQmlObject("import QtQuick 2.2;\
68 import Ubuntu.Components.Themes.%1 1.1;\
69 Palette {}".arg(styledItem.theme.name),
70 styledItem, "dynamicPalette");
73 // FIXME: should instead use future toolkit API:
74 // style: theme.createStyleComponent("MainViewStyle.qml", styledItem)
75 style: Component { MainViewStyle {theme: styledItem.theme} }
86 // mimic API of toolkit's AppHeader component required by PageHeadStyle
87 property Item pageStack
88 property Item contents
90 property var tabsModel
91 property var config: QtObject {
92 property color foregroundColor: styledItem.theme.palette.selected.backgroundText
93 property var sections: QtObject {}
96 // FIXME: should instead use future toolkit API:
97 // style: theme.createStyleComponent("PageHeadStyle.qml", header)
98 style: Component { PageHeadStyle {theme: styledItem.theme} }
103 anchors.centerIn: parent
104 anchors.verticalCenterOffset: header.visible ? header.height / 2 : 0
115 anchors.horizontalCenter: parent.horizontalCenter
116 anchors.verticalCenter: parent.verticalCenter
117 anchors.verticalCenterOffset: -units.gu(4)
119 height: units.gu(7.5)
128 sourceSize.width: iconShape.width
129 sourceSize.height: iconShape.height
130 source: d.showIcon ? root.icon : ""
131 fillMode: Image.PreserveAspectCrop
137 anchors.horizontalCenter: parent.horizontalCenter
138 anchors.top: iconShape.bottom
139 anchors.topMargin: units.gu(2)
142 color: styledItem.theme.palette.selected.backgroundText
147 anchors.centerIn: header.visible ? parent : undefined
148 anchors.verticalCenterOffset: header.visible ? header.height / 2 : 0
150 anchors.horizontalCenter: header.visible ? undefined : parent.horizontalCenter
151 anchors.bottom: header.visible ? undefined : parent.bottom
152 anchors.bottomMargin: header.visible ? 0 : units.gu(12)
159 enabled: parent.visible
160 // absorb all mouse events