/**************************************************************************** ** ** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ import QtQuick 2.1 import QtQuick.Window 2.1 import QtQuick.Layouts 1.0 ColumnLayout { spacing: 0 property alias currentIndex: tabs.currentIndex property alias model: tabs.model id: root Item { z: 1 width: tabs.width + 16 * 2 height: tabs.height + 51 * 2 Layout.fillWidth: true Image { fillMode: Image.Tile source: "images/background.png" anchors.fill: parent } Tabs { anchors.centerIn: parent id: tabs } Rectangle { color: "#737373" anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom anchors.bottomMargin: 0 height: 1 } Rectangle { color: "#737373" anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom anchors.bottomMargin: -1 height: 1 opacity: 0.6 } Rectangle { color: "#737373" anchors.left: parent.left anchors.right: parent.right anchors.bottom: parent.bottom anchors.bottomMargin: -2 height: 1 opacity: 0.2 } } Rectangle { color: "#ebebeb" Layout.fillWidth: true Layout.minimumHeight: 320 Layout.fillHeight: true Layout.minimumWidth: innerColumn.width ColumnLayout { id: innerColumn spacing: 14 x: 12 Item { height: 24 width: parent.width } NativeText { text: qsTr("New to Qt?") font.pixelSize: 18 font.bold: false } NativeText { text: qsTr("Learn how to develop your own applications and explore Qt Creator.") font.pixelSize: 12 wrapMode: Text.WordWrap Layout.maximumWidth: Screen.pixelDensity * 60 } Item { height: 8 width: parent.width } Item { width: gettingStartedButton.width + 24 Button { x: 4 id: gettingStartedButton text: qsTr("Get Started Now") onClicked: gettingStarted.openHelp("qthelp://org.qt-project.qtcreator/doc/index.html") } } Item { height: 18 width: parent.width } ColumnLayout { x: 14 spacing: 16 IconAndLink { iconSource: "images/icons/qt_account.png" title: qsTr("Qt Account") openUrl: "https://login.qt.digia.com/qtaccount?utm_source=qtcreator31" } IconAndLink { iconSource: "images/icons/qt_cloud.png" title: qsTr("Qt Cloud Services") openUrl: "https://developer.qtcloudservices.com?utm_source=qtcreator31" } IconAndLink { iconSource: "images/icons/onlineCommunity.png" title: qsTr("Online Community") openUrl: "http://qt-project.org/forums" } IconAndLink { iconSource: "images/icons/blogs.png" title: qsTr("Blogs") openUrl: "http://planet.qt-project.org" } IconAndLink { iconSource: "images/icons/userGuide.png" title: qsTr("User Guide") openHelpUrl: "qthelp://org.qt-project.qtcreator/doc/index.html" } } } } }