/* * Copyright 2012 Ruediger Gad * * This file is part of QZeeControl. * * 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. * * QZeeControl is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with QZeeControl. If not, see . */ import QtQuick 1.1 import com.nokia.meego 1.0 Dialog { id: aboutDialog content:Item { 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: 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: 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 } } }