X-Git-Url: https://vcs.maemo.org/git/?a=blobdiff_plain;f=mardrone%2Fimports%2Fcom%2Fnokia%2Fandroid.1.1%2FCommonDialog.qml;fp=mardrone%2Fimports%2Fcom%2Fnokia%2Fandroid.1.1%2FCommonDialog.qml;h=045c74df778c754680a4c58d83f05fbe8dbf775c;hb=423f5226eddc5c327ef47559c03b0e2775add19e;hp=0000000000000000000000000000000000000000;hpb=c6326414c8585a359a4278f028042dfb4c0a749e;p=mardrone diff --git a/mardrone/imports/com/nokia/android.1.1/CommonDialog.qml b/mardrone/imports/com/nokia/android.1.1/CommonDialog.qml new file mode 100644 index 0000000..045c74d --- /dev/null +++ b/mardrone/imports/com/nokia/android.1.1/CommonDialog.qml @@ -0,0 +1,192 @@ +/**************************************************************************** +** +** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). +** All rights reserved. +** Contact: Nokia Corporation (qt-info@nokia.com) +** +** This file is part of the Qt Components project. +** +** $QT_BEGIN_LICENSE:BSD$ +** You may use this file under the terms of the BSD license as follows: +** +** "Redistribution and use in source and binary forms, with or without +** modification, are permitted provided that the following conditions are +** met: +** * Redistributions of source code must retain the above copyright +** notice, this list of conditions and the following disclaimer. +** * Redistributions in binary form must reproduce the above copyright +** notice, this list of conditions and the following disclaimer in +** the documentation and/or other materials provided with the +** distribution. +** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor +** the names of its contributors may be used to endorse or promote +** products derived from this software without specific prior written +** permission. +** +** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS +** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT +** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR +** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT +** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, +** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY +** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT +** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." +** $QT_END_LICENSE$ +** +****************************************************************************/ + +import QtQuick 1.1 +import "." 1.1 + +Dialog { + id: root + + property alias titleText: titleAreaText.text + property url titleIcon + property variant buttonTexts: [] + property bool privateCloseIcon: false + + signal buttonClicked(int index) + + onButtonTextsChanged: { + for (var i = buttonRow.children.length; i > 0; --i) { + buttonRow.children[i - 1].destroy() + } + for (var j = 0; j < buttonTexts.length; ++j) { + var button = buttonComponent.createObject(buttonRow) + button.text = buttonTexts[j] + button.index = j + } + } + + Component { + id: buttonComponent + ToolButton { + property int index + + width: internal.buttonWidth() + height: privateStyle.toolBarHeightLandscape + platformInverted: root.platformInverted + + onClicked: { + if (root.status == DialogStatus.Open) { + root.buttonClicked(index) + root.close() + } + } + } + } + + QtObject { + id: internal + + function buttonWidth() { + switch (buttonTexts.length) { + case 0: return 0 + case 1: return Math.round((privateStyle.dialogMaxSize - 3 * platformStyle.paddingMedium) / 2) + default: return (buttonContainer.width - (buttonTexts.length + 1) * + platformStyle.paddingMedium) / buttonTexts.length + } + } + + function iconSource() { + if (privateCloseIcon) { + return privateStyle.imagePath((iconMouseArea.pressed && !iconMouseArea.pressCancelled + ? "qtg_graf_popup_close_pressed" + : "qtg_graf_popup_close_normal"), + root.platformInverted) + } else { + return root.titleIcon + } + } + } + + title: Item { + anchors.left: parent.left + anchors.right: parent.right + height: platformStyle.graphicSizeSmall + 2 * platformStyle.paddingLarge + + LayoutMirroring.enabled: privateCloseIcon ? false : undefined + LayoutMirroring.childrenInherit: true + + Item { + id: titleLayoutHelper // needed to make the text mirror correctly + + anchors.left: parent.left + anchors.right: titleAreaIcon.source == "" ? parent.right : titleAreaIcon.left + anchors.top: parent.top + anchors.bottom: parent.bottom + anchors.margins: platformStyle.paddingLarge + + Text { + id: titleAreaText + + LayoutMirroring.enabled: root.LayoutMirroring.enabled + + anchors.fill: parent + font { family: platformStyle.fontFamilyRegular; pixelSize: platformStyle.fontSizeLarge } + color: root.platformInverted ? platformStyle.colorNormalLinkInverted + : platformStyle.colorNormalLink + elide: Text.ElideRight + horizontalAlignment: Text.AlignLeft + verticalAlignment: Text.AlignVCenter + } + } + + Image { + id: titleAreaIcon + + anchors.right: parent.right + anchors.rightMargin: platformStyle.paddingLarge + anchors.verticalCenter: parent.verticalCenter + source: internal.iconSource() + sourceSize.height: platformStyle.graphicSizeSmall + sourceSize.width: platformStyle.graphicSizeSmall + + MouseArea { + id: iconMouseArea + + property bool pressCancelled + + anchors.centerIn: parent + width: parent.width + 2 * platformStyle.paddingLarge + height: parent.height + 2 * platformStyle.paddingLarge + enabled: privateCloseIcon && root.status == DialogStatus.Open + + onPressed: { + pressCancelled = false + privateStyle.play(Android.BasicButton) + } + onClicked: { + if (!pressCancelled) + root.reject() + } + onReleased: { + if (!pressCancelled) + privateStyle.play(Android.PopupClose) + } + onExited: pressCancelled = true + } + } + } + + buttons: Item { + id: buttonContainer + + LayoutMirroring.enabled: false + LayoutMirroring.childrenInherit: true + + width: parent.width + height: buttonTexts.length ? privateStyle.toolBarHeightLandscape + 2 * platformStyle.paddingSmall : 0 + + Row { + id: buttonRow + objectName: "buttonRow" + anchors.centerIn: parent + spacing: platformStyle.paddingMedium + } + } +}