import Qt 4.7 import QtWebKit 1.0 Rectangle { id: item opacity: 1 anchors.fill: parent SystemPalette { id: myPalette; colorGroup: SystemPalette.Active } color : myPalette.window; signal linkClicked(string link); Image { id: image1 anchors.horizontalCenter: parent.horizontalCenter source: "qrc:/icons/logo/mdictionary.png" } Text { id: text1 y: 200 text: "

mDictionary

" anchors.horizontalCenterOffset: 0 anchors.horizontalCenter: parent.horizontalCenter } Text { id: text2 y: 220 anchors.horizontalCenter: parent.horizontalCenter textFormat: Text.RichText text: "Maemo/Meego Multilingual Dictionary
Copyright 2006-2010, Comarch S.A.
http://mdictionary.garage.maemo.org" anchors.horizontalCenterOffset: 0 onLinkActivated: linkClicked(link); } Text { id: text3 y: 270 anchors.horizontalCenter: parent.horizontalCenter text: "Report bug" anchors.horizontalCenterOffset: 0 onLinkActivated: linkClicked(link); } Text { id: text4 y: 290 anchors.horizontalCenter: parent.horizontalCenter text: "

This program 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.
This program 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 this program. If not, see < http://www.gnu.org/licenses/>.

" anchors.horizontalCenterOffset: 0 onLinkActivated: linkClicked(link); } }