Files
qt-creator/share/qtcreator/welcomescreen/widgets/SideBar.qml
Marco Bubke f3c6200513 Welcome: Keep sidebar and headers static on scrolling
Task-number: QTCREATORBUG-12872
Change-Id: I8ab9a88203fcce60fa9f9cdf06369eb0c572a0bf
Reviewed-by: Thomas Hartmann <Thomas.Hartmann@digia.com>
2014-10-02 12:08:03 +02:00

179 lines
5.5 KiB
QML

/****************************************************************************
**
** 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 {
id: root
spacing: 0
property alias currentIndex: tabs.currentIndex
property alias model: tabs.model
Item {
id: modeArea
z: 1
Layout.fillWidth: true
Layout.preferredWidth: tabs.width + 16 * 2
Layout.preferredHeight: tabs.height + screenDependHeightDistance * 2
Image {
fillMode: Image.Tile
source: "images/background.png"
anchors.fill: parent
}
Tabs {
anchors.verticalCenter: parent.verticalCenter
x: 16
width: Math.max(modeArea.width - 16 * 2, implicitWidth)
id: tabs
spacing: Math.round((screenDependHeightDistance / count) + 10)
}
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.preferredWidth: innerColumn.width + 20
Layout.fillHeight: true
ColumnLayout {
id: innerColumn
x: 12
spacing: 4
property int spacerHeight: screenDependHeightDistance - 14
Item {
Layout.preferredHeight: innerColumn.spacerHeight
}
NativeText {
text: qsTr("New to Qt?")
font.pixelSize: 18
}
NativeText {
id: gettingStartedText
Layout.preferredWidth: innerColumn.width
text: qsTr("Learn how to develop your own applications and explore Qt Creator.")
font.pixelSize: 12
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
}
Item {
Layout.preferredHeight: innerColumn.spacerHeight
}
Button {
id: gettingStartedButton
x: 4
text: qsTr("Get Started Now")
onClicked: gettingStarted.openHelp("qthelp://org.qt-project.qtcreator/doc/index.html")
}
Item {
Layout.preferredHeight: innerColumn.spacerHeight
}
ColumnLayout {
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"
}
}
}
}
}