From: Ruediger Gad Date: Sun, 15 Apr 2012 14:51:23 +0000 (+0200) Subject: Update AboutDialog. X-Git-Url: http://git.maemo.org/git/?p=qzeecontrol;a=commitdiff_plain;h=fc2020bb13cb1f19673bff100b9e3cdfdfb97ade Update AboutDialog. --- diff --git a/qml/QZeeControl/AboutDialog.qml b/qml/QZeeControl/AboutDialog.qml index 9b64545..80af596 100644 --- a/qml/QZeeControl/AboutDialog.qml +++ b/qml/QZeeControl/AboutDialog.qml @@ -24,49 +24,50 @@ Dialog { id: aboutDialog content:Item { - anchors.fill: parent + anchors.fill: parent - Text { - id: homepage - text: "QZeeControl

Version 0.3.0
" - textFormat: Text.RichText; - onLinkActivated: { Qt.openUrlExternally(link); } - font.pixelSize: 25; horizontalAlignment: Text.AlignHCenter; - anchors.horizontalCenter: parent.horizontalCenter; anchors.bottom: description.top; anchors.bottomMargin: 8 - } + Text { + id: homepage + text: "QZeeControl

Version 0.3.0
" + textFormat: Text.RichText + onLinkActivated: Qt.openUrlExternally(link) + font.pixelSize: 25 + horizontalAlignment: Text.AlignHCenter + anchors.horizontalCenter: parent.horizontalCenter; anchors.bottom: description.top; anchors.bottomMargin: 8 + } - Text { - id: description - text: "Control your N9 remotely." - font.pixelSize: 25; font.bold: true; anchors.horizontalCenter: parent.horizontalCenter; anchors.bottom: author.top; anchors.bottomMargin: 12; color: "white" - } + Text { + id: description + text: "Control your N9 remotely." + font.pixelSize: 25; font.bold: true; anchors.horizontalCenter: parent.horizontalCenter; anchors.bottom: author.top; anchors.bottomMargin: 12; color: "white" + } - Text { - id: author; - text: "Author:
" - + "Ruediger Gad - r.c.g@gmx.de
" - textFormat: Text.RichText; - onLinkActivated: { Qt.openUrlExternally(link); } - font.pixelSize: 20; anchors.centerIn: parent; color: "lightgray"; horizontalAlignment: Text.AlignHCenter - } + Text { + id: author + text: "Author:
" + + "Ruediger Gad - http://ruedigergad.com/
" + + "Logo:
" + + "Michaela Rother - http://www.michaelarother.de/
" + textFormat: Text.RichText + onLinkActivated: Qt.openUrlExternally(link) + font.pixelSize: 20; anchors.centerIn: parent; color: "lightgray"; horizontalAlignment: Text.AlignHCenter + } - Text { - id: license - text: "QZeeControl is free software: you can redistribute it and/or modify " - + "it under the terms of the GNU General Public License as published by " - + "the Free Software Foundation, either version 3 of the License, or " - + "(at your option) any later version.

" - + "Zeemote (TM) is a trademark of Zeemote Technology Inc. Other trademarks are property of their respective owners." - textFormat: Text.RichText; - onLinkActivated: { Qt.openUrlExternally(link); } - font.pixelSize: 18; - anchors.horizontalCenter: parent.horizontalCenter; - anchors.top: author.bottom; - anchors.topMargin: 12; - width: parent.width; - color: "lightgray"; - horizontalAlignment: Text.AlignHCenter; - wrapMode: Text.Wrap - } + Text { + id: license + text: "QZeeControl is free software: you can redistribute it and/or modify " + + "it under the terms of the GNU General Public License as published by " + + "the Free Software Foundation, either version 3 of the License, or " + + "(at your option) any later version.

" + + "Zeemote (TM) is a trademark of Zeemote Technology Inc. Other trademarks are property of their respective owners." + textFormat: Text.RichText + onLinkActivated: Qt.openUrlExternally(link) + font.pixelSize: 18 + anchors{horizontalCenter: parent.horizontalCenter; top: author.bottom; topMargin: 12} + width: parent.width + color: "lightgray" + horizontalAlignment: Text.AlignHCenter + wrapMode: Text.Wrap + } } }